
    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_f7563187d79a6b85670b3bf4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_361d4f3ffb7f53503f2450ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a9027c9b4586e972925d0a73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887000;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_76d7e3b959eee42eeb4f8fb6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696000;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_343e6e3f89ddc60d5895296b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e32cbd699049fbcfbf5b0e15.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_870b26efaa67e899aab089f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_ff3cfebb7e8dd25803b9f448.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.667000;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_e89308c7a754bfc95fc6e218.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_19d2d26e8f4afb94f978ad66.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_fc019cb77f0c07f9441c9f6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d878e6ba9423416af6a1894d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7294c29ffeaaf60e062a3f9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.654000;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_f8da2269d84b2d1f1b73e9fd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914000;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_b921cd39d008accbddcc0e90.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6af54716c967569cb3e409ed.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.431000;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_ee6b90eae058e23a914b03f6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0c7de8912f5d2612be219a80.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_68980df2028fe7aba0f9bcd4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f2de2420cabfb3e5240d9def.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e24b3dd0bbbd47ce073f4c9b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6d25ff012f6153002c5980ad.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_af3c78fe0449a3a86ac6e316.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url('chunks/assets/font_17e2a26586a079a24fb8fb2c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.923000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-21.696000px;}
.v4{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.972000px;}
.va{vertical-align:15.108000px;}
.v6{vertical-align:17.736000px;}
.v1{vertical-align:26.028000px;}
.v8{vertical-align:29.616000px;}
.v3{vertical-align:32.785870px;}
.v5{vertical-align:43.038000px;}
.v7{vertical-align:48.528000px;}
.ls6{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000002px;}
.ls10{letter-spacing:0.000013px;}
.ls8{letter-spacing:0.000760px;}
.ls2a{letter-spacing:0.001165px;}
.lsb{letter-spacing:0.001289px;}
.ls30{letter-spacing:0.001864px;}
.lsa{letter-spacing:0.002400px;}
.ls18{letter-spacing:0.002759px;}
.lse{letter-spacing:0.003056px;}
.ls1b{letter-spacing:0.003525px;}
.ls15{letter-spacing:0.005727px;}
.ls1a{letter-spacing:0.005779px;}
.ls17{letter-spacing:0.457809px;}
.ls1e{letter-spacing:2.571525px;}
.ls2e{letter-spacing:2.577525px;}
.ls25{letter-spacing:2.688179px;}
.ls0{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.988141px;}
.lsd{letter-spacing:2.989289px;}
.ls2{letter-spacing:2.990915px;}
.ls3{letter-spacing:2.994141px;}
.lsc{letter-spacing:4.265644px;}
.lsf{letter-spacing:5.150294px;}
.ls24{letter-spacing:5.156294px;}
.ls1d{letter-spacing:11.959114px;}
.ls2f{letter-spacing:13.669289px;}
.ls27{letter-spacing:13.675289px;}
.ls29{letter-spacing:15.935073px;}
.ls21{letter-spacing:15.937473px;}
.ls28{letter-spacing:15.938759px;}
.ls20{letter-spacing:18.931289px;}
.ls26{letter-spacing:19.925518px;}
.ls19{letter-spacing:21.331289px;}
.ls32{letter-spacing:22.649518px;}
.ls31{letter-spacing:22.651864px;}
.ls4{letter-spacing:22.910525px;}
.ls1c{letter-spacing:22.915289px;}
.ls2d{letter-spacing:23.279518px;}
.ls12{letter-spacing:23.294809px;}
.ls11{letter-spacing:23.305571px;}
.ls33{letter-spacing:23.407864px;}
.ls22{letter-spacing:23.413571px;}
.ls7{letter-spacing:23.413864px;}
.ls14{letter-spacing:23.755809px;}
.ls5{letter-spacing:25.350493px;}
.ls2c{letter-spacing:26.275289px;}
.ls13{letter-spacing:28.382915px;}
.ls16{letter-spacing:28.383056px;}
.ls2b{letter-spacing:35.120400px;}
.ls1f{letter-spacing:41.107289px;}
.ls9{letter-spacing:43.579289px;}
.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;}
}
.wsc8{word-spacing:-71.731200px;}
.wsd4{word-spacing:-51.789926px;}
.wsd5{word-spacing:-45.664082px;}
.wsb1{word-spacing:-33.756703px;}
.wsc7{word-spacing:-33.684972px;}
.wsd0{word-spacing:-26.749398px;}
.ws5a{word-spacing:-19.510886px;}
.ws1c{word-spacing:-17.932800px;}
.ws146{word-spacing:-16.605662px;}
.ws97{word-spacing:-13.376859px;}
.ws136{word-spacing:-3.873485px;}
.ws6a{word-spacing:-3.801754px;}
.ws8a{word-spacing:-3.730022px;}
.wsb3{word-spacing:-3.658291px;}
.ws127{word-spacing:-3.514829px;}
.wsf6{word-spacing:-3.443098px;}
.ws17b{word-spacing:-3.215927px;}
.ws5f{word-spacing:-3.156173px;}
.ws128{word-spacing:-3.084442px;}
.ws129{word-spacing:-3.012710px;}
.ws19a{word-spacing:-2.976825px;}
.ws52{word-spacing:-2.940979px;}
.ws164{word-spacing:-2.917049px;}
.ws42{word-spacing:-2.797517px;}
.wsb9{word-spacing:-2.725786px;}
.ws177{word-spacing:-2.677947px;}
.ws29{word-spacing:-2.510592px;}
.ws141{word-spacing:-2.259518px;}
.ws56{word-spacing:-2.223667px;}
.ws154{word-spacing:-2.080191px;}
.ws38{word-spacing:-2.008474px;}
.ws92{word-spacing:-1.967185px;}
.ws165{word-spacing:-1.841088px;}
.ws171{word-spacing:-1.781313px;}
.ws166{word-spacing:-1.721537px;}
.wsf5{word-spacing:-1.649818px;}
.ws126{word-spacing:-1.578086px;}
.ws18a{word-spacing:-1.542210px;}
.wsa1{word-spacing:-1.524568px;}
.ws72{word-spacing:-1.506355px;}
.ws95{word-spacing:-1.475389px;}
.ws142{word-spacing:-1.362884px;}
.wse1{word-spacing:-1.291162px;}
.wsd3{word-spacing:-1.172694px;}
.wsb2{word-spacing:-1.147699px;}
.ws18f{word-spacing:-1.123781px;}
.ws134{word-spacing:-1.004237px;}
.wsdf{word-spacing:-0.932506px;}
.ws6f{word-spacing:-0.789043px;}
.wsab{word-spacing:-0.717312px;}
.ws10{word-spacing:-0.645576px;}
.ws99{word-spacing:-0.590156px;}
.ws41{word-spacing:-0.573850px;}
.ws117{word-spacing:-0.502118px;}
.ws173{word-spacing:-0.466250px;}
.ws118{word-spacing:-0.358656px;}
.ws172{word-spacing:-0.346698px;}
.ws76{word-spacing:-0.286925px;}
.ws175{word-spacing:-0.227147px;}
.wsb8{word-spacing:-0.215194px;}
.ws64{word-spacing:-0.143462px;}
.ws1{word-spacing:-0.103292px;}
.ws3{word-spacing:-0.071731px;}
.ws13a{word-spacing:-0.059776px;}
.wsc6{word-spacing:-0.047821px;}
.ws1f{word-spacing:0.000000px;}
.ws13b{word-spacing:0.011955px;}
.ws1a{word-spacing:0.191282px;}
.wsd7{word-spacing:0.215194px;}
.wsaa{word-spacing:0.286925px;}
.ws3a{word-spacing:0.358656px;}
.ws17a{word-spacing:0.370609px;}
.wsd1{word-spacing:0.430387px;}
.wsa3{word-spacing:0.502118px;}
.ws3e{word-spacing:0.717312px;}
.ws18b{word-spacing:0.789038px;}
.ws69{word-spacing:0.789043px;}
.ws54{word-spacing:0.860774px;}
.wsb0{word-spacing:0.932506px;}
.ws109{word-spacing:1.075968px;}
.ws183{word-spacing:1.147692px;}
.wsf8{word-spacing:1.147699px;}
.ws2c{word-spacing:1.219430px;}
.ws50{word-spacing:1.434624px;}
.ws10e{word-spacing:1.506355px;}
.ws25{word-spacing:1.721549px;}
.ws106{word-spacing:1.793280px;}
.ws75{word-spacing:2.008474px;}
.ws179{word-spacing:2.044326px;}
.ws9e{word-spacing:2.114724px;}
.ws74{word-spacing:2.151936px;}
.wsd2{word-spacing:2.155696px;}
.ws16c{word-spacing:2.163877px;}
.ws5{word-spacing:2.223652px;}
.ws188{word-spacing:2.343204px;}
.ws46{word-spacing:2.367130px;}
.ws45{word-spacing:2.438861px;}
.ws2f{word-spacing:2.510592px;}
.ws88{word-spacing:2.582323px;}
.wsf3{word-spacing:2.654054px;}
.ws93{word-spacing:2.655700px;}
.ws13f{word-spacing:2.701857px;}
.ws9b{word-spacing:2.704880px;}
.wsf0{word-spacing:2.725786px;}
.ws13d{word-spacing:2.761633px;}
.ws40{word-spacing:2.797517px;}
.ws152{word-spacing:2.940960px;}
.ws10d{word-spacing:3.084442px;}
.ws61{word-spacing:3.156173px;}
.ws194{word-spacing:3.180062px;}
.ws125{word-spacing:3.227904px;}
.ws4{word-spacing:3.299613px;}
.ws23{word-spacing:3.299635px;}
.ws1b{word-spacing:3.359389px;}
.ws182{word-spacing:3.419164px;}
.ws12e{word-spacing:3.443098px;}
.ws63{word-spacing:3.514829px;}
.ws135{word-spacing:3.586560px;}
.wsa2{word-spacing:3.658291px;}
.ws15b{word-spacing:3.718042px;}
.wsaf{word-spacing:3.730022px;}
.ws110{word-spacing:3.872458px;}
.ws1e{word-spacing:3.873485px;}
.ws10f{word-spacing:3.897441px;}
.ws8e{word-spacing:3.945216px;}
.ws19{word-spacing:4.016920px;}
.ws3d{word-spacing:4.016947px;}
.ws2d{word-spacing:4.088678px;}
.ws7f{word-spacing:4.160410px;}
.ws39{word-spacing:4.232141px;}
.wsa9{word-spacing:4.303872px;}
.wsbb{word-spacing:4.375603px;}
.ws3f{word-spacing:4.447334px;}
.ws189{word-spacing:4.495125px;}
.wse2{word-spacing:4.519066px;}
.ws26{word-spacing:4.662528px;}
.ws139{word-spacing:4.734228px;}
.wsef{word-spacing:4.734259px;}
.ws111{word-spacing:4.805990px;}
.ws4c{word-spacing:4.877722px;}
.ws12d{word-spacing:5.092915px;}
.wsf{word-spacing:5.152657px;}
.ws70{word-spacing:5.164646px;}
.ws58{word-spacing:5.236378px;}
.ws178{word-spacing:5.272208px;}
.ws24{word-spacing:5.451571px;}
.ws16e{word-spacing:5.511310px;}
.wsa7{word-spacing:5.523302px;}
.ws176{word-spacing:5.571086px;}
.ws104{word-spacing:5.595034px;}
.wsd6{word-spacing:5.666765px;}
.ws137{word-spacing:5.738496px;}
.ws9{word-spacing:5.750413px;}
.wsce{word-spacing:5.858258px;}
.wscf{word-spacing:5.881958px;}
.ws8f{word-spacing:5.953690px;}
.ws174{word-spacing:5.989515px;}
.ws34{word-spacing:6.025421px;}
.ws16a{word-spacing:6.049291px;}
.ws53{word-spacing:6.168883px;}
.ws162{word-spacing:6.228618px;}
.ws11e{word-spacing:6.312346px;}
.ws14{word-spacing:6.407944px;}
.wse4{word-spacing:6.455808px;}
.ws18{word-spacing:6.467720px;}
.ws59{word-spacing:6.527539px;}
.ws170{word-spacing:6.647047px;}
.wsf7{word-spacing:6.671002px;}
.ws11f{word-spacing:6.814464px;}
.ws143{word-spacing:6.826374px;}
.wsd{word-spacing:6.886149px;}
.ws43{word-spacing:6.957926px;}
.ws163{word-spacing:7.005700px;}
.ws44{word-spacing:7.029658px;}
.ws149{word-spacing:7.125252px;}
.ws20{word-spacing:7.173120px;}
.wsd8{word-spacing:7.244851px;}
.ws33{word-spacing:7.316582px;}
.ws4f{word-spacing:7.388314px;}
.ws14d{word-spacing:7.424130px;}
.ws132{word-spacing:7.460045px;}
.ws55{word-spacing:7.531776px;}
.ws18d{word-spacing:7.603456px;}
.wsd9{word-spacing:7.603507px;}
.ws186{word-spacing:7.663232px;}
.wsbd{word-spacing:7.675238px;}
.ws191{word-spacing:7.723008px;}
.ws71{word-spacing:7.818701px;}
.ws57{word-spacing:7.890432px;}
.ws148{word-spacing:7.962110px;}
.ws3b{word-spacing:7.962163px;}
.ws4e{word-spacing:8.033894px;}
.wsdd{word-spacing:8.105626px;}
.ws17c{word-spacing:8.141437px;}
.ws77{word-spacing:8.177357px;}
.ws49{word-spacing:8.249088px;}
.ws27{word-spacing:8.320819px;}
.ws131{word-spacing:8.392550px;}
.ws122{word-spacing:8.464282px;}
.ws12a{word-spacing:8.536013px;}
.ws15{word-spacing:8.739193px;}
.ws94{word-spacing:8.753974px;}
.ws10c{word-spacing:8.822938px;}
.ws12{word-spacing:8.858744px;}
.ws185{word-spacing:8.918520px;}
.ws124{word-spacing:9.038131px;}
.ws16b{word-spacing:9.097846px;}
.ws73{word-spacing:9.109862px;}
.ws102{word-spacing:9.181594px;}
.ws108{word-spacing:9.253325px;}
.ws192{word-spacing:9.396724px;}
.ws89{word-spacing:9.396787px;}
.wsf4{word-spacing:9.468518px;}
.ws87{word-spacing:9.540250px;}
.wsae{word-spacing:9.611981px;}
.ws48{word-spacing:9.827174px;}
.ws9c{word-spacing:9.885105px;}
.wsee{word-spacing:9.898906px;}
.ws15f{word-spacing:9.934705px;}
.ws18c{word-spacing:9.958343px;}
.ws6{word-spacing:9.962065px;}
.ws6c{word-spacing:9.970637px;}
.wsa4{word-spacing:10.042368px;}
.wsbc{word-spacing:10.114099px;}
.ws51{word-spacing:10.185830px;}
.ws11{word-spacing:10.197717px;}
.ws7c{word-spacing:10.257562px;}
.ws160{word-spacing:10.293358px;}
.wse5{word-spacing:10.329293px;}
.ws13e{word-spacing:10.353134px;}
.ws62{word-spacing:10.362632px;}
.ws2e{word-spacing:10.401024px;}
.ws199{word-spacing:10.412910px;}
.ws3c{word-spacing:10.472755px;}
.wse3{word-spacing:10.544486px;}
.wsc0{word-spacing:10.616218px;}
.ws123{word-spacing:10.687949px;}
.ws68{word-spacing:10.759680px;}
.wsff{word-spacing:10.831411px;}
.wscb{word-spacing:10.903142px;}
.wsa8{word-spacing:11.046605px;}
.ws100{word-spacing:11.118336px;}
.ws151{word-spacing:11.189992px;}
.wsbe{word-spacing:11.190067px;}
.ws116{word-spacing:11.261798px;}
.wse0{word-spacing:11.405261px;}
.ws153{word-spacing:11.429095px;}
.wsbf{word-spacing:11.548723px;}
.ws7e{word-spacing:11.620454px;}
.wsba{word-spacing:11.692186px;}
.ws83{word-spacing:11.763917px;}
.ws13c{word-spacing:11.787748px;}
.ws4d{word-spacing:11.835648px;}
.ws187{word-spacing:11.847524px;}
.ws198{word-spacing:12.086626px;}
.ws28{word-spacing:12.122573px;}
.ws144{word-spacing:12.146402px;}
.ws35{word-spacing:12.337766px;}
.wsfd{word-spacing:12.409498px;}
.ws22{word-spacing:12.481229px;}
.ws184{word-spacing:12.564831px;}
.ws7b{word-spacing:12.624691px;}
.ws9a{word-spacing:12.688344px;}
.wsfe{word-spacing:12.696422px;}
.ws12b{word-spacing:12.768154px;}
.ws8d{word-spacing:12.911616px;}
.ws190{word-spacing:12.983260px;}
.ws32{word-spacing:12.983347px;}
.wsc{word-spacing:13.162587px;}
.ws84{word-spacing:13.198541px;}
.wsb7{word-spacing:13.270272px;}
.ws120{word-spacing:13.485466px;}
.wsda{word-spacing:13.557197px;}
.ws4b{word-spacing:13.628928px;}
.ws169{word-spacing:13.640792px;}
.ws60{word-spacing:13.772390px;}
.ws121{word-spacing:13.844122px;}
.wseb{word-spacing:13.987584px;}
.ws103{word-spacing:14.041200px;}
.ws16f{word-spacing:14.118997px;}
.ws12f{word-spacing:14.131046px;}
.ws36{word-spacing:14.202778px;}
.ws96{word-spacing:14.262092px;}
.ws7d{word-spacing:14.274509px;}
.ws6e{word-spacing:14.346240px;}
.ws115{word-spacing:14.417971px;}
.ws101{word-spacing:14.633165px;}
.ws47{word-spacing:14.704896px;}
.wsc2{word-spacing:14.848358px;}
.ws159{word-spacing:14.955855px;}
.ws11a{word-spacing:14.991821px;}
.ws7a{word-spacing:15.063552px;}
.wsdb{word-spacing:15.135283px;}
.ws9f{word-spacing:15.245685px;}
.ws8b{word-spacing:15.278746px;}
.ws18e{word-spacing:15.314509px;}
.ws12c{word-spacing:15.350477px;}
.wsdc{word-spacing:15.422208px;}
.wsc5{word-spacing:15.565670px;}
.ws81{word-spacing:15.637402px;}
.ws11d{word-spacing:15.780864px;}
.ws140{word-spacing:15.852489px;}
.ws4a{word-spacing:15.852595px;}
.ws119{word-spacing:15.996058px;}
.ws167{word-spacing:16.091592px;}
.ws6b{word-spacing:16.139520px;}
.ws145{word-spacing:16.151367px;}
.ws15c{word-spacing:16.450245px;}
.wsed{word-spacing:16.498176px;}
.ws11b{word-spacing:16.641638px;}
.wsb6{word-spacing:16.713370px;}
.ws168{word-spacing:16.749123px;}
.ws5e{word-spacing:16.785101px;}
.ws15a{word-spacing:16.928450px;}
.wsf9{word-spacing:16.928563px;}
.ws10b{word-spacing:17.000294px;}
.ws10a{word-spacing:17.002047px;}
.ws80{word-spacing:17.143757px;}
.wsde{word-spacing:17.215488px;}
.ws37{word-spacing:17.287219px;}
.ws161{word-spacing:17.406655px;}
.ws193{word-spacing:17.526206px;}
.ws65{word-spacing:17.717606px;}
.ws11c{word-spacing:17.789338px;}
.wscc{word-spacing:18.147994px;}
.ws107{word-spacing:18.219725px;}
.ws150{word-spacing:18.243513px;}
.wse9{word-spacing:18.315290px;}
.ws17{word-spacing:18.363064px;}
.wsb4{word-spacing:18.650112px;}
.ws15e{word-spacing:18.901045px;}
.wsb5{word-spacing:18.937037px;}
.ws114{word-spacing:19.223962px;}
.ws138{word-spacing:19.439025px;}
.wse6{word-spacing:19.462984px;}
.ws82{word-spacing:19.510886px;}
.wsa5{word-spacing:19.644132px;}
.ws155{word-spacing:19.678128px;}
.ws13{word-spacing:19.857454px;}
.ws1d{word-spacing:20.084736px;}
.wsb{word-spacing:20.156332px;}
.wsfc{word-spacing:20.228198px;}
.ws15d{word-spacing:20.395435px;}
.ws16d{word-spacing:20.455210px;}
.ws6d{word-spacing:20.945510px;}
.ws8{word-spacing:20.993191px;}
.wsc4{word-spacing:21.088973px;}
.wsa0{word-spacing:21.245599px;}
.ws2b{word-spacing:21.375898px;}
.ws147{word-spacing:21.411620px;}
.ws14f{word-spacing:21.710498px;}
.ws112{word-spacing:22.021478px;}
.ws2a{word-spacing:22.093210px;}
.ws133{word-spacing:22.164941px;}
.wsec{word-spacing:22.407875px;}
.wscd{word-spacing:22.667059px;}
.ws30{word-spacing:22.882253px;}
.ws113{word-spacing:23.169178px;}
.wsc1{word-spacing:23.240909px;}
.ws67{word-spacing:23.514632px;}
.wsad{word-spacing:23.527834px;}
.wsc9{word-spacing:23.557319px;}
.wse{word-spacing:23.802644px;}
.ws8c{word-spacing:24.029952px;}
.ws66{word-spacing:24.818995px;}
.wsac{word-spacing:25.177651px;}
.wsc3{word-spacing:26.181888px;}
.ws130{word-spacing:26.253619px;}
.ws2{word-spacing:26.827469px;}
.wsca{word-spacing:27.903437px;}
.ws86{word-spacing:28.405555px;}
.ws85{word-spacing:29.696717px;}
.wsa6{word-spacing:31.131341px;}
.ws14e{word-spacing:31.872350px;}
.ws195{word-spacing:32.171228px;}
.ws31{word-spacing:33.426739px;}
.ws79{word-spacing:34.144051px;}
.ws78{word-spacing:35.004826px;}
.ws5d{word-spacing:35.220019px;}
.ws21{word-spacing:35.793869px;}
.ws5c{word-spacing:36.009062px;}
.ws16{word-spacing:37.594303px;}
.ws0{word-spacing:38.631358px;}
.ws14a{word-spacing:38.746544px;}
.ws98{word-spacing:39.540421px;}
.wsa{word-spacing:41.178803px;}
.ws7{word-spacing:42.812077px;}
.ws9d{word-spacing:43.081354px;}
.ws196{word-spacing:43.767694px;}
.ws197{word-spacing:43.827470px;}
.ws156{word-spacing:44.544777px;}
.ws90{word-spacing:49.032089px;}
.ws158{word-spacing:49.267050px;}
.ws157{word-spacing:53.212239px;}
.ws14c{word-spacing:54.108873px;}
.ws17d{word-spacing:56.081468px;}
.ws14b{word-spacing:57.336756px;}
.wsea{word-spacing:71.672839px;}
.ws17f{word-spacing:73.117514px;}
.ws17e{word-spacing:82.741386px;}
.ws5b{word-spacing:105.750632px;}
.wsf2{word-spacing:116.570869px;}
.ws180{word-spacing:134.208177px;}
.ws181{word-spacing:134.410343px;}
.ws91{word-spacing:203.265068px;}
.wse8{word-spacing:226.931981px;}
.ws105{word-spacing:252.562549px;}
.wsf1{word-spacing:291.757478px;}
.wsfb{word-spacing:793.956600px;}
.wse7{word-spacing:799.859441px;}
.wsfa{word-spacing:804.001077px;}
._22{margin-left:-1251.431760px;}
._3c{margin-left:-42.079596px;}
._3b{margin-left:-38.324901px;}
._4a{margin-left:-31.464412px;}
._4d{margin-left:-29.577154px;}
._4b{margin-left:-27.912090px;}
._57{margin-left:-26.169944px;}
._7{margin-left:-23.153721px;}
._2{margin-left:-9.709486px;}
._3{margin-left:-6.742733px;}
._5{margin-left:-4.961375px;}
._1{margin-left:-3.202064px;}
._4{margin-left:-1.639502px;}
._6{width:1.673717px;}
._0{width:3.202064px;}
._36{width:4.329133px;}
._3d{width:12.911616px;}
._2a{width:16.344211px;}
._12{width:18.291456px;}
._20{width:19.367424px;}
._1a{width:20.863464px;}
._38{width:21.871667px;}
._27{width:23.122707px;}
._9{width:25.097098px;}
._1f{width:26.899234px;}
._c{width:28.324981px;}
._11{width:29.542939px;}
._15{width:31.479681px;}
._10{width:33.498470px;}
._40{width:34.683686px;}
._b{width:35.805584px;}
._8{width:37.359750px;}
._1c{width:38.376192px;}
._a{width:40.553418px;}
._3e{width:41.928624px;}
._e{width:43.315329px;}
._13{width:45.190656px;}
._35{width:46.376830px;}
._48{width:47.690966px;}
._21{width:49.494528px;}
._1e{width:50.621596px;}
._33{width:52.209998px;}
._18{width:53.977439px;}
._1d{width:55.161293px;}
._19{width:57.494208px;}
._37{width:59.584728px;}
._17{width:61.330176px;}
._d{width:63.165778px;}
._4c{width:64.267024px;}
._4e{width:65.411414px;}
._1b{width:67.667782px;}
._31{width:68.769694px;}
._3f{width:69.794458px;}
._42{width:71.734119px;}
._46{width:72.999570px;}
._3a{width:74.492562px;}
._49{width:76.492660px;}
._25{width:78.282093px;}
._30{width:81.469426px;}
._14{width:83.054414px;}
._34{width:86.364365px;}
._16{width:88.338624px;}
._53{width:96.639838px;}
._39{width:97.879118px;}
._26{width:99.778099px;}
._32{width:107.238144px;}
._4f{width:110.955282px;}
._24{width:115.774157px;}
._2d{width:119.622178px;}
._5b{width:120.686936px;}
._54{width:122.731075px;}
._52{width:128.016241px;}
._55{width:131.566096px;}
._44{width:134.197387px;}
._45{width:136.288962px;}
._51{width:141.335079px;}
._58{width:145.838671px;}
._50{width:147.790844px;}
._56{width:153.103144px;}
._29{width:168.641058px;}
._59{width:179.446351px;}
._2f{width:198.903289px;}
._5a{width:200.899714px;}
._2c{width:226.968633px;}
._2e{width:251.093061px;}
._43{width:253.105124px;}
._2b{width:273.438235px;}
._28{width:313.152833px;}
._23{width:474.682798px;}
._41{width:575.682817px;}
._47{width:808.134839px;}
._f{width:843.252839px;}
.fc4{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:4.324020px;}
.fsb{font-size:5.188824px;}
.fs3{font-size:41.842800px;}
.fs7{font-size:45.110160px;}
.fs5{font-size:47.064000px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:49.179628px;}
.fs9{font-size:49.606560px;}
.fs8{font-size:52.628520px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y14d{bottom:14.253307px;}
.y14a{bottom:14.656385px;}
.y15a{bottom:15.732204px;}
.y180{bottom:18.943315px;}
.y90{bottom:34.092456px;}
.y88{bottom:35.570971px;}
.y14e{bottom:43.208579px;}
.y181{bottom:45.276813px;}
.y129{bottom:51.855000px;}
.y9f{bottom:53.130000px;}
.y156{bottom:53.136949px;}
.y15b{bottom:53.284266px;}
.y1b5{bottom:57.834000px;}
.y2e{bottom:58.368000px;}
.y7f{bottom:60.871500px;}
.ye9{bottom:61.168500px;}
.y17d{bottom:61.528500px;}
.y58{bottom:63.985500px;}
.y8f{bottom:64.483681px;}
.y1a1{bottom:64.860000px;}
.y100{bottom:66.613500px;}
.y209{bottom:66.799500px;}
.y170{bottom:67.059000px;}
.y14f{bottom:71.419627px;}
.y182{bottom:73.291274px;}
.y1da{bottom:74.595000px;}
.y128{bottom:75.766500px;}
.y9e{bottom:77.040000px;}
.ybe{bottom:78.195000px;}
.y1b4{bottom:81.744000px;}
.y2d{bottom:82.279500px;}
.y143{bottom:83.744193px;}
.y7e{bottom:84.783000px;}
.ye8{bottom:85.078500px;}
.y17c{bottom:85.438500px;}
.y208{bottom:86.226000px;}
.y15c{bottom:86.709373px;}
.y148{bottom:87.206022px;}
.y57{bottom:87.895500px;}
.y1a0{bottom:88.770000px;}
.yff{bottom:90.523500px;}
.y16f{bottom:90.969000px;}
.y1d9{bottom:94.023000px;}
.y8e{bottom:94.875376px;}
.y144{bottom:96.309252px;}
.y150{bottom:99.630487px;}
.y183{bottom:101.305843px;}
.ybd{bottom:102.105000px;}
.y1b3{bottom:105.654000px;}
.y84{bottom:108.191900px;}
.y7d{bottom:108.693000px;}
.ye7{bottom:108.988500px;}
.y56{bottom:111.805500px;}
.y19f{bottom:112.680000px;}
.y1d8{bottom:113.449500px;}
.yfe{bottom:114.433500px;}
.y16e{bottom:114.879000px;}
.y127{bottom:117.435000px;}
.y15d{bottom:120.134687px;}
.y83{bottom:122.311100px;}
.y207{bottom:125.080500px;}
.y8d{bottom:125.266719px;}
.ybc{bottom:126.015000px;}
.y9d{bottom:126.043500px;}
.y18a{bottom:127.437517px;}
.y151{bottom:127.841254px;}
.y184{bottom:129.320628px;}
.y1b2{bottom:129.564000px;}
.y7c{bottom:132.603000px;}
.y1d7{bottom:132.876000px;}
.ye6{bottom:132.898500px;}
.y2c{bottom:133.089000px;}
.y55{bottom:135.717000px;}
.y17b{bottom:135.949500px;}
.y19e{bottom:136.590000px;}
.yfd{bottom:138.343500px;}
.y145{bottom:143.983173px;}
.y206{bottom:144.508500px;}
.ybb{bottom:149.925000px;}
.y9c{bottom:149.955000px;}
.y16d{bottom:150.372000px;}
.y1d6{bottom:152.304000px;}
.y2b{bottom:152.515500px;}
.y1b1{bottom:153.474000px;}
.y15e{bottom:153.559173px;}
.y8c{bottom:155.658297px;}
.y152{bottom:156.052020px;}
.y7b{bottom:156.513000px;}
.ye5{bottom:156.808500px;}
.y185{bottom:157.334873px;}
.y54{bottom:159.627000px;}
.y17a{bottom:159.859500px;}
.y19d{bottom:160.501500px;}
.yfc{bottom:162.253500px;}
.y205{bottom:163.935000px;}
.y126{bottom:168.202500px;}
.y1d5{bottom:171.730500px;}
.y2a{bottom:171.942000px;}
.yba{bottom:173.836500px;}
.y1b0{bottom:177.385500px;}
.y7a{bottom:180.423000px;}
.ye4{bottom:180.720000px;}
.y92{bottom:181.661157px;}
.y8b{bottom:181.662334px;}
.y204{bottom:183.363000px;}
.y53{bottom:183.537000px;}
.y179{bottom:183.769500px;}
.y153{bottom:184.262786px;}
.y186{bottom:185.349117px;}
.y9b{bottom:185.446500px;}
.yfb{bottom:186.165000px;}
.y15f{bottom:186.984694px;}
.y1d4{bottom:191.158500px;}
.y29{bottom:191.370000px;}
.y146{bottom:191.657093px;}
.y125{bottom:192.112500px;}
.yb9{bottom:197.746500px;}
.y1af{bottom:201.295500px;}
.y19c{bottom:202.170000px;}
.y203{bottom:202.789500px;}
.y79{bottom:204.334500px;}
.ye3{bottom:204.630000px;}
.y16c{bottom:206.548500px;}
.y52{bottom:207.447000px;}
.y178{bottom:207.679500px;}
.yfa{bottom:210.075000px;}
.y1d3{bottom:210.585000px;}
.y28{bottom:210.796500px;}
.y154{bottom:212.473553px;}
.y187{bottom:213.363362px;}
.y124{bottom:216.022500px;}
.y160{bottom:220.409180px;}
.yb8{bottom:221.656500px;}
.y202{bottom:222.216000px;}
.y1ae{bottom:225.205500px;}
.y78{bottom:228.244500px;}
.ye2{bottom:228.540000px;}
.y1d2{bottom:230.013000px;}
.y27{bottom:230.224500px;}
.y16b{bottom:230.458500px;}
.y51{bottom:231.357000px;}
.y177{bottom:231.591000px;}
.yf9{bottom:233.985000px;}
.y147{bottom:239.331014px;}
.y123{bottom:239.932500px;}
.y155{bottom:240.684319px;}
.y188{bottom:241.377606px;}
.y9a{bottom:241.623000px;}
.y201{bottom:241.644000px;}
.yb7{bottom:245.566500px;}
.y149{bottom:249.008083px;}
.y1ad{bottom:249.115500px;}
.y1d1{bottom:249.439500px;}
.y26{bottom:249.651000px;}
.y157{bottom:250.361388px;}
.y77{bottom:252.154500px;}
.ye1{bottom:252.450000px;}
.y19b{bottom:253.104000px;}
.y161{bottom:253.834701px;}
.y16a{bottom:254.368500px;}
.y50{bottom:255.268500px;}
.y176{bottom:255.501000px;}
.yf8{bottom:257.895000px;}
.y200{bottom:261.070500px;}
.y122{bottom:263.844000px;}
.y99{bottom:265.533000px;}
.y1d0{bottom:268.866000px;}
.y25{bottom:269.079000px;}
.y189{bottom:269.392932px;}
.yb6{bottom:269.476500px;}
.y141{bottom:272.553000px;}
.y1ac{bottom:273.027000px;}
.y162{bottom:275.258534px;}
.y76{bottom:276.064500px;}
.y89{bottom:276.126841px;}
.y19a{bottom:277.014000px;}
.y169{bottom:278.278500px;}
.y4f{bottom:279.178500px;}
.y175{bottom:279.411000px;}
.y1ff{bottom:280.498500px;}
.yf7{bottom:281.806500px;}
.y121{bottom:287.754000px;}
.y1cf{bottom:288.294000px;}
.y24{bottom:288.505500px;}
.y98{bottom:289.444500px;}
.yb5{bottom:293.388000px;}
.y140{bottom:296.463000px;}
.y1ab{bottom:296.937000px;}
.y1fe{bottom:299.925000px;}
.y75{bottom:299.976000px;}
.y199{bottom:300.924000px;}
.ye0{bottom:301.453500px;}
.y168{bottom:302.190000px;}
.y4e{bottom:303.088500px;}
.y174{bottom:303.321000px;}
.yf6{bottom:305.716500px;}
.y1ce{bottom:307.720500px;}
.y23{bottom:307.932000px;}
.y120{bottom:311.664000px;}
.y97{bottom:313.354500px;}
.y87{bottom:313.437651px;}
.y82{bottom:313.438004px;}
.yb4{bottom:317.298000px;}
.y1fd{bottom:319.353000px;}
.y13f{bottom:320.374500px;}
.y1aa{bottom:320.847000px;}
.y74{bottom:323.886000px;}
.y198{bottom:324.834000px;}
.ydf{bottom:325.365000px;}
.y167{bottom:326.100000px;}
.y4d{bottom:326.998500px;}
.y1cd{bottom:327.148500px;}
.y173{bottom:327.231000px;}
.y22{bottom:327.360000px;}
.y86{bottom:327.556851px;}
.y81{bottom:327.557204px;}
.yf5{bottom:329.626500px;}
.y11f{bottom:335.574000px;}
.y96{bottom:337.264500px;}
.y1fc{bottom:338.779500px;}
.y13e{bottom:344.284500px;}
.y1a9{bottom:344.757000px;}
.y1cc{bottom:346.575000px;}
.y21{bottom:346.786500px;}
.y73{bottom:347.796000px;}
.y197{bottom:348.745500px;}
.yde{bottom:349.275000px;}
.y166{bottom:350.010000px;}
.y4c{bottom:350.908500px;}
.yf4{bottom:353.536500px;}
.y20a{bottom:358.206000px;}
.y1fb{bottom:358.207500px;}
.y95{bottom:361.174500px;}
.y172{bottom:364.741500px;}
.y1cb{bottom:366.003000px;}
.y20{bottom:366.214500px;}
.yb3{bottom:366.301500px;}
.y11e{bottom:367.968000px;}
.y13d{bottom:368.194500px;}
.y1a8{bottom:368.667000px;}
.y72{bottom:371.706000px;}
.y196{bottom:372.655500px;}
.ydd{bottom:373.185000px;}
.y8a{bottom:373.518730px;}
.y91{bottom:373.541085px;}
.y165{bottom:373.920000px;}
.y85{bottom:374.115266px;}
.y4b{bottom:374.820000px;}
.yf3{bottom:377.446500px;}
.y1fa{bottom:377.634000px;}
.y94{bottom:385.086000px;}
.y1ca{bottom:385.429500px;}
.y1f{bottom:385.641000px;}
.yb2{bottom:390.211500px;}
.y11d{bottom:391.878000px;}
.y13c{bottom:392.104500px;}
.y1a7{bottom:392.578500px;}
.y71{bottom:395.616000px;}
.y195{bottom:396.565500px;}
.y1f9{bottom:397.060500px;}
.ydc{bottom:397.095000px;}
.y164{bottom:397.831500px;}
.y4a{bottom:398.730000px;}
.y1c9{bottom:404.856000px;}
.y1e{bottom:405.069000px;}
.y93{bottom:408.996000px;}
.yb1{bottom:414.121500px;}
.y13b{bottom:416.014500px;}
.y1a6{bottom:416.488500px;}
.y70{bottom:419.527500px;}
.y11c{bottom:420.109500px;}
.y194{bottom:420.475500px;}
.ydb{bottom:421.006500px;}
.y49{bottom:422.640000px;}
.y1c8{bottom:424.284000px;}
.y1d{bottom:424.495500px;}
.yf2{bottom:426.451500px;}
.y163{bottom:433.995000px;}
.y1f8{bottom:435.915000px;}
.yb0{bottom:438.033000px;}
.y11b{bottom:439.587000px;}
.y1a5{bottom:440.398500px;}
.y80{bottom:440.677500px;}
.y6f{bottom:443.437500px;}
.y1c7{bottom:443.710500px;}
.y1c{bottom:443.922000px;}
.y11a{bottom:444.021000px;}
.y193{bottom:444.387000px;}
.yda{bottom:444.916500px;}
.y48{bottom:446.550000px;}
.y158{bottom:447.484500px;}
.yf1{bottom:450.361500px;}
.y13a{bottom:451.507500px;}
.y1f7{bottom:455.343000px;}
.y159{bottom:457.905000px;}
.yaf{bottom:461.943000px;}
.y1c6{bottom:463.138500px;}
.y1b{bottom:463.350000px;}
.y1a4{bottom:464.308500px;}
.y192{bottom:468.297000px;}
.yd9{bottom:468.826500px;}
.y47{bottom:470.461500px;}
.y14c{bottom:471.394500px;}
.yf0{bottom:474.271500px;}
.y1f6{bottom:474.769500px;}
.y119{bottom:476.413500px;}
.y1c5{bottom:482.565000px;}
.y1a{bottom:482.776500px;}
.y6e{bottom:485.106000px;}
.yae{bottom:485.853000px;}
.y1a3{bottom:488.220000px;}
.y191{bottom:492.207000px;}
.yd8{bottom:492.736500px;}
.y1f5{bottom:494.197500px;}
.y46{bottom:494.371500px;}
.yef{bottom:498.181500px;}
.y1c4{bottom:501.993000px;}
.y19{bottom:502.204500px;}
.y117{bottom:504.798000px;}
.y139{bottom:507.684000px;}
.yad{bottom:509.763000px;}
.y1a2{bottom:512.130000px;}
.y114{bottom:513.252000px;}
.y1f4{bottom:513.624000px;}
.yd7{bottom:516.646500px;}
.y45{bottom:518.281500px;}
.y118{bottom:521.119500px;}
.y1c3{bottom:521.419500px;}
.y18{bottom:521.631000px;}
.yee{bottom:522.093000px;}
.y113{bottom:525.553500px;}
.y138{bottom:531.594000px;}
.y1f3{bottom:533.050500px;}
.yac{bottom:533.674500px;}
.y6d{bottom:536.040000px;}
.y1c2{bottom:540.846000px;}
.y44{bottom:542.191500px;}
.y116{bottom:542.589000px;}
.y115{bottom:547.969500px;}
.y1f2{bottom:552.478500px;}
.y190{bottom:553.179000px;}
.yab{bottom:557.584500px;}
.y6c{bottom:559.950000px;}
.y1c1{bottom:560.274000px;}
.yd6{bottom:565.651500px;}
.y43{bottom:566.101500px;}
.y137{bottom:568.132500px;}
.y1f1{bottom:571.905000px;}
.y17{bottom:572.440500px;}
.y112{bottom:575.556000px;}
.y18f{bottom:577.089000px;}
.y1c0{bottom:579.700500px;}
.yaa{bottom:581.494500px;}
.y136{bottom:582.927000px;}
.y6b{bottom:583.860000px;}
.yd5{bottom:589.561500px;}
.y42{bottom:590.013000px;}
.y1f0{bottom:591.333000px;}
.y111{bottom:595.033500px;}
.y135{bottom:597.721500px;}
.y110{bottom:599.467500px;}
.y18e{bottom:600.999000px;}
.y16{bottom:604.762500px;}
.yed{bottom:606.588000px;}
.y6a{bottom:607.771500px;}
.y1ef{bottom:610.759500px;}
.y134{bottom:612.516000px;}
.yd4{bottom:613.471500px;}
.y41{bottom:613.923000px;}
.y1bf{bottom:616.887000px;}
.y15{bottom:618.766500px;}
.y171{bottom:619.182000px;}
.y10f{bottom:623.377500px;}
.y18d{bottom:624.909000px;}
.y133{bottom:627.310500px;}
.y1ee{bottom:630.187500px;}
.ya9{bottom:630.498000px;}
.y69{bottom:631.681500px;}
.yd3{bottom:637.381500px;}
.y40{bottom:637.833000px;}
.y14{bottom:638.194500px;}
.y18c{bottom:648.820500px;}
.y1ed{bottom:649.614000px;}
.ya8{bottom:654.408000px;}
.y10e{bottom:655.083000px;}
.y68{bottom:655.591500px;}
.y3f{bottom:661.743000px;}
.y13{bottom:663.045000px;}
.y10d{bottom:665.842500px;}
.y132{bottom:666.738000px;}
.y1be{bottom:667.821000px;}
.y1ec{bottom:669.040500px;}
.y18b{bottom:672.730500px;}
.yd2{bottom:672.874500px;}
.y12{bottom:677.049000px;}
.ya7{bottom:678.319500px;}
.y67{bottom:679.501500px;}
.y3e{bottom:685.654500px;}
.y1eb{bottom:688.468500px;}
.y131{bottom:690.648000px;}
.y1bd{bottom:691.731000px;}
.y11{bottom:701.898000px;}
.ya6{bottom:702.229500px;}
.y10c{bottom:702.396000px;}
.y66{bottom:703.413000px;}
.y1ea{bottom:707.895000px;}
.y3d{bottom:709.564500px;}
.y17e{bottom:710.239500px;}
.y130{bottom:714.558000px;}
.y1bc{bottom:715.641000px;}
.y10{bottom:715.902000px;}
.ya5{bottom:726.139500px;}
.y10b{bottom:726.306000px;}
.y65{bottom:727.323000px;}
.y17f{bottom:729.816000px;}
.y3c{bottom:733.474500px;}
.yd1{bottom:733.493474px;}
.y12f{bottom:738.468000px;}
.yf{bottom:740.752500px;}
.y1e9{bottom:746.749500px;}
.yd0{bottom:749.886409px;}
.ya4{bottom:750.049500px;}
.y10a{bottom:750.216000px;}
.y64{bottom:751.233000px;}
.ye{bottom:754.756500px;}
.y1bb{bottom:757.309500px;}
.y3b{bottom:757.384500px;}
.y14b{bottom:761.521500px;}
.y12e{bottom:762.378000px;}
.y1e8{bottom:766.177500px;}
.ycf{bottom:766.280373px;}
.ya3{bottom:773.959500px;}
.y109{bottom:774.127500px;}
.y63{bottom:775.143000px;}
.yd{bottom:779.607000px;}
.y3a{bottom:781.294500px;}
.yce{bottom:783.082617px;}
.y142{bottom:785.431500px;}
.y1e7{bottom:785.604000px;}
.y12d{bottom:786.289500px;}
.yc{bottom:793.611000px;}
.ya2{bottom:797.871000px;}
.y108{bottom:798.037500px;}
.y62{bottom:799.053000px;}
.ycd{bottom:799.476580px;}
.y1e6{bottom:805.030500px;}
.y39{bottom:805.206000px;}
.y1ba{bottom:808.243500px;}
.y12c{bottom:810.199500px;}
.ycc{bottom:815.869515px;}
.yb{bottom:818.461500px;}
.ya1{bottom:821.781000px;}
.y107{bottom:821.947500px;}
.y61{bottom:822.964500px;}
.y1e5{bottom:824.458500px;}
.y38{bottom:829.116000px;}
.y1b9{bottom:832.155000px;}
.ya{bottom:832.465500px;}
.ycb{bottom:832.672788px;}
.y12b{bottom:834.109500px;}
.y1e4{bottom:843.885000px;}
.ya0{bottom:845.691000px;}
.y106{bottom:845.857500px;}
.y60{bottom:846.874500px;}
.yca{bottom:849.065723px;}
.y37{bottom:853.026000px;}
.y1b8{bottom:856.065000px;}
.y9{bottom:857.316000px;}
.y12a{bottom:858.019500px;}
.y1e3{bottom:863.313000px;}
.yc9{bottom:865.868996px;}
.yec{bottom:869.601000px;}
.y105{bottom:869.767500px;}
.y5f{bottom:870.784500px;}
.y8{bottom:871.320000px;}
.y36{bottom:876.936000px;}
.y1b7{bottom:879.975000px;}
.yc8{bottom:882.261931px;}
.y1e2{bottom:882.739500px;}
.yeb{bottom:893.512500px;}
.y104{bottom:893.679000px;}
.y5e{bottom:894.694500px;}
.y7{bottom:896.170500px;}
.yc6{bottom:898.654866px;}
.y35{bottom:900.847500px;}
.y1e1{bottom:902.167500px;}
.yc5{bottom:906.851334px;}
.y6{bottom:914.658000px;}
.yc7{bottom:915.047801px;}
.yea{bottom:917.422500px;}
.y103{bottom:917.589000px;}
.y5d{bottom:918.606000px;}
.y1e0{bottom:921.594000px;}
.y1b6{bottom:921.643500px;}
.y34{bottom:924.757500px;}
.yc4{bottom:931.851074px;}
.y5{bottom:938.568000px;}
.y1df{bottom:941.020500px;}
.y102{bottom:941.499000px;}
.y5c{bottom:942.516000px;}
.yc3{bottom:948.244009px;}
.y33{bottom:948.667500px;}
.y1de{bottom:960.448500px;}
.y4{bottom:962.478000px;}
.yc2{bottom:965.047282px;}
.y101{bottom:965.409000px;}
.y5b{bottom:966.426000px;}
.y32{bottom:972.577500px;}
.y1dd{bottom:979.875000px;}
.yc1{bottom:981.440217px;}
.y5a{bottom:990.336000px;}
.y31{bottom:996.487500px;}
.y1dc{bottom:999.303000px;}
.y3{bottom:1013.287500px;}
.y59{bottom:1014.246000px;}
.yc0{bottom:1015.441500px;}
.y1db{bottom:1018.729500px;}
.y30{bottom:1038.157500px;}
.ybf{bottom:1039.353000px;}
.y2{bottom:1046.164500px;}
.y2f{bottom:1077.010500px;}
.y1{bottom:1079.041500px;}
.h12{height:0.000000px;}
.h1b{height:4.107819px;}
.h1c{height:4.929383px;}
.h3{height:28.285733px;}
.h16{height:32.841430px;}
.h11{height:33.187496px;}
.h14{height:33.522241px;}
.h9{height:34.263879px;}
.ha{height:34.720817px;}
.h13{height:35.865450px;}
.h19{height:36.114932px;}
.hb{height:36.884721px;}
.h17{height:38.315002px;}
.h5{height:41.842920px;}
.h4{height:44.831700px;}
.h7{height:50.642227px;}
.h10{height:50.929152px;}
.h6{height:53.798400px;}
.h1d{height:59.939700px;}
.h2{height:61.893450px;}
.hc{height:69.670591px;}
.he{height:71.534400px;}
.h1{height:72.924434px;}
.hd{height:96.836400px;}
.hf{height:102.326400px;}
.h15{height:270.660960px;}
.h18{height:297.639360px;}
.h1a{height:311.329440px;}
.h8{height:401.220600px;}
.h0{height:1188.000000px;}
.w3{width:223.229520px;}
.w4{width:233.497080px;}
.w2{width:473.656680px;}
.w1{width:667.132200px;}
.w0{width:918.000000px;}
.x34{left:-6.486030px;}
.x0{left:0.000000px;}
.x2c{left:13.371345px;}
.x25{left:19.996300px;}
.xd{left:24.070883px;}
.x24{left:26.457391px;}
.x23{left:32.720279px;}
.xf{left:40.140886px;}
.x2d{left:42.175291px;}
.x9{left:44.450889px;}
.x2b{left:55.337875px;}
.x33{left:58.499234px;}
.x1{left:108.000000px;}
.x36{left:115.471500px;}
.x13{left:118.160740px;}
.x1f{left:125.371500px;}
.x27{left:128.157025px;}
.x4{left:143.118000px;}
.x37{left:153.661500px;}
.x6{left:158.286939px;}
.x8{left:159.922178px;}
.x26{left:170.200634px;}
.x29{left:177.674823px;}
.x7{left:179.877549px;}
.x5{left:181.842353px;}
.x20{left:205.890000px;}
.x2{left:215.596500px;}
.x22{left:226.889068px;}
.x17{left:232.486551px;}
.x3{left:238.012500px;}
.x21{left:243.201000px;}
.xe{left:282.520486px;}
.x31{left:309.405000px;}
.x18{left:313.765500px;}
.x28{left:333.604500px;}
.x1b{left:335.166000px;}
.x1c{left:337.840500px;}
.x2f{left:340.756500px;}
.x1a{left:342.439500px;}
.x30{left:344.098500px;}
.x14{left:346.813389px;}
.x19{left:355.323000px;}
.x10{left:360.563187px;}
.x1d{left:364.057500px;}
.xa{left:401.403091px;}
.xb{left:407.827056px;}
.x1e{left:425.149500px;}
.x15{left:475.715954px;}
.x32{left:497.430000px;}
.xc{left:507.382865px;}
.x11{left:513.721209px;}
.x12{left:528.428709px;}
.x16{left:590.042792px;}
.x2a{left:594.979500px;}
.x35{left:604.212000px;}
.x2e{left:674.308500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v4{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:6.197333pt;}
.va{vertical-align:13.429333pt;}
.v6{vertical-align:15.765333pt;}
.v1{vertical-align:23.136000pt;}
.v8{vertical-align:26.325333pt;}
.v3{vertical-align:29.142996pt;}
.v5{vertical-align:38.256000pt;}
.v7{vertical-align:43.136000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000002pt;}
.ls10{letter-spacing:0.000012pt;}
.ls8{letter-spacing:0.000676pt;}
.ls2a{letter-spacing:0.001036pt;}
.lsb{letter-spacing:0.001146pt;}
.ls30{letter-spacing:0.001657pt;}
.lsa{letter-spacing:0.002133pt;}
.ls18{letter-spacing:0.002452pt;}
.lse{letter-spacing:0.002717pt;}
.ls1b{letter-spacing:0.003133pt;}
.ls15{letter-spacing:0.005091pt;}
.ls1a{letter-spacing:0.005137pt;}
.ls17{letter-spacing:0.406941pt;}
.ls1e{letter-spacing:2.285800pt;}
.ls2e{letter-spacing:2.291133pt;}
.ls25{letter-spacing:2.389492pt;}
.ls0{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.656125pt;}
.lsd{letter-spacing:2.657146pt;}
.ls2{letter-spacing:2.658591pt;}
.ls3{letter-spacing:2.661459pt;}
.lsc{letter-spacing:3.791684pt;}
.lsf{letter-spacing:4.578039pt;}
.ls24{letter-spacing:4.583373pt;}
.ls1d{letter-spacing:10.630323pt;}
.ls2f{letter-spacing:12.150479pt;}
.ls27{letter-spacing:12.155812pt;}
.ls29{letter-spacing:14.164509pt;}
.ls21{letter-spacing:14.166642pt;}
.ls28{letter-spacing:14.167786pt;}
.ls20{letter-spacing:16.827812pt;}
.ls26{letter-spacing:17.711572pt;}
.ls19{letter-spacing:18.961146pt;}
.ls32{letter-spacing:20.132905pt;}
.ls31{letter-spacing:20.134991pt;}
.ls4{letter-spacing:20.364911pt;}
.ls1c{letter-spacing:20.369146pt;}
.ls2d{letter-spacing:20.692905pt;}
.ls12{letter-spacing:20.706497pt;}
.ls11{letter-spacing:20.716063pt;}
.ls33{letter-spacing:20.806991pt;}
.ls22{letter-spacing:20.812063pt;}
.ls7{letter-spacing:20.812324pt;}
.ls14{letter-spacing:21.116274pt;}
.ls5{letter-spacing:22.533772pt;}
.ls2c{letter-spacing:23.355812pt;}
.ls13{letter-spacing:25.229258pt;}
.ls16{letter-spacing:25.229383pt;}
.ls2b{letter-spacing:31.218133pt;}
.ls1f{letter-spacing:36.539812pt;}
.ls9{letter-spacing:38.737146pt;}
.wsc8{word-spacing:-63.761067pt;}
.wsd4{word-spacing:-46.035490pt;}
.wsd5{word-spacing:-40.590295pt;}
.wsb1{word-spacing:-30.005958pt;}
.wsc7{word-spacing:-29.942197pt;}
.wsd0{word-spacing:-23.777242pt;}
.ws5a{word-spacing:-17.343010pt;}
.ws1c{word-spacing:-15.940267pt;}
.ws146{word-spacing:-14.760588pt;}
.ws97{word-spacing:-11.890541pt;}
.ws136{word-spacing:-3.443098pt;}
.ws6a{word-spacing:-3.379337pt;}
.ws8a{word-spacing:-3.315575pt;}
.wsb3{word-spacing:-3.251814pt;}
.ws127{word-spacing:-3.124292pt;}
.wsf6{word-spacing:-3.060531pt;}
.ws17b{word-spacing:-2.858602pt;}
.ws5f{word-spacing:-2.805487pt;}
.ws128{word-spacing:-2.741726pt;}
.ws129{word-spacing:-2.677965pt;}
.ws19a{word-spacing:-2.646067pt;}
.ws52{word-spacing:-2.614204pt;}
.ws164{word-spacing:-2.592933pt;}
.ws42{word-spacing:-2.486682pt;}
.wsb9{word-spacing:-2.422921pt;}
.ws177{word-spacing:-2.380397pt;}
.ws29{word-spacing:-2.231637pt;}
.ws141{word-spacing:-2.008460pt;}
.ws56{word-spacing:-1.976593pt;}
.ws154{word-spacing:-1.849059pt;}
.ws38{word-spacing:-1.785310pt;}
.ws92{word-spacing:-1.748609pt;}
.ws165{word-spacing:-1.636523pt;}
.ws171{word-spacing:-1.583389pt;}
.ws166{word-spacing:-1.530255pt;}
.wsf5{word-spacing:-1.466505pt;}
.ws126{word-spacing:-1.402743pt;}
.ws18a{word-spacing:-1.370854pt;}
.wsa1{word-spacing:-1.355172pt;}
.ws72{word-spacing:-1.338982pt;}
.ws95{word-spacing:-1.311457pt;}
.ws142{word-spacing:-1.211452pt;}
.wse1{word-spacing:-1.147699pt;}
.wsd3{word-spacing:-1.042394pt;}
.wsb2{word-spacing:-1.020177pt;}
.ws18f{word-spacing:-0.998917pt;}
.ws134{word-spacing:-0.892655pt;}
.wsdf{word-spacing:-0.828894pt;}
.ws6f{word-spacing:-0.701372pt;}
.wsab{word-spacing:-0.637611pt;}
.ws10{word-spacing:-0.573846pt;}
.ws99{word-spacing:-0.524583pt;}
.ws41{word-spacing:-0.510089pt;}
.ws117{word-spacing:-0.446327pt;}
.ws173{word-spacing:-0.414444pt;}
.ws118{word-spacing:-0.318805pt;}
.ws172{word-spacing:-0.308176pt;}
.ws76{word-spacing:-0.255044pt;}
.ws175{word-spacing:-0.201909pt;}
.wsb8{word-spacing:-0.191283pt;}
.ws64{word-spacing:-0.127522pt;}
.ws1{word-spacing:-0.091815pt;}
.ws3{word-spacing:-0.063761pt;}
.ws13a{word-spacing:-0.053134pt;}
.wsc6{word-spacing:-0.042507pt;}
.ws1f{word-spacing:0.000000pt;}
.ws13b{word-spacing:0.010627pt;}
.ws1a{word-spacing:0.170028pt;}
.wsd7{word-spacing:0.191283pt;}
.wsaa{word-spacing:0.255044pt;}
.ws3a{word-spacing:0.318805pt;}
.ws17a{word-spacing:0.329430pt;}
.wsd1{word-spacing:0.382566pt;}
.wsa3{word-spacing:0.446327pt;}
.ws3e{word-spacing:0.637611pt;}
.ws18b{word-spacing:0.701367pt;}
.ws69{word-spacing:0.701372pt;}
.ws54{word-spacing:0.765133pt;}
.wsb0{word-spacing:0.828894pt;}
.ws109{word-spacing:0.956416pt;}
.ws183{word-spacing:1.020170pt;}
.wsf8{word-spacing:1.020177pt;}
.ws2c{word-spacing:1.083938pt;}
.ws50{word-spacing:1.275221pt;}
.ws10e{word-spacing:1.338982pt;}
.ws25{word-spacing:1.530266pt;}
.ws106{word-spacing:1.594027pt;}
.ws75{word-spacing:1.785310pt;}
.ws179{word-spacing:1.817178pt;}
.ws9e{word-spacing:1.879755pt;}
.ws74{word-spacing:1.912832pt;}
.wsd2{word-spacing:1.916174pt;}
.ws16c{word-spacing:1.923446pt;}
.ws5{word-spacing:1.976580pt;}
.ws188{word-spacing:2.082848pt;}
.ws46{word-spacing:2.104115pt;}
.ws45{word-spacing:2.167876pt;}
.ws2f{word-spacing:2.231637pt;}
.ws88{word-spacing:2.295398pt;}
.wsf3{word-spacing:2.359159pt;}
.ws93{word-spacing:2.360622pt;}
.ws13f{word-spacing:2.401651pt;}
.ws9b{word-spacing:2.404337pt;}
.wsf0{word-spacing:2.422921pt;}
.ws13d{word-spacing:2.454785pt;}
.ws40{word-spacing:2.486682pt;}
.ws152{word-spacing:2.614186pt;}
.ws10d{word-spacing:2.741726pt;}
.ws61{word-spacing:2.805487pt;}
.ws194{word-spacing:2.826722pt;}
.ws125{word-spacing:2.869248pt;}
.ws4{word-spacing:2.932989pt;}
.ws23{word-spacing:2.933009pt;}
.ws1b{word-spacing:2.986123pt;}
.ws182{word-spacing:3.039257pt;}
.ws12e{word-spacing:3.060531pt;}
.ws63{word-spacing:3.124292pt;}
.ws135{word-spacing:3.188053pt;}
.wsa2{word-spacing:3.251814pt;}
.ws15b{word-spacing:3.304927pt;}
.wsaf{word-spacing:3.315575pt;}
.ws110{word-spacing:3.442185pt;}
.ws1e{word-spacing:3.443098pt;}
.ws10f{word-spacing:3.464392pt;}
.ws8e{word-spacing:3.506859pt;}
.ws19{word-spacing:3.570596pt;}
.ws3d{word-spacing:3.570620pt;}
.ws2d{word-spacing:3.634381pt;}
.ws7f{word-spacing:3.698142pt;}
.ws39{word-spacing:3.761903pt;}
.wsa9{word-spacing:3.825664pt;}
.wsbb{word-spacing:3.889425pt;}
.ws3f{word-spacing:3.953186pt;}
.ws189{word-spacing:3.995667pt;}
.wse2{word-spacing:4.016947pt;}
.ws26{word-spacing:4.144469pt;}
.ws139{word-spacing:4.208202pt;}
.wsef{word-spacing:4.208230pt;}
.ws111{word-spacing:4.271991pt;}
.ws4c{word-spacing:4.335753pt;}
.ws12d{word-spacing:4.527036pt;}
.wsf{word-spacing:4.580139pt;}
.ws70{word-spacing:4.590797pt;}
.ws58{word-spacing:4.654558pt;}
.ws178{word-spacing:4.686407pt;}
.ws24{word-spacing:4.845841pt;}
.ws16e{word-spacing:4.898943pt;}
.wsa7{word-spacing:4.909602pt;}
.ws176{word-spacing:4.952076pt;}
.ws104{word-spacing:4.973363pt;}
.wsd6{word-spacing:5.037124pt;}
.ws137{word-spacing:5.100885pt;}
.ws9{word-spacing:5.111478pt;}
.wsce{word-spacing:5.207340pt;}
.wscf{word-spacing:5.228407pt;}
.ws8f{word-spacing:5.292169pt;}
.ws174{word-spacing:5.324013pt;}
.ws34{word-spacing:5.355930pt;}
.ws16a{word-spacing:5.377147pt;}
.ws53{word-spacing:5.483452pt;}
.ws162{word-spacing:5.536549pt;}
.ws11e{word-spacing:5.610974pt;}
.ws14{word-spacing:5.695951pt;}
.wse4{word-spacing:5.738496pt;}
.ws18{word-spacing:5.749084pt;}
.ws59{word-spacing:5.802257pt;}
.ws170{word-spacing:5.908486pt;}
.wsf7{word-spacing:5.929779pt;}
.ws11f{word-spacing:6.057301pt;}
.ws143{word-spacing:6.067888pt;}
.wsd{word-spacing:6.121021pt;}
.ws43{word-spacing:6.184823pt;}
.ws163{word-spacing:6.227289pt;}
.ws44{word-spacing:6.248585pt;}
.ws149{word-spacing:6.333557pt;}
.ws20{word-spacing:6.376107pt;}
.wsd8{word-spacing:6.439868pt;}
.ws33{word-spacing:6.503629pt;}
.ws4f{word-spacing:6.567390pt;}
.ws14d{word-spacing:6.599226pt;}
.ws132{word-spacing:6.631151pt;}
.ws55{word-spacing:6.694912pt;}
.ws18d{word-spacing:6.758628pt;}
.wsd9{word-spacing:6.758673pt;}
.ws186{word-spacing:6.811762pt;}
.wsbd{word-spacing:6.822434pt;}
.ws191{word-spacing:6.864896pt;}
.ws71{word-spacing:6.949956pt;}
.ws57{word-spacing:7.013717pt;}
.ws148{word-spacing:7.077431pt;}
.ws3b{word-spacing:7.077478pt;}
.ws4e{word-spacing:7.141239pt;}
.wsdd{word-spacing:7.205001pt;}
.ws17c{word-spacing:7.236833pt;}
.ws77{word-spacing:7.268762pt;}
.ws49{word-spacing:7.332523pt;}
.ws27{word-spacing:7.396284pt;}
.ws131{word-spacing:7.460045pt;}
.ws122{word-spacing:7.523806pt;}
.ws12a{word-spacing:7.587567pt;}
.ws15{word-spacing:7.768171pt;}
.ws94{word-spacing:7.781310pt;}
.ws10c{word-spacing:7.842611pt;}
.ws12{word-spacing:7.874439pt;}
.ws185{word-spacing:7.927573pt;}
.ws124{word-spacing:8.033894pt;}
.ws16b{word-spacing:8.086975pt;}
.ws73{word-spacing:8.097655pt;}
.ws102{word-spacing:8.161417pt;}
.ws108{word-spacing:8.225178pt;}
.ws192{word-spacing:8.352644pt;}
.ws89{word-spacing:8.352700pt;}
.wsf4{word-spacing:8.416461pt;}
.ws87{word-spacing:8.480222pt;}
.wsae{word-spacing:8.543983pt;}
.ws48{word-spacing:8.735266pt;}
.ws9c{word-spacing:8.786760pt;}
.wsee{word-spacing:8.799027pt;}
.ws15f{word-spacing:8.830849pt;}
.ws18c{word-spacing:8.851861pt;}
.ws6{word-spacing:8.855169pt;}
.ws6c{word-spacing:8.862788pt;}
.wsa4{word-spacing:8.926549pt;}
.wsbc{word-spacing:8.990310pt;}
.ws51{word-spacing:9.054071pt;}
.ws11{word-spacing:9.064638pt;}
.ws7c{word-spacing:9.117833pt;}
.ws160{word-spacing:9.149652pt;}
.wse5{word-spacing:9.181594pt;}
.ws13e{word-spacing:9.202786pt;}
.ws62{word-spacing:9.211228pt;}
.ws2e{word-spacing:9.245355pt;}
.ws199{word-spacing:9.255920pt;}
.ws3c{word-spacing:9.309116pt;}
.wse3{word-spacing:9.372877pt;}
.wsc0{word-spacing:9.436638pt;}
.ws123{word-spacing:9.500399pt;}
.ws68{word-spacing:9.564160pt;}
.wsff{word-spacing:9.627921pt;}
.wscb{word-spacing:9.691682pt;}
.wsa8{word-spacing:9.819204pt;}
.ws100{word-spacing:9.882965pt;}
.ws151{word-spacing:9.946660pt;}
.wsbe{word-spacing:9.946726pt;}
.ws116{word-spacing:10.010487pt;}
.wse0{word-spacing:10.138010pt;}
.ws153{word-spacing:10.159195pt;}
.wsbf{word-spacing:10.265532pt;}
.ws7e{word-spacing:10.329293pt;}
.wsba{word-spacing:10.393054pt;}
.ws83{word-spacing:10.456815pt;}
.ws13c{word-spacing:10.477999pt;}
.ws4d{word-spacing:10.520576pt;}
.ws187{word-spacing:10.531132pt;}
.ws198{word-spacing:10.743668pt;}
.ws28{word-spacing:10.775620pt;}
.ws144{word-spacing:10.796802pt;}
.ws35{word-spacing:10.966903pt;}
.wsfd{word-spacing:11.030665pt;}
.ws22{word-spacing:11.094426pt;}
.ws184{word-spacing:11.168739pt;}
.ws7b{word-spacing:11.221948pt;}
.ws9a{word-spacing:11.278528pt;}
.wsfe{word-spacing:11.285709pt;}
.ws12b{word-spacing:11.349470pt;}
.ws8d{word-spacing:11.476992pt;}
.ws190{word-spacing:11.540676pt;}
.ws32{word-spacing:11.540753pt;}
.wsc{word-spacing:11.700077pt;}
.ws84{word-spacing:11.732036pt;}
.wsb7{word-spacing:11.795797pt;}
.ws120{word-spacing:11.987081pt;}
.wsda{word-spacing:12.050842pt;}
.ws4b{word-spacing:12.114603pt;}
.ws169{word-spacing:12.125148pt;}
.ws60{word-spacing:12.242125pt;}
.ws121{word-spacing:12.305886pt;}
.wseb{word-spacing:12.433408pt;}
.ws103{word-spacing:12.481067pt;}
.ws16f{word-spacing:12.550219pt;}
.ws12f{word-spacing:12.560930pt;}
.ws36{word-spacing:12.624691pt;}
.ws96{word-spacing:12.677415pt;}
.ws7d{word-spacing:12.688452pt;}
.ws6e{word-spacing:12.752213pt;}
.ws115{word-spacing:12.815974pt;}
.ws101{word-spacing:13.007258pt;}
.ws47{word-spacing:13.071019pt;}
.wsc2{word-spacing:13.198541pt;}
.ws159{word-spacing:13.294093pt;}
.ws11a{word-spacing:13.326063pt;}
.ws7a{word-spacing:13.389824pt;}
.wsdb{word-spacing:13.453585pt;}
.ws9f{word-spacing:13.551720pt;}
.ws8b{word-spacing:13.581107pt;}
.ws18e{word-spacing:13.612897pt;}
.ws12c{word-spacing:13.644868pt;}
.wsdc{word-spacing:13.708629pt;}
.wsc5{word-spacing:13.836151pt;}
.ws81{word-spacing:13.899913pt;}
.ws11d{word-spacing:14.027435pt;}
.ws140{word-spacing:14.091101pt;}
.ws4a{word-spacing:14.091196pt;}
.ws119{word-spacing:14.218718pt;}
.ws167{word-spacing:14.303637pt;}
.ws6b{word-spacing:14.346240pt;}
.ws145{word-spacing:14.356771pt;}
.ws15c{word-spacing:14.622440pt;}
.wsed{word-spacing:14.665045pt;}
.ws11b{word-spacing:14.792567pt;}
.wsb6{word-spacing:14.856329pt;}
.ws168{word-spacing:14.888109pt;}
.ws5e{word-spacing:14.920090pt;}
.ws15a{word-spacing:15.047511pt;}
.wsf9{word-spacing:15.047612pt;}
.ws10b{word-spacing:15.111373pt;}
.ws10a{word-spacing:15.112931pt;}
.ws80{word-spacing:15.238895pt;}
.wsde{word-spacing:15.302656pt;}
.ws37{word-spacing:15.366417pt;}
.ws161{word-spacing:15.472582pt;}
.ws193{word-spacing:15.578850pt;}
.ws65{word-spacing:15.748983pt;}
.ws11c{word-spacing:15.812745pt;}
.wscc{word-spacing:16.131550pt;}
.ws107{word-spacing:16.195311pt;}
.ws150{word-spacing:16.216456pt;}
.wse9{word-spacing:16.280258pt;}
.ws17{word-spacing:16.322724pt;}
.wsb4{word-spacing:16.577877pt;}
.ws15e{word-spacing:16.800929pt;}
.wsb5{word-spacing:16.832922pt;}
.ws114{word-spacing:17.087966pt;}
.ws138{word-spacing:17.279133pt;}
.wse6{word-spacing:17.300430pt;}
.ws82{word-spacing:17.343010pt;}
.wsa5{word-spacing:17.461451pt;}
.ws155{word-spacing:17.491669pt;}
.ws13{word-spacing:17.651071pt;}
.ws1d{word-spacing:17.853099pt;}
.wsb{word-spacing:17.916740pt;}
.wsfc{word-spacing:17.980621pt;}
.ws15d{word-spacing:18.129275pt;}
.ws16d{word-spacing:18.182409pt;}
.ws6d{word-spacing:18.618231pt;}
.ws8{word-spacing:18.660614pt;}
.wsc4{word-spacing:18.745754pt;}
.wsa0{word-spacing:18.884977pt;}
.ws2b{word-spacing:19.000798pt;}
.ws147{word-spacing:19.032551pt;}
.ws14f{word-spacing:19.298220pt;}
.ws112{word-spacing:19.574647pt;}
.ws2a{word-spacing:19.638409pt;}
.ws133{word-spacing:19.702170pt;}
.wsec{word-spacing:19.918111pt;}
.wscd{word-spacing:20.148497pt;}
.ws30{word-spacing:20.339780pt;}
.ws113{word-spacing:20.594825pt;}
.wsc1{word-spacing:20.658586pt;}
.ws67{word-spacing:20.901895pt;}
.wsad{word-spacing:20.913630pt;}
.wsc9{word-spacing:20.939839pt;}
.wse{word-spacing:21.157906pt;}
.ws8c{word-spacing:21.359957pt;}
.ws66{word-spacing:22.061329pt;}
.wsac{word-spacing:22.380134pt;}
.wsc3{word-spacing:23.272789pt;}
.ws130{word-spacing:23.336550pt;}
.ws2{word-spacing:23.846639pt;}
.wsca{word-spacing:24.803055pt;}
.ws86{word-spacing:25.249382pt;}
.ws85{word-spacing:26.397082pt;}
.wsa6{word-spacing:27.672303pt;}
.ws14e{word-spacing:28.330978pt;}
.ws195{word-spacing:28.596647pt;}
.ws31{word-spacing:29.712657pt;}
.ws79{word-spacing:30.350268pt;}
.ws78{word-spacing:31.115401pt;}
.ws5d{word-spacing:31.306684pt;}
.ws21{word-spacing:31.816772pt;}
.ws5c{word-spacing:32.008055pt;}
.ws16{word-spacing:33.417158pt;}
.ws0{word-spacing:34.338985pt;}
.ws14a{word-spacing:34.441372pt;}
.ws98{word-spacing:35.147041pt;}
.wsa{word-spacing:36.603380pt;}
.ws7{word-spacing:38.055179pt;}
.ws9d{word-spacing:38.294537pt;}
.ws196{word-spacing:38.904617pt;}
.ws197{word-spacing:38.957751pt;}
.ws156{word-spacing:39.595357pt;}
.ws90{word-spacing:43.584079pt;}
.ws158{word-spacing:43.792933pt;}
.ws157{word-spacing:47.299768pt;}
.ws14c{word-spacing:48.096776pt;}
.ws17d{word-spacing:49.850194pt;}
.ws14b{word-spacing:50.966005pt;}
.wsea{word-spacing:63.709190pt;}
.ws17f{word-spacing:64.993346pt;}
.ws17e{word-spacing:73.547898pt;}
.ws5b{word-spacing:94.000561pt;}
.wsf2{word-spacing:103.618550pt;}
.ws180{word-spacing:119.296157pt;}
.ws181{word-spacing:119.475861pt;}
.ws91{word-spacing:180.680061pt;}
.wse8{word-spacing:201.717317pt;}
.ws105{word-spacing:224.500044pt;}
.wsf1{word-spacing:259.339981pt;}
.wsfb{word-spacing:705.739200pt;}
.wse7{word-spacing:710.986169pt;}
.wsfa{word-spacing:714.667624pt;}
._22{margin-left:-1112.383787pt;}
._3c{margin-left:-37.404085pt;}
._3b{margin-left:-34.066579pt;}
._4a{margin-left:-27.968366pt;}
._4d{margin-left:-26.290803pt;}
._4b{margin-left:-24.810747pt;}
._57{margin-left:-23.262173pt;}
._7{margin-left:-20.581085pt;}
._2{margin-left:-8.630654pt;}
._3{margin-left:-5.993540pt;}
._5{margin-left:-4.410111pt;}
._1{margin-left:-2.846279pt;}
._4{margin-left:-1.457335pt;}
._6{width:1.487748pt;}
._0{width:2.846279pt;}
._36{width:3.848118pt;}
._3d{width:11.476992pt;}
._2a{width:14.528188pt;}
._12{width:16.259072pt;}
._20{width:17.215488pt;}
._1a{width:18.545301pt;}
._38{width:19.441482pt;}
._27{width:20.553517pt;}
._9{width:22.308532pt;}
._1f{width:23.910430pt;}
._c{width:25.177761pt;}
._11{width:26.260390pt;}
._15{width:27.981939pt;}
._10{width:29.776418pt;}
._40{width:30.829943pt;}
._b{width:31.827186pt;}
._8{width:33.208667pt;}
._1c{width:34.112171pt;}
._a{width:36.047482pt;}
._3e{width:37.269888pt;}
._e{width:38.502515pt;}
._13{width:40.169472pt;}
._35{width:41.223849pt;}
._48{width:42.391970pt;}
._21{width:43.995136pt;}
._1e{width:44.996975pt;}
._33{width:46.408887pt;}
._18{width:47.979945pt;}
._1d{width:49.032260pt;}
._19{width:51.105962pt;}
._37{width:52.964203pt;}
._17{width:54.515712pt;}
._d{width:56.147359pt;}
._4c{width:57.126243pt;}
._4e{width:58.143479pt;}
._1b{width:60.149140pt;}
._31{width:61.128617pt;}
._3f{width:62.039518pt;}
._42{width:63.763661pt;}
._46{width:64.888506pt;}
._3a{width:66.215610pt;}
._49{width:67.993476pt;}
._25{width:69.584083pt;}
._30{width:72.417268pt;}
._14{width:73.826146pt;}
._34{width:76.768324pt;}
._16{width:78.523221pt;}
._53{width:85.902078pt;}
._39{width:87.003661pt;}
._26{width:88.691644pt;}
._32{width:95.322795pt;}
._4f{width:98.626917pt;}
._24{width:102.910362pt;}
._2d{width:106.330824pt;}
._5b{width:107.277277pt;}
._54{width:109.094289pt;}
._52{width:113.792215pt;}
._55{width:116.947641pt;}
._44{width:119.286566pt;}
._45{width:121.145744pt;}
._51{width:125.631182pt;}
._58{width:129.634375pt;}
._50{width:131.369639pt;}
._56{width:136.091684pt;}
._29{width:149.903163pt;}
._59{width:159.507868pt;}
._2f{width:176.802924pt;}
._5a{width:178.577523pt;}
._2c{width:201.749896pt;}
._2e{width:223.193832pt;}
._43{width:224.982332pt;}
._2b{width:243.056209pt;}
._28{width:278.358074pt;}
._23{width:421.940265pt;}
._41{width:511.718060pt;}
._47{width:718.342079pt;}
._f{width:749.558079pt;}
.fsa{font-size:3.843573pt;}
.fsb{font-size:4.612288pt;}
.fs3{font-size:37.193600pt;}
.fs7{font-size:40.097920pt;}
.fs5{font-size:41.834667pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:43.715225pt;}
.fs9{font-size:44.094720pt;}
.fs8{font-size:46.780907pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:12.669606pt;}
.y14a{bottom:13.027898pt;}
.y15a{bottom:13.984181pt;}
.y180{bottom:16.838503pt;}
.y90{bottom:30.304405pt;}
.y88{bottom:31.618641pt;}
.y14e{bottom:38.407626pt;}
.y181{bottom:40.246056pt;}
.y129{bottom:46.093333pt;}
.y9f{bottom:47.226667pt;}
.y156{bottom:47.232844pt;}
.y15b{bottom:47.363792pt;}
.y1b5{bottom:51.408000pt;}
.y2e{bottom:51.882667pt;}
.y7f{bottom:54.108000pt;}
.ye9{bottom:54.372000pt;}
.y17d{bottom:54.692000pt;}
.y58{bottom:56.876000pt;}
.y8f{bottom:57.318827pt;}
.y1a1{bottom:57.653333pt;}
.y100{bottom:59.212000pt;}
.y209{bottom:59.377333pt;}
.y170{bottom:59.608000pt;}
.y14f{bottom:63.484113pt;}
.y182{bottom:65.147799pt;}
.y1da{bottom:66.306667pt;}
.y128{bottom:67.348000pt;}
.y9e{bottom:68.480000pt;}
.ybe{bottom:69.506667pt;}
.y1b4{bottom:72.661333pt;}
.y2d{bottom:73.137333pt;}
.y143{bottom:74.439282pt;}
.y7e{bottom:75.362667pt;}
.ye8{bottom:75.625333pt;}
.y17c{bottom:75.945333pt;}
.y208{bottom:76.645333pt;}
.y15c{bottom:77.074998pt;}
.y148{bottom:77.516464pt;}
.y57{bottom:78.129333pt;}
.y1a0{bottom:78.906667pt;}
.yff{bottom:80.465333pt;}
.y16f{bottom:80.861333pt;}
.y1d9{bottom:83.576000pt;}
.y8e{bottom:84.333668pt;}
.y144{bottom:85.608224pt;}
.y150{bottom:88.560433pt;}
.y183{bottom:90.049638pt;}
.ybd{bottom:90.760000pt;}
.y1b3{bottom:93.914667pt;}
.y84{bottom:96.170578pt;}
.y7d{bottom:96.616000pt;}
.ye7{bottom:96.878667pt;}
.y56{bottom:99.382667pt;}
.y19f{bottom:100.160000pt;}
.y1d8{bottom:100.844000pt;}
.yfe{bottom:101.718667pt;}
.y16e{bottom:102.114667pt;}
.y127{bottom:104.386667pt;}
.y15d{bottom:106.786388pt;}
.y83{bottom:108.720978pt;}
.y207{bottom:111.182667pt;}
.y8d{bottom:111.348195pt;}
.ybc{bottom:112.013333pt;}
.y9d{bottom:112.038667pt;}
.y18a{bottom:113.277793pt;}
.y151{bottom:113.636670pt;}
.y184{bottom:114.951669pt;}
.y1b2{bottom:115.168000pt;}
.y7c{bottom:117.869333pt;}
.y1d7{bottom:118.112000pt;}
.ye6{bottom:118.132000pt;}
.y2c{bottom:118.301333pt;}
.y55{bottom:120.637333pt;}
.y17b{bottom:120.844000pt;}
.y19e{bottom:121.413333pt;}
.yfd{bottom:122.972000pt;}
.y145{bottom:127.985042pt;}
.y206{bottom:128.452000pt;}
.ybb{bottom:133.266667pt;}
.y9c{bottom:133.293333pt;}
.y16d{bottom:133.664000pt;}
.y1d6{bottom:135.381333pt;}
.y2b{bottom:135.569333pt;}
.y1b1{bottom:136.421333pt;}
.y15e{bottom:136.497043pt;}
.y8c{bottom:138.362931pt;}
.y152{bottom:138.712907pt;}
.y7b{bottom:139.122667pt;}
.ye5{bottom:139.385333pt;}
.y185{bottom:139.853220pt;}
.y54{bottom:141.890667pt;}
.y17a{bottom:142.097333pt;}
.y19d{bottom:142.668000pt;}
.yfc{bottom:144.225333pt;}
.y205{bottom:145.720000pt;}
.y126{bottom:149.513333pt;}
.y1d5{bottom:152.649333pt;}
.y2a{bottom:152.837333pt;}
.yba{bottom:154.521333pt;}
.y1b0{bottom:157.676000pt;}
.y7a{bottom:160.376000pt;}
.ye4{bottom:160.640000pt;}
.y92{bottom:161.476584pt;}
.y8b{bottom:161.477630pt;}
.y204{bottom:162.989333pt;}
.y53{bottom:163.144000pt;}
.y179{bottom:163.350667pt;}
.y153{bottom:163.789143pt;}
.y186{bottom:164.754771pt;}
.y9b{bottom:164.841333pt;}
.yfb{bottom:165.480000pt;}
.y15f{bottom:166.208617pt;}
.y1d4{bottom:169.918667pt;}
.y29{bottom:170.106667pt;}
.y146{bottom:170.361861pt;}
.y125{bottom:170.766667pt;}
.yb9{bottom:175.774667pt;}
.y1af{bottom:178.929333pt;}
.y19c{bottom:179.706667pt;}
.y203{bottom:180.257333pt;}
.y79{bottom:181.630667pt;}
.ye3{bottom:181.893333pt;}
.y16c{bottom:183.598667pt;}
.y52{bottom:184.397333pt;}
.y178{bottom:184.604000pt;}
.yfa{bottom:186.733333pt;}
.y1d3{bottom:187.186667pt;}
.y28{bottom:187.374667pt;}
.y154{bottom:188.865380pt;}
.y187{bottom:189.656322pt;}
.y124{bottom:192.020000pt;}
.y160{bottom:195.919271pt;}
.yb8{bottom:197.028000pt;}
.y202{bottom:197.525333pt;}
.y1ae{bottom:200.182667pt;}
.y78{bottom:202.884000pt;}
.ye2{bottom:203.146667pt;}
.y1d2{bottom:204.456000pt;}
.y27{bottom:204.644000pt;}
.y16b{bottom:204.852000pt;}
.y51{bottom:205.650667pt;}
.y177{bottom:205.858667pt;}
.yf9{bottom:207.986667pt;}
.y147{bottom:212.738679pt;}
.y123{bottom:213.273333pt;}
.y155{bottom:213.941617pt;}
.y188{bottom:214.557872pt;}
.y9a{bottom:214.776000pt;}
.y201{bottom:214.794667pt;}
.yb7{bottom:218.281333pt;}
.y149{bottom:221.340518pt;}
.y1ad{bottom:221.436000pt;}
.y1d1{bottom:221.724000pt;}
.y26{bottom:221.912000pt;}
.y157{bottom:222.543456pt;}
.y77{bottom:224.137333pt;}
.ye1{bottom:224.400000pt;}
.y19b{bottom:224.981333pt;}
.y161{bottom:225.630845pt;}
.y16a{bottom:226.105333pt;}
.y50{bottom:226.905333pt;}
.y176{bottom:227.112000pt;}
.yf8{bottom:229.240000pt;}
.y200{bottom:232.062667pt;}
.y122{bottom:234.528000pt;}
.y99{bottom:236.029333pt;}
.y1d0{bottom:238.992000pt;}
.y25{bottom:239.181333pt;}
.y189{bottom:239.460384pt;}
.yb6{bottom:239.534667pt;}
.y141{bottom:242.269333pt;}
.y1ac{bottom:242.690667pt;}
.y162{bottom:244.674252pt;}
.y76{bottom:245.390667pt;}
.y89{bottom:245.446081pt;}
.y19a{bottom:246.234667pt;}
.y169{bottom:247.358667pt;}
.y4f{bottom:248.158667pt;}
.y175{bottom:248.365333pt;}
.y1ff{bottom:249.332000pt;}
.yf7{bottom:250.494667pt;}
.y121{bottom:255.781333pt;}
.y1cf{bottom:256.261333pt;}
.y24{bottom:256.449333pt;}
.y98{bottom:257.284000pt;}
.yb5{bottom:260.789333pt;}
.y140{bottom:263.522667pt;}
.y1ab{bottom:263.944000pt;}
.y1fe{bottom:266.600000pt;}
.y75{bottom:266.645333pt;}
.y199{bottom:267.488000pt;}
.ye0{bottom:267.958667pt;}
.y168{bottom:268.613333pt;}
.y4e{bottom:269.412000pt;}
.y174{bottom:269.618667pt;}
.yf6{bottom:271.748000pt;}
.y1ce{bottom:273.529333pt;}
.y23{bottom:273.717333pt;}
.y120{bottom:277.034667pt;}
.y97{bottom:278.537333pt;}
.y87{bottom:278.611245pt;}
.y82{bottom:278.611559pt;}
.yb4{bottom:282.042667pt;}
.y1fd{bottom:283.869333pt;}
.y13f{bottom:284.777333pt;}
.y1aa{bottom:285.197333pt;}
.y74{bottom:287.898667pt;}
.y198{bottom:288.741333pt;}
.ydf{bottom:289.213333pt;}
.y167{bottom:289.866667pt;}
.y4d{bottom:290.665333pt;}
.y1cd{bottom:290.798667pt;}
.y173{bottom:290.872000pt;}
.y22{bottom:290.986667pt;}
.y86{bottom:291.161645pt;}
.y81{bottom:291.161959pt;}
.yf5{bottom:293.001333pt;}
.y11f{bottom:298.288000pt;}
.y96{bottom:299.790667pt;}
.y1fc{bottom:301.137333pt;}
.y13e{bottom:306.030667pt;}
.y1a9{bottom:306.450667pt;}
.y1cc{bottom:308.066667pt;}
.y21{bottom:308.254667pt;}
.y73{bottom:309.152000pt;}
.y197{bottom:309.996000pt;}
.yde{bottom:310.466667pt;}
.y166{bottom:311.120000pt;}
.y4c{bottom:311.918667pt;}
.yf4{bottom:314.254667pt;}
.y20a{bottom:318.405333pt;}
.y1fb{bottom:318.406667pt;}
.y95{bottom:321.044000pt;}
.y172{bottom:324.214667pt;}
.y1cb{bottom:325.336000pt;}
.y20{bottom:325.524000pt;}
.yb3{bottom:325.601333pt;}
.y11e{bottom:327.082667pt;}
.y13d{bottom:327.284000pt;}
.y1a8{bottom:327.704000pt;}
.y72{bottom:330.405333pt;}
.y196{bottom:331.249333pt;}
.ydd{bottom:331.720000pt;}
.y8a{bottom:332.016649pt;}
.y91{bottom:332.036520pt;}
.y165{bottom:332.373333pt;}
.y85{bottom:332.546903pt;}
.y4b{bottom:333.173333pt;}
.yf3{bottom:335.508000pt;}
.y1fa{bottom:335.674667pt;}
.y94{bottom:342.298667pt;}
.y1ca{bottom:342.604000pt;}
.y1f{bottom:342.792000pt;}
.yb2{bottom:346.854667pt;}
.y11d{bottom:348.336000pt;}
.y13c{bottom:348.537333pt;}
.y1a7{bottom:348.958667pt;}
.y71{bottom:351.658667pt;}
.y195{bottom:352.502667pt;}
.y1f9{bottom:352.942667pt;}
.ydc{bottom:352.973333pt;}
.y164{bottom:353.628000pt;}
.y4a{bottom:354.426667pt;}
.y1c9{bottom:359.872000pt;}
.y1e{bottom:360.061333pt;}
.y93{bottom:363.552000pt;}
.yb1{bottom:368.108000pt;}
.y13b{bottom:369.790667pt;}
.y1a6{bottom:370.212000pt;}
.y70{bottom:372.913333pt;}
.y11c{bottom:373.430667pt;}
.y194{bottom:373.756000pt;}
.ydb{bottom:374.228000pt;}
.y49{bottom:375.680000pt;}
.y1c8{bottom:377.141333pt;}
.y1d{bottom:377.329333pt;}
.yf2{bottom:379.068000pt;}
.y163{bottom:385.773333pt;}
.y1f8{bottom:387.480000pt;}
.yb0{bottom:389.362667pt;}
.y11b{bottom:390.744000pt;}
.y1a5{bottom:391.465333pt;}
.y80{bottom:391.713333pt;}
.y6f{bottom:394.166667pt;}
.y1c7{bottom:394.409333pt;}
.y1c{bottom:394.597333pt;}
.y11a{bottom:394.685333pt;}
.y193{bottom:395.010667pt;}
.yda{bottom:395.481333pt;}
.y48{bottom:396.933333pt;}
.y158{bottom:397.764000pt;}
.yf1{bottom:400.321333pt;}
.y13a{bottom:401.340000pt;}
.y1f7{bottom:404.749333pt;}
.y159{bottom:407.026667pt;}
.yaf{bottom:410.616000pt;}
.y1c6{bottom:411.678667pt;}
.y1b{bottom:411.866667pt;}
.y1a4{bottom:412.718667pt;}
.y192{bottom:416.264000pt;}
.yd9{bottom:416.734667pt;}
.y47{bottom:418.188000pt;}
.y14c{bottom:419.017333pt;}
.yf0{bottom:421.574667pt;}
.y1f6{bottom:422.017333pt;}
.y119{bottom:423.478667pt;}
.y1c5{bottom:428.946667pt;}
.y1a{bottom:429.134667pt;}
.y6e{bottom:431.205333pt;}
.yae{bottom:431.869333pt;}
.y1a3{bottom:433.973333pt;}
.y191{bottom:437.517333pt;}
.yd8{bottom:437.988000pt;}
.y1f5{bottom:439.286667pt;}
.y46{bottom:439.441333pt;}
.yef{bottom:442.828000pt;}
.y1c4{bottom:446.216000pt;}
.y19{bottom:446.404000pt;}
.y117{bottom:448.709333pt;}
.y139{bottom:451.274667pt;}
.yad{bottom:453.122667pt;}
.y1a2{bottom:455.226667pt;}
.y114{bottom:456.224000pt;}
.y1f4{bottom:456.554667pt;}
.yd7{bottom:459.241333pt;}
.y45{bottom:460.694667pt;}
.y118{bottom:463.217333pt;}
.y1c3{bottom:463.484000pt;}
.y18{bottom:463.672000pt;}
.yee{bottom:464.082667pt;}
.y113{bottom:467.158667pt;}
.y138{bottom:472.528000pt;}
.y1f3{bottom:473.822667pt;}
.yac{bottom:474.377333pt;}
.y6d{bottom:476.480000pt;}
.y1c2{bottom:480.752000pt;}
.y44{bottom:481.948000pt;}
.y116{bottom:482.301333pt;}
.y115{bottom:487.084000pt;}
.y1f2{bottom:491.092000pt;}
.y190{bottom:491.714667pt;}
.yab{bottom:495.630667pt;}
.y6c{bottom:497.733333pt;}
.y1c1{bottom:498.021333pt;}
.yd6{bottom:502.801333pt;}
.y43{bottom:503.201333pt;}
.y137{bottom:505.006667pt;}
.y1f1{bottom:508.360000pt;}
.y17{bottom:508.836000pt;}
.y112{bottom:511.605333pt;}
.y18f{bottom:512.968000pt;}
.y1c0{bottom:515.289333pt;}
.yaa{bottom:516.884000pt;}
.y136{bottom:518.157333pt;}
.y6b{bottom:518.986667pt;}
.yd5{bottom:524.054667pt;}
.y42{bottom:524.456000pt;}
.y1f0{bottom:525.629333pt;}
.y111{bottom:528.918667pt;}
.y135{bottom:531.308000pt;}
.y110{bottom:532.860000pt;}
.y18e{bottom:534.221333pt;}
.y16{bottom:537.566667pt;}
.yed{bottom:539.189333pt;}
.y6a{bottom:540.241333pt;}
.y1ef{bottom:542.897333pt;}
.y134{bottom:544.458667pt;}
.yd4{bottom:545.308000pt;}
.y41{bottom:545.709333pt;}
.y1bf{bottom:548.344000pt;}
.y15{bottom:550.014667pt;}
.y171{bottom:550.384000pt;}
.y10f{bottom:554.113333pt;}
.y18d{bottom:555.474667pt;}
.y133{bottom:557.609333pt;}
.y1ee{bottom:560.166667pt;}
.ya9{bottom:560.442667pt;}
.y69{bottom:561.494667pt;}
.yd3{bottom:566.561333pt;}
.y40{bottom:566.962667pt;}
.y14{bottom:567.284000pt;}
.y18c{bottom:576.729333pt;}
.y1ed{bottom:577.434667pt;}
.ya8{bottom:581.696000pt;}
.y10e{bottom:582.296000pt;}
.y68{bottom:582.748000pt;}
.y3f{bottom:588.216000pt;}
.y13{bottom:589.373333pt;}
.y10d{bottom:591.860000pt;}
.y132{bottom:592.656000pt;}
.y1be{bottom:593.618667pt;}
.y1ec{bottom:594.702667pt;}
.y18b{bottom:597.982667pt;}
.yd2{bottom:598.110667pt;}
.y12{bottom:601.821333pt;}
.ya7{bottom:602.950667pt;}
.y67{bottom:604.001333pt;}
.y3e{bottom:609.470667pt;}
.y1eb{bottom:611.972000pt;}
.y131{bottom:613.909333pt;}
.y1bd{bottom:614.872000pt;}
.y11{bottom:623.909333pt;}
.ya6{bottom:624.204000pt;}
.y10c{bottom:624.352000pt;}
.y66{bottom:625.256000pt;}
.y1ea{bottom:629.240000pt;}
.y3d{bottom:630.724000pt;}
.y17e{bottom:631.324000pt;}
.y130{bottom:635.162667pt;}
.y1bc{bottom:636.125333pt;}
.y10{bottom:636.357333pt;}
.ya5{bottom:645.457333pt;}
.y10b{bottom:645.605333pt;}
.y65{bottom:646.509333pt;}
.y17f{bottom:648.725333pt;}
.y3c{bottom:651.977333pt;}
.yd1{bottom:651.994199pt;}
.y12f{bottom:656.416000pt;}
.yf{bottom:658.446667pt;}
.y1e9{bottom:663.777333pt;}
.yd0{bottom:666.565697pt;}
.ya4{bottom:666.710667pt;}
.y10a{bottom:666.858667pt;}
.y64{bottom:667.762667pt;}
.ye{bottom:670.894667pt;}
.y1bb{bottom:673.164000pt;}
.y3b{bottom:673.230667pt;}
.y14b{bottom:676.908000pt;}
.y12e{bottom:677.669333pt;}
.y1e8{bottom:681.046667pt;}
.ycf{bottom:681.138109pt;}
.ya3{bottom:687.964000pt;}
.y109{bottom:688.113333pt;}
.y63{bottom:689.016000pt;}
.yd{bottom:692.984000pt;}
.y3a{bottom:694.484000pt;}
.yce{bottom:696.073437pt;}
.y142{bottom:698.161333pt;}
.y1e7{bottom:698.314667pt;}
.y12d{bottom:698.924000pt;}
.yc{bottom:705.432000pt;}
.ya2{bottom:709.218667pt;}
.y108{bottom:709.366667pt;}
.y62{bottom:710.269333pt;}
.ycd{bottom:710.645849pt;}
.y1e6{bottom:715.582667pt;}
.y39{bottom:715.738667pt;}
.y1ba{bottom:718.438667pt;}
.y12c{bottom:720.177333pt;}
.ycc{bottom:725.217347pt;}
.yb{bottom:727.521333pt;}
.ya1{bottom:730.472000pt;}
.y107{bottom:730.620000pt;}
.y61{bottom:731.524000pt;}
.y1e5{bottom:732.852000pt;}
.y38{bottom:736.992000pt;}
.y1b9{bottom:739.693333pt;}
.ya{bottom:739.969333pt;}
.ycb{bottom:740.153589pt;}
.y12b{bottom:741.430667pt;}
.y1e4{bottom:750.120000pt;}
.ya0{bottom:751.725333pt;}
.y106{bottom:751.873333pt;}
.y60{bottom:752.777333pt;}
.yca{bottom:754.725087pt;}
.y37{bottom:758.245333pt;}
.y1b8{bottom:760.946667pt;}
.y9{bottom:762.058667pt;}
.y12a{bottom:762.684000pt;}
.y1e3{bottom:767.389333pt;}
.yc9{bottom:769.661330pt;}
.yec{bottom:772.978667pt;}
.y105{bottom:773.126667pt;}
.y5f{bottom:774.030667pt;}
.y8{bottom:774.506667pt;}
.y36{bottom:779.498667pt;}
.y1b7{bottom:782.200000pt;}
.yc8{bottom:784.232828pt;}
.y1e2{bottom:784.657333pt;}
.yeb{bottom:794.233333pt;}
.y104{bottom:794.381333pt;}
.y5e{bottom:795.284000pt;}
.y7{bottom:796.596000pt;}
.yc6{bottom:798.804325pt;}
.y35{bottom:800.753333pt;}
.y1e1{bottom:801.926667pt;}
.yc5{bottom:806.090074pt;}
.y6{bottom:813.029333pt;}
.yc7{bottom:813.375823pt;}
.yea{bottom:815.486667pt;}
.y103{bottom:815.634667pt;}
.y5d{bottom:816.538667pt;}
.y1e0{bottom:819.194667pt;}
.y1b6{bottom:819.238667pt;}
.y34{bottom:822.006667pt;}
.yc4{bottom:828.312066pt;}
.y5{bottom:834.282667pt;}
.y1df{bottom:836.462667pt;}
.y102{bottom:836.888000pt;}
.y5c{bottom:837.792000pt;}
.yc3{bottom:842.883564pt;}
.y33{bottom:843.260000pt;}
.y1de{bottom:853.732000pt;}
.y4{bottom:855.536000pt;}
.yc2{bottom:857.819806pt;}
.y101{bottom:858.141333pt;}
.y5b{bottom:859.045333pt;}
.y32{bottom:864.513333pt;}
.y1dd{bottom:871.000000pt;}
.yc1{bottom:872.391304pt;}
.y5a{bottom:880.298667pt;}
.y31{bottom:885.766667pt;}
.y1dc{bottom:888.269333pt;}
.y3{bottom:900.700000pt;}
.y59{bottom:901.552000pt;}
.yc0{bottom:902.614667pt;}
.y1db{bottom:905.537333pt;}
.y30{bottom:922.806667pt;}
.ybf{bottom:923.869333pt;}
.y2{bottom:929.924000pt;}
.y2f{bottom:957.342667pt;}
.y1{bottom:959.148000pt;}
.h12{height:0.000000pt;}
.h1b{height:3.651395pt;}
.h1c{height:4.381674pt;}
.h3{height:25.142874pt;}
.h16{height:29.192382pt;}
.h11{height:29.499997pt;}
.h14{height:29.797547pt;}
.h9{height:30.456781pt;}
.ha{height:30.862949pt;}
.h13{height:31.880400pt;}
.h19{height:32.102162pt;}
.hb{height:32.786419pt;}
.h17{height:34.057779pt;}
.h5{height:37.193707pt;}
.h4{height:39.850400pt;}
.h7{height:45.015313pt;}
.h10{height:45.270357pt;}
.h6{height:47.820800pt;}
.h1d{height:53.279733pt;}
.h2{height:55.016400pt;}
.hc{height:61.929414pt;}
.he{height:63.586133pt;}
.h1{height:64.821719pt;}
.hd{height:86.076800pt;}
.hf{height:90.956800pt;}
.h15{height:240.587520pt;}
.h18{height:264.568320pt;}
.h1a{height:276.737280pt;}
.h8{height:356.640533pt;}
.h0{height:1056.000000pt;}
.w3{width:198.426240pt;}
.w4{width:207.552960pt;}
.w2{width:421.028160pt;}
.w1{width:593.006400pt;}
.w0{width:816.000000pt;}
.x34{left:-5.765360pt;}
.x0{left:0.000000pt;}
.x2c{left:11.885640pt;}
.x25{left:17.774489pt;}
.xd{left:21.396340pt;}
.x24{left:23.517681pt;}
.x23{left:29.084692pt;}
.xf{left:35.680787pt;}
.x2d{left:37.489147pt;}
.x9{left:39.511901pt;}
.x2b{left:49.189222pt;}
.x33{left:51.999319pt;}
.x1{left:96.000000pt;}
.x36{left:102.641333pt;}
.x13{left:105.031769pt;}
.x1f{left:111.441333pt;}
.x27{left:113.917355pt;}
.x4{left:127.216000pt;}
.x37{left:136.588000pt;}
.x6{left:140.699501pt;}
.x8{left:142.153047pt;}
.x26{left:151.289452pt;}
.x29{left:157.933176pt;}
.x7{left:159.891155pt;}
.x5{left:161.637647pt;}
.x20{left:183.013333pt;}
.x2{left:191.641333pt;}
.x22{left:201.679172pt;}
.x17{left:206.654712pt;}
.x3{left:211.566667pt;}
.x21{left:216.178667pt;}
.xe{left:251.129321pt;}
.x31{left:275.026667pt;}
.x18{left:278.902667pt;}
.x28{left:296.537333pt;}
.x1b{left:297.925333pt;}
.x1c{left:300.302667pt;}
.x2f{left:302.894667pt;}
.x1a{left:304.390667pt;}
.x30{left:305.865333pt;}
.x14{left:308.278568pt;}
.x19{left:315.842667pt;}
.x10{left:320.500611pt;}
.x1d{left:323.606667pt;}
.xa{left:356.802747pt;}
.xb{left:362.512939pt;}
.x1e{left:377.910667pt;}
.x15{left:422.858626pt;}
.x32{left:442.160000pt;}
.xc{left:451.006991pt;}
.x11{left:456.641075pt;}
.x12{left:469.714408pt;}
.x16{left:524.482482pt;}
.x2a{left:528.870667pt;}
.x35{left:537.077333pt;}
.x2e{left:599.385333pt;}
}




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