
    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_2341575343d945bab0754a29.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f819618570b2f752b8cecf58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_5106b6ca31ac939eef9ae7dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_4133fd85a3d79083206f36f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_d5c90ec693b63d257181a656.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ee5340c8ba90b02b3f8d76e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_58c705c6e9ee4c46a805c83c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956543;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_d6aeb2bb3141ef20f1791b52.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_5ea16f065968fdb869414e45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_0964c634f28dd1c6ac9061cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_fa137e9549c00c920854340a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_57a05b44ef4bf8ad3156eef6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.649414;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_d81b89fc936669cd8ad000f1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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_a61ec6e95947b591e1b5ce00.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061035;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_25cbeb4fcc802cab579b1169.woff2')format("woff");}.fff{font-family:fff;line-height:0.766602;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_78df5aaa903b902598e55b8e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.649414;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_a616c4dc311733dd85cb35b6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.119629;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_f3ff7d471f5bb6a6734c53a0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.119629;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_0808983d992efbb33690843f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104492;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_0f1d10af4bf3c0b90e787ab0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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;}
.m9{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);}
.m5{transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.283314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283314,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-123.120000px;}
.va{vertical-align:-100.442013px;}
.ve{vertical-align:-86.400000px;}
.v1a{vertical-align:-37.680000px;}
.v16{vertical-align:-28.846056px;}
.v4{vertical-align:-25.200000px;}
.v17{vertical-align:-17.931332px;}
.v15{vertical-align:-11.694347px;}
.v8{vertical-align:-6.300000px;}
.v1{vertical-align:-3.300000px;}
.v1b{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.440000px;}
.v18{vertical-align:3.118493px;}
.v9{vertical-align:4.608000px;}
.v13{vertical-align:6.480000px;}
.v5{vertical-align:9.660000px;}
.v11{vertical-align:11.520000px;}
.v19{vertical-align:14.968764px;}
.v12{vertical-align:17.280000px;}
.v3{vertical-align:25.380000px;}
.v10{vertical-align:57.600000px;}
.vc{vertical-align:67.980000px;}
.v14{vertical-align:72.420000px;}
.vb{vertical-align:74.162980px;}
.vf{vertical-align:75.600000px;}
.v7{vertical-align:99.840000px;}
.v6{vertical-align:123.288000px;}
.ls26{letter-spacing:-6.540000px;}
.ls1e{letter-spacing:-4.752000px;}
.ls7a{letter-spacing:-0.720000px;}
.ls48{letter-spacing:-0.378600px;}
.ls72{letter-spacing:-0.367800px;}
.ls7b{letter-spacing:-0.334200px;}
.ls35{letter-spacing:-0.306600px;}
.lse{letter-spacing:-0.298200px;}
.ls76{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.267000px;}
.ls50{letter-spacing:-0.216000px;}
.ls42{letter-spacing:-0.189600px;}
.ls77{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.117600px;}
.ls40{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.106800px;}
.ls4d{letter-spacing:-0.100200px;}
.ls11{letter-spacing:-0.061800px;}
.ls3c{letter-spacing:-0.042600px;}
.ls27{letter-spacing:-0.037440px;}
.ls18{letter-spacing:-0.034560px;}
.ls14{letter-spacing:-0.030960px;}
.ls16{letter-spacing:-0.028080px;}
.ls1a{letter-spacing:-0.025920px;}
.ls19{letter-spacing:-0.017280px;}
.ls46{letter-spacing:-0.015120px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.002496px;}
.ls52{letter-spacing:0.017122px;}
.ls17{letter-spacing:0.017280px;}
.ls34{letter-spacing:0.029400px;}
.ls3{letter-spacing:0.034560px;}
.ls15{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.043800px;}
.ls4e{letter-spacing:0.051840px;}
.ls64{letter-spacing:0.071102px;}
.ls24{letter-spacing:0.082560px;}
.ls2{letter-spacing:0.106800px;}
.ls79{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.123600px;}
.ls5c{letter-spacing:0.136200px;}
.ls59{letter-spacing:0.144000px;}
.ls6d{letter-spacing:0.155925px;}
.ls5d{letter-spacing:0.162000px;}
.ls6f{letter-spacing:0.175800px;}
.ls3b{letter-spacing:0.180000px;}
.ls51{letter-spacing:0.195600px;}
.ls53{letter-spacing:0.195840px;}
.ls4b{letter-spacing:0.216000px;}
.ls47{letter-spacing:0.219000px;}
.ls49{letter-spacing:0.224399px;}
.ls71{letter-spacing:0.252000px;}
.ls3f{letter-spacing:0.262080px;}
.ls6e{letter-spacing:0.264422px;}
.ls69{letter-spacing:0.264448px;}
.ls12{letter-spacing:0.267600px;}
.ls1b{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.298200px;}
.ls54{letter-spacing:0.305280px;}
.ls73{letter-spacing:0.352200px;}
.ls13{letter-spacing:0.360000px;}
.ls78{letter-spacing:0.396000px;}
.ls75{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.450000px;}
.ls74{letter-spacing:0.472200px;}
.ls6a{letter-spacing:5.602372px;}
.ls6b{letter-spacing:9.193316px;}
.ls68{letter-spacing:9.473980px;}
.ls61{letter-spacing:9.810778px;}
.ls66{letter-spacing:12.592473px;}
.ls63{letter-spacing:15.710966px;}
.ls70{letter-spacing:16.560000px;}
.ls9{letter-spacing:17.732880px;}
.ls39{letter-spacing:21.937680px;}
.ls4a{letter-spacing:22.052880px;}
.ls36{letter-spacing:22.057680px;}
.ls7{letter-spacing:22.593600px;}
.ls5{letter-spacing:22.644000px;}
.lsa{letter-spacing:22.772880px;}
.ls37{letter-spacing:24.067872px;}
.ls38{letter-spacing:24.787872px;}
.ls4f{letter-spacing:25.650000px;}
.ls41{letter-spacing:26.597376px;}
.ls4{letter-spacing:33.226560px;}
.ls4c{letter-spacing:34.895477px;}
.lsc{letter-spacing:35.604000px;}
.lsb{letter-spacing:36.273600px;}
.ls8{letter-spacing:36.324000px;}
.ls1d{letter-spacing:55.425600px;}
.ls1c{letter-spacing:55.476000px;}
.ls60{letter-spacing:65.265372px;}
.ls6c{letter-spacing:66.044995px;}
.ls62{letter-spacing:67.604241px;}
.ls65{letter-spacing:74.620850px;}
.ls67{letter-spacing:76.959719px;}
.ls44{letter-spacing:83.032128px;}
.ls45{letter-spacing:83.098080px;}
.ls43{letter-spacing:94.356000px;}
.ls3e{letter-spacing:124.149600px;}
.ls3d{letter-spacing:124.200000px;}
.ls22{letter-spacing:206.135040px;}
.ls1f{letter-spacing:206.255040px;}
.ls21{letter-spacing:206.375040px;}
.ls20{letter-spacing:206.915040px;}
.ls23{letter-spacing:206.975040px;}
.ls30{letter-spacing:225.006240px;}
.ls2e{letter-spacing:240.966240px;}
.ls2d{letter-spacing:241.475040px;}
.ls2b{letter-spacing:241.535040px;}
.ls2a{letter-spacing:242.195040px;}
.ls2c{letter-spacing:242.255040px;}
.ls29{letter-spacing:242.375040px;}
.ls5e{letter-spacing:258.447120px;}
.ls5a{letter-spacing:369.564000px;}
.ls5b{letter-spacing:378.924000px;}
.ls55{letter-spacing:392.362080px;}
.ls57{letter-spacing:400.282080px;}
.ls58{letter-spacing:449.595936px;}
.ls56{letter-spacing:449.676000px;}
.ls2f{letter-spacing:567.486240px;}
.ls3a{letter-spacing:588.810000px;}
.ls5f{letter-spacing:622.054080px;}
.ls32{letter-spacing:710.820000px;}
.ls31{letter-spacing:873.606240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws59{word-spacing:-33.496152px;}
.ws5f{word-spacing:-33.426720px;}
.wsc4{word-spacing:-30.064032px;}
.ws45{word-spacing:-30.024000px;}
.wsb4{word-spacing:-29.736000px;}
.ws5{word-spacing:-28.422720px;}
.ws41{word-spacing:-26.661312px;}
.ws3f{word-spacing:-26.621280px;}
.ws7b{word-spacing:-26.303681px;}
.ws5c{word-spacing:-25.060032px;}
.ws5e{word-spacing:-25.020000px;}
.ws4f{word-spacing:-24.408000px;}
.ws4e{word-spacing:-23.458752px;}
.ws46{word-spacing:-23.418720px;}
.ws9e{word-spacing:-23.341152px;}
.ws7a{word-spacing:-22.916280px;}
.ws2f{word-spacing:-22.741680px;}
.ws21{word-spacing:-22.658112px;}
.ws8{word-spacing:-22.618080px;}
.ws43{word-spacing:-21.634560px;}
.ws42{word-spacing:-21.617280px;}
.ws2{word-spacing:-20.016000px;}
.ws8e{word-spacing:-19.800000px;}
.ws9f{word-spacing:-18.819479px;}
.ws6a{word-spacing:-18.414720px;}
.ws67{word-spacing:-18.305520px;}
.ws8d{word-spacing:-17.614080px;}
.ws3e{word-spacing:-16.653312px;}
.ws3d{word-spacing:-16.613280px;}
.ws9b{word-spacing:-16.212960px;}
.ws6e{word-spacing:-15.820119px;}
.ws6d{word-spacing:-15.595720px;}
.ws93{word-spacing:-15.012000px;}
.ws84{word-spacing:-14.858058px;}
.ws83{word-spacing:-14.093976px;}
.wsa1{word-spacing:-13.513988px;}
.ws98{word-spacing:-13.410720px;}
.wsa4{word-spacing:-13.162507px;}
.wsa3{word-spacing:-12.898085px;}
.ws6b{word-spacing:-12.594960px;}
.wsd1{word-spacing:-11.609280px;}
.wsa2{word-spacing:-10.510879px;}
.ws96{word-spacing:-7.823658px;}
.ws4d{word-spacing:-3.936096px;}
.ws4c{word-spacing:-3.744000px;}
.ws54{word-spacing:-3.130080px;}
.ws70{word-spacing:-2.749536px;}
.ws68{word-spacing:-2.675232px;}
.ws23{word-spacing:-2.636640px;}
.ws36{word-spacing:-2.636064px;}
.ws77{word-spacing:-2.594160px;}
.ws2b{word-spacing:-2.593200px;}
.ws12{word-spacing:-2.541960px;}
.ws37{word-spacing:-2.519760px;}
.wsa{word-spacing:-2.493120px;}
.ws95{word-spacing:-2.463792px;}
.ws60{word-spacing:-2.410560px;}
.ws14{word-spacing:-2.264400px;}
.ws13{word-spacing:-2.243232px;}
.wse{word-spacing:-2.197440px;}
.ws35{word-spacing:-2.144880px;}
.ws1d{word-spacing:-2.097504px;}
.ws26{word-spacing:-2.064000px;}
.ws3a{word-spacing:-2.036160px;}
.ws16{word-spacing:-2.028960px;}
.ws56{word-spacing:-1.967040px;}
.ws29{word-spacing:-1.897200px;}
.ws33{word-spacing:-1.874160px;}
.ws31{word-spacing:-1.860960px;}
.ws34{word-spacing:-1.800000px;}
.ws72{word-spacing:-1.778112px;}
.ws1b{word-spacing:-1.777824px;}
.wsc{word-spacing:-1.624800px;}
.ws3b{word-spacing:-1.560240px;}
.ws9{word-spacing:-1.490760px;}
.ws79{word-spacing:-1.424880px;}
.ws0{word-spacing:-1.417680px;}
.ws39{word-spacing:-1.408320px;}
.ws19{word-spacing:-1.393920px;}
.ws75{word-spacing:-1.378080px;}
.ws10{word-spacing:-1.374480px;}
.ws2d{word-spacing:-1.326960px;}
.wscb{word-spacing:-1.296000px;}
.ws17{word-spacing:-1.265040px;}
.ws3c{word-spacing:-1.254480px;}
.wsc9{word-spacing:-1.224000px;}
.ws27{word-spacing:-1.157040px;}
.ws15{word-spacing:-1.153200px;}
.ws18{word-spacing:-1.152960px;}
.ws2e{word-spacing:-1.152000px;}
.ws1a{word-spacing:-1.146720px;}
.wsb{word-spacing:-1.141200px;}
.ws76{word-spacing:-1.140960px;}
.ws55{word-spacing:-1.134000px;}
.ws64{word-spacing:-1.128480px;}
.ws1c{word-spacing:-1.113960px;}
.ws1e{word-spacing:-1.101960px;}
.ws78{word-spacing:-1.080000px;}
.ws1f{word-spacing:-1.058112px;}
.wsd{word-spacing:-1.029360px;}
.ws32{word-spacing:-1.021200px;}
.ws30{word-spacing:-0.905040px;}
.wscd{word-spacing:-0.876000px;}
.ws5a{word-spacing:-0.866880px;}
.ws71{word-spacing:-0.857736px;}
.ws1{word-spacing:-0.853920px;}
.ws11{word-spacing:-0.812640px;}
.ws24{word-spacing:-0.770760px;}
.wsc0{word-spacing:-0.756000px;}
.wscf{word-spacing:-0.720000px;}
.ws2c{word-spacing:-0.658080px;}
.ws28{word-spacing:-0.606960px;}
.wsc6{word-spacing:-0.588000px;}
.wsc5{word-spacing:-0.576000px;}
.ws20{word-spacing:-0.519624px;}
.ws22{word-spacing:-0.509520px;}
.ws58{word-spacing:-0.505728px;}
.ws65{word-spacing:-0.463680px;}
.wsca{word-spacing:-0.456000px;}
.wsf{word-spacing:-0.421200px;}
.ws2a{word-spacing:-0.352080px;}
.ws90{word-spacing:-0.330000px;}
.wsce{word-spacing:-0.324000px;}
.ws94{word-spacing:-0.216000px;}
.ws66{word-spacing:-0.196560px;}
.wsd3{word-spacing:-0.145440px;}
.ws4{word-spacing:-0.117600px;}
.ws38{word-spacing:-0.112320px;}
.ws80{word-spacing:-0.105215px;}
.wscc{word-spacing:-0.072000px;}
.ws7d{word-spacing:-0.061369px;}
.ws6c{word-spacing:-0.045865px;}
.wsd2{word-spacing:-0.027360px;}
.ws25{word-spacing:-0.017280px;}
.ws3{word-spacing:0.000000px;}
.wsc2{word-spacing:0.108000px;}
.ws6{word-spacing:0.204840px;}
.ws63{word-spacing:0.384480px;}
.ws7{word-spacing:0.422280px;}
.wsc1{word-spacing:0.504000px;}
.wsbf{word-spacing:0.636000px;}
.wsc3{word-spacing:1.008000px;}
.wsc8{word-spacing:1.044000px;}
.wsc7{word-spacing:1.224000px;}
.ws97{word-spacing:1.466640px;}
.ws40{word-spacing:1.575360px;}
.wsae{word-spacing:2.016000px;}
.ws61{word-spacing:2.072880px;}
.ws62{word-spacing:2.167680px;}
.wsb1{word-spacing:2.712000px;}
.wsad{word-spacing:2.844000px;}
.wsb3{word-spacing:2.952000px;}
.wsb0{word-spacing:3.312000px;}
.wsb6{word-spacing:3.384000px;}
.wsb2{word-spacing:3.456000px;}
.wsb5{word-spacing:3.792000px;}
.wsaf{word-spacing:4.104000px;}
.wsa0{word-spacing:5.873681px;}
.wsbb{word-spacing:17.784000px;}
.wsb9{word-spacing:17.892000px;}
.wsb7{word-spacing:17.928000px;}
.wsbd{word-spacing:18.036000px;}
.wsba{word-spacing:18.360000px;}
.wsbc{word-spacing:18.480000px;}
.wsbe{word-spacing:18.504000px;}
.wsb8{word-spacing:18.636000px;}
.wsab{word-spacing:20.463336px;}
.wsa7{word-spacing:20.703240px;}
.wsa9{word-spacing:21.621072px;}
.wsac{word-spacing:21.656448px;}
.wsa5{word-spacing:21.656592px;}
.wsaa{word-spacing:22.143240px;}
.wsa6{word-spacing:22.263336px;}
.wsa8{word-spacing:23.219088px;}
.ws5b{word-spacing:25.093728px;}
.ws50{word-spacing:39.746976px;}
.ws4a{word-spacing:45.122640px;}
.ws47{word-spacing:47.402640px;}
.wsd0{word-spacing:73.831680px;}
.ws5d{word-spacing:74.160000px;}
.ws52{word-spacing:81.062640px;}
.ws7f{word-spacing:99.531802px;}
.ws9a{word-spacing:145.237920px;}
.ws7c{word-spacing:161.033908px;}
.ws51{word-spacing:208.083840px;}
.ws49{word-spacing:215.463744px;}
.ws48{word-spacing:215.583840px;}
.ws9d{word-spacing:235.741056px;}
.ws9c{word-spacing:235.829040px;}
.ws92{word-spacing:266.908132px;}
.ws7e{word-spacing:288.768624px;}
.ws6f{word-spacing:310.399488px;}
.ws8c{word-spacing:317.756640px;}
.ws74{word-spacing:334.969920px;}
.ws8b{word-spacing:390.356640px;}
.ws91{word-spacing:390.450000px;}
.ws99{word-spacing:412.506000px;}
.ws4b{word-spacing:434.293200px;}
.ws73{word-spacing:477.517920px;}
.ws8f{word-spacing:513.549840px;}
.ws53{word-spacing:554.757120px;}
.ws87{word-spacing:646.060080px;}
.ws89{word-spacing:646.108080px;}
.ws57{word-spacing:685.740000px;}
.ws82{word-spacing:699.691434px;}
.ws85{word-spacing:704.480362px;}
.ws69{word-spacing:1097.748480px;}
.ws88{word-spacing:1275.065520px;}
.ws44{word-spacing:1309.620000px;}
.ws81{word-spacing:1775.707008px;}
.ws8a{word-spacing:1944.465360px;}
.ws86{word-spacing:2106.684240px;}
._36{margin-left:-1761.009690px;}
._3a{margin-left:-1023.534106px;}
._3b{margin-left:-1005.034231px;}
._38{margin-left:-916.505574px;}
._37{margin-left:-891.021804px;}
._16{margin-left:-571.034160px;}
._15{margin-left:-565.574160px;}
._2e{margin-left:-505.524960px;}
._30{margin-left:-363.228480px;}
._2d{margin-left:-341.029728px;}
._31{margin-left:-304.829280px;}
._33{margin-left:-168.654480px;}
._39{margin-left:-164.425104px;}
._35{margin-left:-117.086778px;}
._b{margin-left:-9.687600px;}
._c{margin-left:-8.657280px;}
._1d{margin-left:-6.919488px;}
._3{margin-left:-5.832000px;}
._7{margin-left:-4.295040px;}
._1{margin-left:-2.442960px;}
._0{margin-left:-1.033920px;}
._2{width:1.523280px;}
._9{width:2.639520px;}
._45{width:3.656433px;}
._a{width:4.937040px;}
._44{width:7.003822px;}
._46{width:13.117627px;}
._18{width:15.010800px;}
._8{width:16.225488px;}
._12{width:20.161728px;}
._6{width:21.869856px;}
._5{width:22.890000px;}
._29{width:28.490112px;}
._4{width:29.563920px;}
._47{width:31.171680px;}
._23{width:32.679840px;}
._42{width:39.375504px;}
._27{width:48.960000px;}
._f{width:69.661680px;}
._26{width:124.110000px;}
._34{width:161.604000px;}
._1c{width:188.707104px;}
._2a{width:190.000800px;}
._43{width:229.068960px;}
._1e{width:232.575072px;}
._11{width:240.142560px;}
._3e{width:289.215064px;}
._3d{width:290.645534px;}
._32{width:297.057600px;}
._3f{width:300.216480px;}
._1b{width:305.469024px;}
._17{width:325.603440px;}
._e{width:330.981360px;}
._2f{width:333.527328px;}
._3c{width:349.225680px;}
._1f{width:445.011072px;}
._20{width:447.177360px;}
._1a{width:449.329824px;}
._19{width:453.048000px;}
._49{width:459.362160px;}
._14{width:469.635072px;}
._13{width:473.515872px;}
._2b{width:474.713040px;}
._10{width:478.204512px;}
._25{width:523.753920px;}
._24{width:524.923920px;}
._22{width:569.864160px;}
._21{width:574.497360px;}
._28{width:900.832080px;}
._48{width:948.677280px;}
._40{width:1280.094000px;}
._d{width:1380.195504px;}
._41{width:1523.124000px;}
._2c{width:2749.700874px;}
.fc16{color:rgb(79,129,189);}
.fc15{color:rgb(75,75,75);}
.fc14{color:rgb(51,51,51);}
.fc13{color:rgb(37,57,76);}
.fc11{color:rgb(25,25,25);}
.fce{color:rgb(45,150,255);}
.fc1{color:rgb(255,255,255);}
.fcf{color:rgb(56,93,138);}
.fc3{color:rgb(0,0,0);}
.fc8{color:rgb(137,137,137);}
.fcd{color:rgb(0,176,80);}
.fc5{color:rgb(0,102,0);}
.fc17{color:rgb(16,37,63);}
.fca{color:rgb(23,55,94);}
.fc10{color:rgb(51,98,167);}
.fc6{color:rgb(255,0,0);}
.fc7{color:rgb(102,51,0);}
.fc12{color:rgb(71,103,87);}
.fc0{color:rgb(31,73,125);}
.fc2{color:rgb(89,89,89);}
.fcc{color:rgb(51,51,153);}
.fc4{color:rgb(0,32,96);}
.fc9{color:transparent;}
.fcb{color:rgb(55,96,146);}
.fs2b{font-size:21.073617px;}
.fs2a{font-size:31.611373px;}
.fs31{font-size:32.744172px;}
.fs29{font-size:35.562084px;}
.fsb{font-size:41.760000px;}
.fs30{font-size:42.099650px;}
.fs17{font-size:45.360000px;}
.fs1a{font-size:45.865264px;}
.fs19{font-size:47.520000px;}
.fs2c{font-size:48.240000px;}
.fs21{font-size:50.697755px;}
.fs22{font-size:53.446251px;}
.fs23{font-size:54.000000px;}
.fs2d{font-size:54.144000px;}
.fs1b{font-size:56.099714px;}
.fs13{font-size:56.160000px;}
.fs1c{font-size:56.216345px;}
.fs12{font-size:56.304000px;}
.fs2e{font-size:58.320000px;}
.fs2f{font-size:58.627660px;}
.fs0{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs1f{font-size:61.368533px;}
.fs24{font-size:63.360000px;}
.fs26{font-size:63.504000px;}
.fs16{font-size:66.240000px;}
.fs18{font-size:66.384000px;}
.fs25{font-size:71.096445px;}
.fs32{font-size:71.881254px;}
.fs3{font-size:72.000000px;}
.fs10{font-size:77.760000px;}
.fs11{font-size:77.904000px;}
.fs7{font-size:81.360000px;}
.fs8{font-size:81.504000px;}
.fsf{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs14{font-size:90.000000px;}
.fs15{font-size:90.144000px;}
.fs4{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fs5{font-size:102.240000px;}
.fs6{font-size:102.384000px;}
.fs1e{font-size:105.214723px;}
.fs2{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs33{font-size:113.760000px;}
.fs1{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fs1d{font-size:144.000000px;}
.fs28{font-size:144.144000px;}
.fs20{font-size:157.813122px;}
.fs27{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1c7{bottom:4.065000px;}
.y1{bottom:7.056000px;}
.y125{bottom:9.929706px;}
.y128{bottom:9.929709px;}
.y137{bottom:11.484000px;}
.y12d{bottom:11.984594px;}
.y133{bottom:12.647514px;}
.y138{bottom:13.644000px;}
.y175{bottom:18.034586px;}
.y14e{bottom:18.842746px;}
.y16c{bottom:19.650027px;}
.y179{bottom:20.433051px;}
.y15e{bottom:20.484000px;}
.y168{bottom:20.962531px;}
.y87{bottom:24.588000px;}
.y12f{bottom:24.816799px;}
.y16b{bottom:25.972175px;}
.y19c{bottom:26.741009px;}
.y10d{bottom:26.838021px;}
.y132{bottom:26.850329px;}
.y167{bottom:27.284679px;}
.y19d{bottom:28.300255px;}
.y126{bottom:28.470442px;}
.y174{bottom:28.703211px;}
.y178{bottom:31.101676px;}
.y124{bottom:35.040197px;}
.y14a{bottom:37.836000px;}
.y173{bottom:39.371837px;}
.y199{bottom:39.413856px;}
.y100{bottom:40.372729px;}
.y115{bottom:40.372731px;}
.y111{bottom:40.372732px;}
.y177{bottom:41.770301px;}
.y10c{bottom:43.662103px;}
.y1c8{bottom:45.180000px;}
.y16e{bottom:48.515243px;}
.y16a{bottom:49.827748px;}
.y172{bottom:50.040462px;}
.y176{bottom:52.438927px;}
.yc4{bottom:54.252000px;}
.y1a8{bottom:54.432000px;}
.y16d{bottom:54.837392px;}
.y19a{bottom:55.820952px;}
.ye2{bottom:55.836000px;}
.y169{bottom:56.149896px;}
.y19b{bottom:57.380198px;}
.y1c9{bottom:57.384000px;}
.y1b7{bottom:58.104000px;}
.y1d{bottom:58.212000px;}
.y24{bottom:59.616000px;}
.yb9{bottom:59.652000px;}
.ye6{bottom:61.272000px;}
.yda{bottom:61.416000px;}
.ya1{bottom:61.488000px;}
.y127{bottom:61.720331px;}
.yb8{bottom:61.920000px;}
.y75{bottom:65.520000px;}
.y7a{bottom:65.664000px;}
.y160{bottom:65.700000px;}
.y149{bottom:66.816000px;}
.y101{bottom:67.213502px;}
.y93{bottom:68.328000px;}
.y152{bottom:70.056000px;}
.y90{bottom:72.540000px;}
.ydf{bottom:78.912000px;}
.y117{bottom:79.847002px;}
.ye1{bottom:80.064000px;}
.y122{bottom:80.568000px;}
.yd9{bottom:81.216000px;}
.y6d{bottom:82.152000px;}
.y14f{bottom:82.368000px;}
.ye7{bottom:83.448000px;}
.y17d{bottom:83.906761px;}
.y1c{bottom:87.372000px;}
.y4a{bottom:88.596000px;}
.y151{bottom:88.956000px;}
.y1a6{bottom:91.836000px;}
.y163{bottom:92.514102px;}
.y17c{bottom:94.575386px;}
.y165{bottom:95.227357px;}
.y148{bottom:95.796000px;}
.y1c0{bottom:95.904000px;}
.y4f{bottom:96.336000px;}
.y116{bottom:96.671084px;}
.y74{bottom:99.756000px;}
.y79{bottom:99.864000px;}
.y14d{bottom:100.800000px;}
.yd{bottom:101.160000px;}
.y162{bottom:103.182727px;}
.y108{bottom:103.873075px;}
.y94{bottom:105.192000px;}
.y17b{bottom:105.244011px;}
.y18b{bottom:105.516000px;}
.y8f{bottom:106.776000px;}
.y1c2{bottom:106.956000px;}
.y18f{bottom:107.388000px;}
.y49{bottom:108.756000px;}
.y6c{bottom:109.872000px;}
.y6{bottom:112.932000px;}
.y161{bottom:113.851352px;}
.y17a{bottom:115.912636px;}
.y4e{bottom:116.496000px;}
.y1b{bottom:116.568000px;}
.y39{bottom:116.748000px;}
.y198{bottom:119.556000px;}
.ycf{bottom:120.672000px;}
.y107{bottom:120.701822px;}
.y166{bottom:120.779373px;}
.yb7{bottom:121.860000px;}
.y1a5{bottom:124.272000px;}
.y2c{bottom:125.316000px;}
.yef{bottom:125.640000px;}
.yd2{bottom:126.072000px;}
.y18c{bottom:127.188000px;}
.yc{bottom:127.476000px;}
.yf9{bottom:127.764000px;}
.y189{bottom:128.448000px;}
.y48{bottom:128.916000px;}
.y9f{bottom:129.024000px;}
.y190{bottom:129.060000px;}
.yd8{bottom:130.680000px;}
.y1b3{bottom:132.084000px;}
.y6b{bottom:132.552000px;}
.y13e{bottom:133.560000px;}
.ya3{bottom:133.848000px;}
.y73{bottom:133.956000px;}
.y78{bottom:134.100000px;}
.y13f{bottom:135.720000px;}
.y4d{bottom:136.656000px;}
.y60{bottom:137.916000px;}
.y8e{bottom:141.012000px;}
.y95{bottom:142.056000px;}
.yce{bottom:145.152000px;}
.y1a{bottom:145.728000px;}
.y182{bottom:146.730000px;}
.y47{bottom:149.076000px;}
.y2b{bottom:150.150000px;}
.yd1{bottom:150.585000px;}
.y121{bottom:151.275000px;}
.yf8{bottom:152.970000px;}
.yee{bottom:153.390000px;}
.yb{bottom:153.930000px;}
.y171{bottom:155.241666px;}
.y1a4{bottom:156.675000px;}
.y6a{bottom:160.305000px;}
.y153{bottom:161.535000px;}
.ya9{bottom:161.850000px;}
.y5f{bottom:163.110000px;}
.y1b2{bottom:164.520000px;}
.y104{bottom:165.161720px;}
.y170{bottom:165.910291px;}
.y72{bottom:168.150000px;}
.y77{bottom:168.300000px;}
.y4c{bottom:169.275000px;}
.ycd{bottom:169.635000px;}
.y131{bottom:171.296946px;}
.y193{bottom:171.690000px;}
.yc0{bottom:172.515000px;}
.y41{bottom:174.705000px;}
.y19{bottom:174.885000px;}
.y2a{bottom:174.990000px;}
.yd0{bottom:175.065000px;}
.y8d{bottom:175.245000px;}
.y16f{bottom:176.578917px;}
.y12e{bottom:177.507291px;}
.yf7{bottom:178.170000px;}
.y11a{bottom:178.574333px;}
.y38{bottom:178.845000px;}
.yb6{bottom:179.535000px;}
.y114{bottom:180.130177px;}
.ya{bottom:180.390000px;}
.yed{bottom:181.110000px;}
.y103{bottom:182.049950px;}
.y69{bottom:182.985000px;}
.y120{bottom:183.675000px;}
.y164{bottom:183.750603px;}
.y15c{bottom:184.350000px;}
.y13d{bottom:184.500000px;}
.y4b{bottom:184.935000px;}
.y1c1{bottom:185.865000px;}
.y188{bottom:186.510000px;}
.y18e{bottom:187.050000px;}
.yd7{bottom:187.560000px;}
.y5e{bottom:188.355000px;}
.y1a3{bottom:189.075000px;}
.y192{bottom:189.330000px;}
.y25{bottom:193.350000px;}
.ya0{bottom:194.145000px;}
.y1bf{bottom:194.685000px;}
.ya8{bottom:198.435000px;}
.y102{bottom:198.903190px;}
.ybf{bottom:201.315000px;}
.y76{bottom:202.500000px;}
.yf6{bottom:203.370000px;}
.y1c6{bottom:203.400000px;}
.yb5{bottom:204.015000px;}
.y18{bottom:204.045000px;}
.yc1{bottom:204.555000px;}
.y46{bottom:205.095000px;}
.y68{bottom:205.665000px;}
.y15b{bottom:208.650000px;}
.y106{bottom:209.073450px;}
.y3e{bottom:209.595000px;}
.y147{bottom:213.150000px;}
.y5d{bottom:213.555000px;}
.y1be{bottom:213.585000px;}
.y9{bottom:216.930000px;}
.ye5{bottom:216.975000px;}
.y88{bottom:217.260000px;}
.y144{bottom:218.235000px;}
.yd6{bottom:219.990000px;}
.y1c3{bottom:221.370000px;}
.y1a2{bottom:221.475000px;}
.yec{bottom:222.870000px;}
.y45{bottom:225.435000px;}
.y105{bottom:225.903364px;}
.yf5{bottom:228.570000px;}
.ybe{bottom:230.115000px;}
.y2f{bottom:232.770000px;}
.y12c{bottom:232.920000px;}
.y71{bottom:233.130000px;}
.y17{bottom:233.205000px;}
.y67{bottom:233.385000px;}
.y197{bottom:233.535000px;}
.y3d{bottom:234.795000px;}
.y81{bottom:234.975000px;}
.y130{bottom:235.620000px;}
.ya2{bottom:235.770000px;}
.y123{bottom:235.820928px;}
.y155{bottom:236.625000px;}
.ye4{bottom:238.350000px;}
.y5c{bottom:238.755000px;}
.y37{bottom:240.915000px;}
.y146{bottom:242.130000px;}
.y15d{bottom:244.440000px;}
.y44{bottom:245.595000px;}
.y5{bottom:245.625000px;}
.y143{bottom:247.215000px;}
.yb4{bottom:248.325000px;}
.y18a{bottom:248.400000px;}
.y18d{bottom:248.580000px;}
.y135{bottom:249.120000px;}
.y191{bottom:249.300000px;}
.y187{bottom:249.660000px;}
.yeb{bottom:250.590000px;}
.y22{bottom:253.230000px;}
.y154{bottom:255.525000px;}
.y9a{bottom:256.530000px;}
.y2e{bottom:257.610000px;}
.ye3{bottom:258.195000px;}
.ybd{bottom:258.915000px;}
.y3c{bottom:259.995000px;}
.y66{bottom:261.105000px;}
.y9e{bottom:261.645000px;}
.y136{bottom:262.005000px;}
.y16{bottom:262.410000px;}
.y43{bottom:265.755000px;}
.y196{bottom:265.935000px;}
.yf4{bottom:267.840000px;}
.y1a7{bottom:269.490000px;}
.y8c{bottom:270.360000px;}
.y145{bottom:271.110000px;}
.yc7{bottom:273.345000px;}
.y1a1{bottom:273.705000px;}
.y40{bottom:275.115000px;}
.yd5{bottom:276.870000px;}
.y5b{bottom:279.075000px;}
.y26{bottom:280.770000px;}
.y118{bottom:281.268300px;}
.yff{bottom:282.106860px;}
.y2d{bottom:282.450000px;}
.y113{bottom:282.492930px;}
.y65{bottom:283.830000px;}
.y3b{bottom:285.225000px;}
.y21{bottom:285.660000px;}
.y1b1{bottom:288.870000px;}
.y157{bottom:289.230000px;}
.yb3{bottom:290.445000px;}
.y99{bottom:290.730000px;}
.y86{bottom:290.805000px;}
.y15{bottom:291.570000px;}
.yea{bottom:292.395000px;}
.yf3{bottom:293.040000px;}
.y195{bottom:298.335000px;}
.y112{bottom:299.322844px;}
.y36{bottom:302.970000px;}
.y91{bottom:304.530000px;}
.y1b0{bottom:305.070000px;}
.y7d{bottom:305.670000px;}
.y1a0{bottom:306.105000px;}
.y11b{bottom:307.778622px;}
.y1bb{bottom:307.980000px;}
.y27{bottom:308.910000px;}
.y1b6{bottom:308.985000px;}
.y5a{bottom:309.315000px;}
.y139{bottom:309.990000px;}
.y3a{bottom:310.425000px;}
.y64{bottom:311.550000px;}
.y10b{bottom:313.318614px;}
.y181{bottom:313.920000px;}
.y13b{bottom:314.070000px;}
.yb2{bottom:314.565000px;}
.y9c{bottom:317.595000px;}
.yf2{bottom:318.240000px;}
.ye9{bottom:320.115000px;}
.y14{bottom:320.730000px;}
.y55{bottom:323.070000px;}
.y1bd{bottom:323.130000px;}
.y98{bottom:324.930000px;}
.y85{bottom:325.050000px;}
.ycc{bottom:327.165000px;}
.y10a{bottom:330.171855px;}
.y194{bottom:330.735000px;}
.y186{bottom:332.460000px;}
.yd4{bottom:333.795000px;}
.yac{bottom:333.825000px;}
.y59{bottom:334.545000px;}
.ya6{bottom:335.670000px;}
.y3{bottom:336.675000px;}
.y19f{bottom:338.505000px;}
.y92{bottom:338.655000px;}
.y63{bottom:339.270000px;}
.y7e{bottom:339.840000px;}
.y1ba{bottom:340.380000px;}
.y10f{bottom:341.216850px;}
.y1bc{bottom:342.030000px;}
.y11f{bottom:342.285000px;}
.yf1{bottom:343.440000px;}
.yc5{bottom:343.650000px;}
.y109{bottom:346.990105px;}
.y13{bottom:349.890000px;}
.y1af{bottom:350.670000px;}
.yca{bottom:351.210000px;}
.ycb{bottom:351.690000px;}
.yb1{bottom:351.975000px;}
.y31{bottom:352.185000px;}
.y8{bottom:353.340000px;}
.y9b{bottom:354.450000px;}
.y13a{bottom:357.270000px;}
.y10e{bottom:358.046764px;}
.y54{bottom:359.070000px;}
.y97{bottom:359.175000px;}
.y84{bottom:359.250000px;}
.ye8{bottom:361.875000px;}
.y62{bottom:361.950000px;}
.y185{bottom:362.160000px;}
.y156{bottom:362.340000px;}
.y58{bottom:364.785000px;}
.y35{bottom:365.070000px;}
.yab{bottom:367.665000px;}
.yf0{bottom:368.670000px;}
.ya5{bottom:369.510000px;}
.y19e{bottom:370.950000px;}
.y7f{bottom:373.965000px;}
.y11e{bottom:374.685000px;}
.y3f{bottom:375.555000px;}
.yc9{bottom:375.690000px;}
.y30{bottom:377.025000px;}
.y150{bottom:378.285000px;}
.y12{bottom:379.080000px;}
.y7{bottom:379.620000px;}
.y119{bottom:380.696586px;}
.y110{bottom:382.316577px;}
.y13c{bottom:383.430000px;}
.y140{bottom:384.765000px;}
.yd3{bottom:390.675000px;}
.y184{bottom:391.500000px;}
.y134{bottom:392.505000px;}
.y96{bottom:393.375000px;}
.y83{bottom:393.450000px;}
.y57{bottom:395.025000px;}
.y53{bottom:395.100000px;}
.yb0{bottom:395.250000px;}
.y15a{bottom:396.030000px;}
.yc8{bottom:400.170000px;}
.y1ae{bottom:400.395000px;}
.y61{bottom:400.470000px;}
.yaa{bottom:401.370000px;}
.ya4{bottom:403.170000px;}
.y2{bottom:404.025000px;}
.yc3{bottom:404.175000px;}
.y80{bottom:408.090000px;}
.y11{bottom:408.240000px;}
.y32{bottom:409.830000px;}
.yde{bottom:411.330000px;}
.y142{bottom:412.530000px;}
.yaf{bottom:419.370000px;}
.y183{bottom:419.430000px;}
.y1aa{bottom:422.850000px;}
.yfd{bottom:424.185000px;}
.y34{bottom:427.170000px;}
.y82{bottom:427.650000px;}
.y1ad{bottom:429.195000px;}
.y8a{bottom:430.410000px;}
.y52{bottom:431.100000px;}
.y141{bottom:432.330000px;}
.yc2{bottom:434.235000px;}
.y56{bottom:434.550000px;}
.y159{bottom:434.805000px;}
.y10{bottom:437.400000px;}
.ydd{bottom:440.175000px;}
.y17f{bottom:446.250000px;}
.y12b{bottom:449.925000px;}
.yad{bottom:451.290000px;}
.yfc{bottom:452.985000px;}
.ye0{bottom:453.315000px;}
.y158{bottom:453.705000px;}
.y1a9{bottom:455.250000px;}
.ya7{bottom:456.375000px;}
.y7c{bottom:456.810000px;}
.yae{bottom:458.250000px;}
.y89{bottom:459.210000px;}
.y17e{bottom:460.650000px;}
.yf{bottom:466.560000px;}
.ydc{bottom:468.975000px;}
.y180{bottom:475.050000px;}
.y7b{bottom:481.320000px;}
.yc6{bottom:507.090000px;}
.y29{bottom:508.065000px;}
.yfb{bottom:510.810000px;}
.y70{bottom:514.260000px;}
.y9d{bottom:515.190000px;}
.y12a{bottom:515.445000px;}
.y1f{bottom:515.805000px;}
.y14c{bottom:516.345000px;}
.y1c5{bottom:516.750000px;}
.y1ac{bottom:517.350000px;}
.y1b9{bottom:518.040000px;}
.ybb{bottom:518.295000px;}
.y8b{bottom:526.860000px;}
.y11d{bottom:528.300000px;}
.y50{bottom:529.275000px;}
.y51{bottom:531.075000px;}
.yfe{bottom:531.930000px;}
.y42{bottom:532.620000px;}
.y23{bottom:533.805000px;}
.ybc{bottom:537.735000px;}
.y15f{bottom:538.920000px;}
.ydb{bottom:540.030000px;}
.ye{bottom:540.615000px;}
.y28{bottom:544.065000px;}
.y11c{bottom:545.115000px;}
.y6f{bottom:550.260000px;}
.y129{bottom:551.445000px;}
.y1ab{bottom:551.550000px;}
.y1e{bottom:551.805000px;}
.y14b{bottom:552.345000px;}
.y1c4{bottom:552.750000px;}
.yfa{bottom:554.010000px;}
.y1b8{bottom:554.070000px;}
.yba{bottom:554.325000px;}
.y1b5{bottom:579.630000px;}
.y20{bottom:585.105000px;}
.y1b4{bottom:585.180000px;}
.y33{bottom:585.825000px;}
.y6e{bottom:585.930000px;}
.y4{bottom:586.005000px;}
.h4d{height:17.760284px;}
.h4c{height:26.641226px;}
.h4b{height:29.970779px;}
.h28{height:34.645295px;}
.h2c{height:42.595241px;}
.h2d{height:42.683797px;}
.hc{height:43.554375px;}
.h22{height:47.309062px;}
.h3f{height:48.410156px;}
.h25{height:49.561875px;}
.h4f{height:50.312812px;}
.h3a{height:52.876175px;}
.h44{height:53.981920px;}
.h3c{height:55.742769px;}
.h42{height:56.320312px;}
.h46{height:56.801250px;}
.h2a{height:58.510248px;}
.h2b{height:58.631891px;}
.h58{height:58.888956px;}
.h37{height:60.199894px;}
.h35{height:60.229859px;}
.h51{height:60.825937px;}
.h55{height:61.456992px;}
.h59{height:62.007449px;}
.h1{height:62.327813px;}
.hd{height:62.478000px;}
.h27{height:63.210967px;}
.h3e{height:63.767813px;}
.h24{height:64.546875px;}
.h57{height:65.125941px;}
.h40{height:66.082500px;}
.h47{height:66.232687px;}
.h1f{height:69.086250px;}
.h23{height:69.236437px;}
.h2f{height:72.937969px;}
.h30{height:73.067062px;}
.h2e{height:73.613320px;}
.h56{height:73.986171px;}
.h4{height:75.093750px;}
.h13{height:75.519844px;}
.h33{height:78.819901px;}
.h1b{height:80.683594px;}
.h11{height:81.101250px;}
.h12{height:81.251437px;}
.h15{height:82.001953px;}
.h8{height:84.855937px;}
.h9{height:85.006125px;}
.h14{height:85.847344px;}
.h5b{height:86.569875px;}
.h20{height:86.642227px;}
.h21{height:86.772516px;}
.h10{height:87.859687px;}
.hf{height:88.009875px;}
.h36{height:92.534769px;}
.h19{height:93.867188px;}
.h17{height:94.017375px;}
.h53{height:96.820312px;}
.h54{height:96.949406px;}
.h32{height:97.716797px;}
.h5{height:99.874688px;}
.h41{height:99.975586px;}
.he{height:100.024875px;}
.h34{height:103.262497px;}
.h18{height:103.407188px;}
.h16{height:103.527188px;}
.h26{height:104.482687px;}
.h6{height:106.633125px;}
.h7{height:106.783312px;}
.h1c{height:107.793281px;}
.h4e{height:107.912812px;}
.h1e{height:108.791367px;}
.h3{height:112.640625px;}
.hb{height:112.790813px;}
.h5a{height:118.648125px;}
.h2{height:125.406562px;}
.ha{height:125.556750px;}
.h5d{height:126.180000px;}
.h3d{height:130.307813px;}
.h45{height:132.401250px;}
.h52{height:133.245938px;}
.h31{height:150.187500px;}
.h49{height:150.337688px;}
.h5c{height:158.400000px;}
.h3b{height:192.592149px;}
.h39{height:194.934819px;}
.h1d{height:199.714688px;}
.h4a{height:199.984036px;}
.h38{height:203.653136px;}
.h48{height:213.328125px;}
.h1a{height:217.155188px;}
.h50{height:293.580000px;}
.h43{height:315.893551px;}
.h29{height:398.867762px;}
.h0{height:607.500000px;}
.w2{width:63.090705px;}
.w9{width:115.020000px;}
.wb{width:126.180000px;}
.wc{width:130.860000px;}
.w5{width:367.026040px;}
.w6{width:374.764451px;}
.w7{width:390.599884px;}
.w8{width:410.204104px;}
.w4{width:629.772531px;}
.wa{width:693.011410px;}
.w3{width:1002.108402px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x105{left:2.340000px;}
.x60{left:7.487984px;}
.xb9{left:8.543137px;}
.xfa{left:10.799984px;}
.xf{left:12.311984px;}
.xa0{left:14.121573px;}
.x9b{left:25.883984px;}
.x10{left:28.511984px;}
.xf8{left:30.131984px;}
.x11{left:31.931984px;}
.x5c{left:35.135984px;}
.x91{left:36.755984px;}
.x93{left:38.843984px;}
.x5f{left:42.983984px;}
.xbb{left:44.197609px;}
.x12{left:45.431984px;}
.xd1{left:46.547984px;}
.xa1{left:48.001815px;}
.x7f{left:50.147984px;}
.x64{left:54.467984px;}
.x9c{left:56.843984px;}
.xce{left:57.946986px;}
.x65{left:59.867984px;}
.xa9{left:62.842367px;}
.x2e{left:66.491984px;}
.x7e{left:69.047984px;}
.x68{left:70.559984px;}
.x2f{left:75.131984px;}
.xfc{left:76.139984px;}
.x2c{left:79.127984px;}
.x76{left:80.495984px;}
.x31{left:82.511984px;}
.x78{left:83.879984px;}
.xb8{left:86.039990px;}
.x9a{left:89.315984px;}
.x7{left:90.395984px;}
.x30{left:93.671984px;}
.xd9{left:98.603984px;}
.x96{left:100.619984px;}
.x2b{left:101.807984px;}
.x33{left:102.851984px;}
.x32{left:105.551984px;}
.x1{left:107.207984px;}
.x104{left:108.540000px;}
.xd2{left:113.687984px;}
.x5b{left:117.467984px;}
.x17{left:118.835984px;}
.xbc{left:120.311984px;}
.x89{left:123.371984px;}
.xf3{left:131.903984px;}
.xae{left:134.394056px;}
.xb5{left:139.469397px;}
.xf2{left:140.723984px;}
.xdb{left:148.139990px;}
.x8{left:150.554984px;}
.x88{left:151.634984px;}
.x6d{left:158.909984px;}
.x99{left:163.439984px;}
.x6e{left:167.729984px;}
.x23{left:171.254984px;}
.x2{left:175.964984px;}
.x1d{left:180.254984px;}
.x1c{left:185.114984px;}
.xe5{left:189.359984px;}
.x63{left:190.904984px;}
.x4f{left:194.324984px;}
.xfb{left:196.769984px;}
.x55{left:198.719984px;}
.x94{left:200.369984px;}
.x2d{left:202.859984px;}
.x7c{left:204.629984px;}
.x1e{left:207.074984px;}
.xd3{left:210.389984px;}
.x1b{left:212.009984px;}
.xe7{left:213.299984px;}
.xcc{left:214.454984px;}
.x16{left:215.999984px;}
.x22{left:217.154984px;}
.xa3{left:219.248741px;}
.xe2{left:220.934320px;}
.x66{left:225.824984px;}
.xa2{left:227.445064px;}
.x56{left:229.289984px;}
.x90{left:230.549984px;}
.xe8{left:233.459984px;}
.xe4{left:235.966906px;}
.x8f{left:239.369984px;}
.x9f{left:240.479984px;}
.x5{left:242.384984px;}
.x51{left:244.154984px;}
.x6f{left:245.804984px;}
.x13{left:249.404984px;}
.x57{left:250.529984px;}
.xc9{left:253.649984px;}
.xc0{left:255.449984px;}
.x34{left:261.749984px;}
.x38{left:263.549984px;}
.xdf{left:264.702588px;}
.x86{left:266.324984px;}
.x39{left:267.869984px;}
.xf5{left:274.818527px;}
.xe1{left:276.279781px;}
.x36{left:279.029984px;}
.x6c{left:282.269984px;}
.x3a{left:283.349984px;}
.xb7{left:285.255453px;}
.xe{left:287.024984px;}
.xba{left:288.599634px;}
.x37{left:291.089984px;}
.x35{left:296.489984px;}
.x3b{left:299.189984px;}
.xcb{left:310.649984px;}
.xc{left:315.644984px;}
.xa{left:317.624984px;}
.xe3{left:318.988401px;}
.xdd{left:320.001979px;}
.xdc{left:321.331481px;}
.x85{left:323.924984px;}
.xb{left:327.524984px;}
.x92{left:329.294984px;}
.x29{left:334.364984px;}
.xca{left:336.929984px;}
.x101{left:353.489984px;}
.xda{left:355.649984px;}
.x28{left:356.684984px;}
.x2a{left:359.384984px;}
.xde{left:366.448996px;}
.x14{left:368.129984px;}
.xe0{left:369.456834px;}
.x77{left:370.514984px;}
.x1f{left:372.389984px;}
.xbd{left:375.584984px;}
.x79{left:380.489984px;}
.x6{left:382.649984px;}
.x20{left:383.729984px;}
.x102{left:386.309984px;}
.x52{left:387.749984px;}
.xd4{left:392.189984px;}
.x21{left:393.809984px;}
.xeb{left:394.814984px;}
.xab{left:398.122135px;}
.x3{left:399.749984px;}
.x53{left:401.249984px;}
.x7b{left:403.229984px;}
.xac{left:404.721166px;}
.x98{left:405.749984px;}
.xf4{left:407.009984px;}
.x103{left:411.584984px;}
.xe9{left:413.564984px;}
.xea{left:416.084984px;}
.xad{left:423.025900px;}
.x7d{left:428.369984px;}
.xc4{left:429.404984px;}
.x15{left:430.409984px;}
.xe6{left:434.520000px;}
.xd5{left:450.209984px;}
.x62{left:452.699984px;}
.xb1{left:458.099984px;}
.xc5{left:460.589984px;}
.xff{left:465.989984px;}
.xd{left:471.209984px;}
.x3f{left:475.019984px;}
.x3c{left:477.179984px;}
.xaa{left:480.518195px;}
.xc6{left:485.249984px;}
.x3d{left:487.829984px;}
.x3e{left:493.589984px;}
.xd6{left:502.454984px;}
.xaf{left:505.035772px;}
.x6b{left:511.769984px;}
.x87{left:517.604984px;}
.xb4{left:520.527075px;}
.xd7{left:542.804984px;}
.x7a{left:547.454984px;}
.x9d{left:550.409984px;}
.xd8{left:552.809984px;}
.x24{left:557.714984px;}
.xf6{left:560.214506px;}
.x25{left:564.554984px;}
.x84{left:573.374984px;}
.x97{left:575.849984px;}
.x9e{left:580.829984px;}
.xec{left:586.259984px;}
.x83{left:592.379984px;}
.x70{left:597.029984px;}
.x26{left:598.604984px;}
.xb3{left:601.807292px;}
.x81{left:609.329984px;}
.x27{left:614.159984px;}
.xb2{left:615.288397px;}
.xf7{left:617.746789px;}
.x74{left:619.844984px;}
.x95{left:622.229984px;}
.x80{left:625.574984px;}
.x72{left:627.404984px;}
.x75{left:634.169984px;}
.x9{left:635.939984px;}
.xa5{left:640.817257px;}
.xf0{left:641.909984px;}
.xa6{left:648.593855px;}
.xa4{left:655.997362px;}
.xb6{left:657.899959px;}
.xa7{left:660.287898px;}
.x73{left:664.844984px;}
.xf1{left:666.029984px;}
.x8c{left:668.519984px;}
.xcd{left:671.940000px;}
.x42{left:678.134984px;}
.x40{left:679.574984px;}
.x41{left:681.734984px;}
.x71{left:686.519984px;}
.x44{left:689.834984px;}
.xd0{left:691.739984px;}
.x45{left:694.874984px;}
.x43{left:700.454984px;}
.x46{left:708.914984px;}
.xf9{left:720.929984px;}
.x82{left:733.934984px;}
.x8d{left:745.589984px;}
.x59{left:755.609984px;}
.x19{left:759.059984px;}
.xed{left:763.814984px;}
.xbf{left:766.904984px;}
.xfe{left:769.604984px;}
.xbe{left:771.119984px;}
.x58{left:772.709984px;}
.x8a{left:775.769984px;}
.x5a{left:776.849984px;}
.x8e{left:778.529984px;}
.xc3{left:782.564984px;}
.xc1{left:785.234984px;}
.xc2{left:790.634984px;}
.x5d{left:798.554984px;}
.x5e{left:803.594984px;}
.x8b{left:804.929984px;}
.x6a{left:810.359984px;}
.xc7{left:817.529984px;}
.x100{left:821.624984px;}
.x18{left:835.199984px;}
.xef{left:848.984984px;}
.xee{left:851.504984px;}
.xc8{left:866.309984px;}
.xfd{left:867.929984px;}
.xa8{left:869.882932px;}
.x47{left:873.644984px;}
.x1a{left:875.849984px;}
.xcf{left:878.144984px;}
.x48{left:881.564984px;}
.x4c{left:884.264984px;}
.x4e{left:886.064984px;}
.x4b{left:887.144984px;}
.x49{left:890.924984px;}
.x4d{left:903.884984px;}
.x4a{left:916.844984px;}
.x69{left:917.969984px;}
.xb0{left:951.578009px;}
.x61{left:966.884984px;}
.x67{left:971.894984px;}
.x50{left:1049.009984px;}
.x54{left:1050.269984px;}
.x4{left:1059.089984px;}
@media print{
.v2{vertical-align:-109.440000pt;}
.va{vertical-align:-89.281790pt;}
.ve{vertical-align:-76.800000pt;}
.v1a{vertical-align:-33.493333pt;}
.v16{vertical-align:-25.640939pt;}
.v4{vertical-align:-22.400000pt;}
.v17{vertical-align:-15.938962pt;}
.v15{vertical-align:-10.394975pt;}
.v8{vertical-align:-5.600000pt;}
.v1{vertical-align:-2.933333pt;}
.v1b{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.280000pt;}
.v18{vertical-align:2.771993pt;}
.v9{vertical-align:4.096000pt;}
.v13{vertical-align:5.760000pt;}
.v5{vertical-align:8.586667pt;}
.v11{vertical-align:10.240000pt;}
.v19{vertical-align:13.305568pt;}
.v12{vertical-align:15.360000pt;}
.v3{vertical-align:22.560000pt;}
.v10{vertical-align:51.200000pt;}
.vc{vertical-align:60.426667pt;}
.v14{vertical-align:64.373333pt;}
.vb{vertical-align:65.922649pt;}
.vf{vertical-align:67.200000pt;}
.v7{vertical-align:88.746667pt;}
.v6{vertical-align:109.589333pt;}
.ls26{letter-spacing:-5.813333pt;}
.ls1e{letter-spacing:-4.224000pt;}
.ls7a{letter-spacing:-0.640000pt;}
.ls48{letter-spacing:-0.336533pt;}
.ls72{letter-spacing:-0.326933pt;}
.ls7b{letter-spacing:-0.297067pt;}
.ls35{letter-spacing:-0.272533pt;}
.lse{letter-spacing:-0.265067pt;}
.ls76{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.237333pt;}
.ls50{letter-spacing:-0.192000pt;}
.ls42{letter-spacing:-0.168533pt;}
.ls77{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.104533pt;}
.ls40{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls4d{letter-spacing:-0.089067pt;}
.ls11{letter-spacing:-0.054933pt;}
.ls3c{letter-spacing:-0.037867pt;}
.ls27{letter-spacing:-0.033280pt;}
.ls18{letter-spacing:-0.030720pt;}
.ls14{letter-spacing:-0.027520pt;}
.ls16{letter-spacing:-0.024960pt;}
.ls1a{letter-spacing:-0.023040pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls46{letter-spacing:-0.013440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.002219pt;}
.ls52{letter-spacing:0.015220pt;}
.ls17{letter-spacing:0.015360pt;}
.ls34{letter-spacing:0.026133pt;}
.ls3{letter-spacing:0.030720pt;}
.ls15{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.038933pt;}
.ls4e{letter-spacing:0.046080pt;}
.ls64{letter-spacing:0.063201pt;}
.ls24{letter-spacing:0.073387pt;}
.ls2{letter-spacing:0.094933pt;}
.ls79{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.109867pt;}
.ls5c{letter-spacing:0.121067pt;}
.ls59{letter-spacing:0.128000pt;}
.ls6d{letter-spacing:0.138600pt;}
.ls5d{letter-spacing:0.144000pt;}
.ls6f{letter-spacing:0.156267pt;}
.ls3b{letter-spacing:0.160000pt;}
.ls51{letter-spacing:0.173867pt;}
.ls53{letter-spacing:0.174080pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls47{letter-spacing:0.194667pt;}
.ls49{letter-spacing:0.199466pt;}
.ls71{letter-spacing:0.224000pt;}
.ls3f{letter-spacing:0.232960pt;}
.ls6e{letter-spacing:0.235042pt;}
.ls69{letter-spacing:0.235065pt;}
.ls12{letter-spacing:0.237867pt;}
.ls1b{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.265067pt;}
.ls54{letter-spacing:0.271360pt;}
.ls73{letter-spacing:0.313067pt;}
.ls13{letter-spacing:0.320000pt;}
.ls78{letter-spacing:0.352000pt;}
.ls75{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.400000pt;}
.ls74{letter-spacing:0.419733pt;}
.ls6a{letter-spacing:4.979886pt;}
.ls6b{letter-spacing:8.171837pt;}
.ls68{letter-spacing:8.421316pt;}
.ls61{letter-spacing:8.720691pt;}
.ls66{letter-spacing:11.193309pt;}
.ls63{letter-spacing:13.965303pt;}
.ls70{letter-spacing:14.720000pt;}
.ls9{letter-spacing:15.762560pt;}
.ls39{letter-spacing:19.500160pt;}
.ls4a{letter-spacing:19.602560pt;}
.ls36{letter-spacing:19.606827pt;}
.ls7{letter-spacing:20.083200pt;}
.ls5{letter-spacing:20.128000pt;}
.lsa{letter-spacing:20.242560pt;}
.ls37{letter-spacing:21.393664pt;}
.ls38{letter-spacing:22.033664pt;}
.ls4f{letter-spacing:22.800000pt;}
.ls41{letter-spacing:23.642112pt;}
.ls4{letter-spacing:29.534720pt;}
.ls4c{letter-spacing:31.018202pt;}
.lsc{letter-spacing:31.648000pt;}
.lsb{letter-spacing:32.243200pt;}
.ls8{letter-spacing:32.288000pt;}
.ls1d{letter-spacing:49.267200pt;}
.ls1c{letter-spacing:49.312000pt;}
.ls60{letter-spacing:58.013664pt;}
.ls6c{letter-spacing:58.706662pt;}
.ls62{letter-spacing:60.092659pt;}
.ls65{letter-spacing:66.329644pt;}
.ls67{letter-spacing:68.408639pt;}
.ls44{letter-spacing:73.806336pt;}
.ls45{letter-spacing:73.864960pt;}
.ls43{letter-spacing:83.872000pt;}
.ls3e{letter-spacing:110.355200pt;}
.ls3d{letter-spacing:110.400000pt;}
.ls22{letter-spacing:183.231147pt;}
.ls1f{letter-spacing:183.337813pt;}
.ls21{letter-spacing:183.444480pt;}
.ls20{letter-spacing:183.924480pt;}
.ls23{letter-spacing:183.977813pt;}
.ls30{letter-spacing:200.005547pt;}
.ls2e{letter-spacing:214.192213pt;}
.ls2d{letter-spacing:214.644480pt;}
.ls2b{letter-spacing:214.697813pt;}
.ls2a{letter-spacing:215.284480pt;}
.ls2c{letter-spacing:215.337813pt;}
.ls29{letter-spacing:215.444480pt;}
.ls5e{letter-spacing:229.730773pt;}
.ls5a{letter-spacing:328.501333pt;}
.ls5b{letter-spacing:336.821333pt;}
.ls55{letter-spacing:348.766293pt;}
.ls57{letter-spacing:355.806293pt;}
.ls58{letter-spacing:399.640832pt;}
.ls56{letter-spacing:399.712000pt;}
.ls2f{letter-spacing:504.432213pt;}
.ls3a{letter-spacing:523.386667pt;}
.ls5f{letter-spacing:552.936960pt;}
.ls32{letter-spacing:631.840000pt;}
.ls31{letter-spacing:776.538880pt;}
.ws59{word-spacing:-29.774357pt;}
.ws5f{word-spacing:-29.712640pt;}
.wsc4{word-spacing:-26.723584pt;}
.ws45{word-spacing:-26.688000pt;}
.wsb4{word-spacing:-26.432000pt;}
.ws5{word-spacing:-25.264640pt;}
.ws41{word-spacing:-23.698944pt;}
.ws3f{word-spacing:-23.663360pt;}
.ws7b{word-spacing:-23.381050pt;}
.ws5c{word-spacing:-22.275584pt;}
.ws5e{word-spacing:-22.240000pt;}
.ws4f{word-spacing:-21.696000pt;}
.ws4e{word-spacing:-20.852224pt;}
.ws46{word-spacing:-20.816640pt;}
.ws9e{word-spacing:-20.747691pt;}
.ws7a{word-spacing:-20.370027pt;}
.ws2f{word-spacing:-20.214827pt;}
.ws21{word-spacing:-20.140544pt;}
.ws8{word-spacing:-20.104960pt;}
.ws43{word-spacing:-19.230720pt;}
.ws42{word-spacing:-19.215360pt;}
.ws2{word-spacing:-17.792000pt;}
.ws8e{word-spacing:-17.600000pt;}
.ws9f{word-spacing:-16.728426pt;}
.ws6a{word-spacing:-16.368640pt;}
.ws67{word-spacing:-16.271573pt;}
.ws8d{word-spacing:-15.656960pt;}
.ws3e{word-spacing:-14.802944pt;}
.ws3d{word-spacing:-14.767360pt;}
.ws9b{word-spacing:-14.411520pt;}
.ws6e{word-spacing:-14.062328pt;}
.ws6d{word-spacing:-13.862863pt;}
.ws93{word-spacing:-13.344000pt;}
.ws84{word-spacing:-13.207162pt;}
.ws83{word-spacing:-12.527979pt;}
.wsa1{word-spacing:-12.012433pt;}
.ws98{word-spacing:-11.920640pt;}
.wsa4{word-spacing:-11.700007pt;}
.wsa3{word-spacing:-11.464965pt;}
.ws6b{word-spacing:-11.195520pt;}
.wsd1{word-spacing:-10.319360pt;}
.wsa2{word-spacing:-9.343004pt;}
.ws96{word-spacing:-6.954363pt;}
.ws4d{word-spacing:-3.498752pt;}
.ws4c{word-spacing:-3.328000pt;}
.ws54{word-spacing:-2.782293pt;}
.ws70{word-spacing:-2.444032pt;}
.ws68{word-spacing:-2.377984pt;}
.ws23{word-spacing:-2.343680pt;}
.ws36{word-spacing:-2.343168pt;}
.ws77{word-spacing:-2.305920pt;}
.ws2b{word-spacing:-2.305067pt;}
.ws12{word-spacing:-2.259520pt;}
.ws37{word-spacing:-2.239787pt;}
.wsa{word-spacing:-2.216107pt;}
.ws95{word-spacing:-2.190037pt;}
.ws60{word-spacing:-2.142720pt;}
.ws14{word-spacing:-2.012800pt;}
.ws13{word-spacing:-1.993984pt;}
.wse{word-spacing:-1.953280pt;}
.ws35{word-spacing:-1.906560pt;}
.ws1d{word-spacing:-1.864448pt;}
.ws26{word-spacing:-1.834667pt;}
.ws3a{word-spacing:-1.809920pt;}
.ws16{word-spacing:-1.803520pt;}
.ws56{word-spacing:-1.748480pt;}
.ws29{word-spacing:-1.686400pt;}
.ws33{word-spacing:-1.665920pt;}
.ws31{word-spacing:-1.654187pt;}
.ws34{word-spacing:-1.600000pt;}
.ws72{word-spacing:-1.580544pt;}
.ws1b{word-spacing:-1.580288pt;}
.wsc{word-spacing:-1.444267pt;}
.ws3b{word-spacing:-1.386880pt;}
.ws9{word-spacing:-1.325120pt;}
.ws79{word-spacing:-1.266560pt;}
.ws0{word-spacing:-1.260160pt;}
.ws39{word-spacing:-1.251840pt;}
.ws19{word-spacing:-1.239040pt;}
.ws75{word-spacing:-1.224960pt;}
.ws10{word-spacing:-1.221760pt;}
.ws2d{word-spacing:-1.179520pt;}
.wscb{word-spacing:-1.152000pt;}
.ws17{word-spacing:-1.124480pt;}
.ws3c{word-spacing:-1.115093pt;}
.wsc9{word-spacing:-1.088000pt;}
.ws27{word-spacing:-1.028480pt;}
.ws15{word-spacing:-1.025067pt;}
.ws18{word-spacing:-1.024853pt;}
.ws2e{word-spacing:-1.024000pt;}
.ws1a{word-spacing:-1.019307pt;}
.wsb{word-spacing:-1.014400pt;}
.ws76{word-spacing:-1.014187pt;}
.ws55{word-spacing:-1.008000pt;}
.ws64{word-spacing:-1.003093pt;}
.ws1c{word-spacing:-0.990187pt;}
.ws1e{word-spacing:-0.979520pt;}
.ws78{word-spacing:-0.960000pt;}
.ws1f{word-spacing:-0.940544pt;}
.wsd{word-spacing:-0.914987pt;}
.ws32{word-spacing:-0.907733pt;}
.ws30{word-spacing:-0.804480pt;}
.wscd{word-spacing:-0.778667pt;}
.ws5a{word-spacing:-0.770560pt;}
.ws71{word-spacing:-0.762432pt;}
.ws1{word-spacing:-0.759040pt;}
.ws11{word-spacing:-0.722347pt;}
.ws24{word-spacing:-0.685120pt;}
.wsc0{word-spacing:-0.672000pt;}
.wscf{word-spacing:-0.640000pt;}
.ws2c{word-spacing:-0.584960pt;}
.ws28{word-spacing:-0.539520pt;}
.wsc6{word-spacing:-0.522667pt;}
.wsc5{word-spacing:-0.512000pt;}
.ws20{word-spacing:-0.461888pt;}
.ws22{word-spacing:-0.452907pt;}
.ws58{word-spacing:-0.449536pt;}
.ws65{word-spacing:-0.412160pt;}
.wsca{word-spacing:-0.405333pt;}
.wsf{word-spacing:-0.374400pt;}
.ws2a{word-spacing:-0.312960pt;}
.ws90{word-spacing:-0.293333pt;}
.wsce{word-spacing:-0.288000pt;}
.ws94{word-spacing:-0.192000pt;}
.ws66{word-spacing:-0.174720pt;}
.wsd3{word-spacing:-0.129280pt;}
.ws4{word-spacing:-0.104533pt;}
.ws38{word-spacing:-0.099840pt;}
.ws80{word-spacing:-0.093524pt;}
.wscc{word-spacing:-0.064000pt;}
.ws7d{word-spacing:-0.054550pt;}
.ws6c{word-spacing:-0.040769pt;}
.wsd2{word-spacing:-0.024320pt;}
.ws25{word-spacing:-0.015360pt;}
.ws3{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.096000pt;}
.ws6{word-spacing:0.182080pt;}
.ws63{word-spacing:0.341760pt;}
.ws7{word-spacing:0.375360pt;}
.wsc1{word-spacing:0.448000pt;}
.wsbf{word-spacing:0.565333pt;}
.wsc3{word-spacing:0.896000pt;}
.wsc8{word-spacing:0.928000pt;}
.wsc7{word-spacing:1.088000pt;}
.ws97{word-spacing:1.303680pt;}
.ws40{word-spacing:1.400320pt;}
.wsae{word-spacing:1.792000pt;}
.ws61{word-spacing:1.842560pt;}
.ws62{word-spacing:1.926827pt;}
.wsb1{word-spacing:2.410667pt;}
.wsad{word-spacing:2.528000pt;}
.wsb3{word-spacing:2.624000pt;}
.wsb0{word-spacing:2.944000pt;}
.wsb6{word-spacing:3.008000pt;}
.wsb2{word-spacing:3.072000pt;}
.wsb5{word-spacing:3.370667pt;}
.wsaf{word-spacing:3.648000pt;}
.wsa0{word-spacing:5.221050pt;}
.wsbb{word-spacing:15.808000pt;}
.wsb9{word-spacing:15.904000pt;}
.wsb7{word-spacing:15.936000pt;}
.wsbd{word-spacing:16.032000pt;}
.wsba{word-spacing:16.320000pt;}
.wsbc{word-spacing:16.426667pt;}
.wsbe{word-spacing:16.448000pt;}
.wsb8{word-spacing:16.565333pt;}
.wsab{word-spacing:18.189632pt;}
.wsa7{word-spacing:18.402880pt;}
.wsa9{word-spacing:19.218731pt;}
.wsac{word-spacing:19.250176pt;}
.wsa5{word-spacing:19.250304pt;}
.wsaa{word-spacing:19.682880pt;}
.wsa6{word-spacing:19.789632pt;}
.wsa8{word-spacing:20.639189pt;}
.ws5b{word-spacing:22.305536pt;}
.ws50{word-spacing:35.330645pt;}
.ws4a{word-spacing:40.109013pt;}
.ws47{word-spacing:42.135680pt;}
.wsd0{word-spacing:65.628160pt;}
.ws5d{word-spacing:65.920000pt;}
.ws52{word-spacing:72.055680pt;}
.ws7f{word-spacing:88.472713pt;}
.ws9a{word-spacing:129.100373pt;}
.ws7c{word-spacing:143.141251pt;}
.ws51{word-spacing:184.963413pt;}
.ws49{word-spacing:191.523328pt;}
.ws48{word-spacing:191.630080pt;}
.ws9d{word-spacing:209.547605pt;}
.ws9c{word-spacing:209.625813pt;}
.ws92{word-spacing:237.251673pt;}
.ws7e{word-spacing:256.683221pt;}
.ws6f{word-spacing:275.910656pt;}
.ws8c{word-spacing:282.450347pt;}
.ws74{word-spacing:297.751040pt;}
.ws8b{word-spacing:346.983680pt;}
.ws91{word-spacing:347.066667pt;}
.ws99{word-spacing:366.672000pt;}
.ws4b{word-spacing:386.038400pt;}
.ws73{word-spacing:424.460373pt;}
.ws8f{word-spacing:456.488747pt;}
.ws53{word-spacing:493.117440pt;}
.ws87{word-spacing:574.275627pt;}
.ws89{word-spacing:574.318293pt;}
.ws57{word-spacing:609.546667pt;}
.ws82{word-spacing:621.947942pt;}
.ws85{word-spacing:626.204767pt;}
.ws69{word-spacing:975.776427pt;}
.ws88{word-spacing:1133.391573pt;}
.ws44{word-spacing:1164.106667pt;}
.ws81{word-spacing:1578.406229pt;}
.ws8a{word-spacing:1728.413653pt;}
.ws86{word-spacing:1872.608213pt;}
._36{margin-left:-1565.341946pt;}
._3a{margin-left:-909.808094pt;}
._3b{margin-left:-893.363761pt;}
._38{margin-left:-814.671621pt;}
._37{margin-left:-792.019382pt;}
._16{margin-left:-507.585920pt;}
._15{margin-left:-502.732587pt;}
._2e{margin-left:-449.355520pt;}
._30{margin-left:-322.869760pt;}
._2d{margin-left:-303.137536pt;}
._31{margin-left:-270.959360pt;}
._33{margin-left:-149.915093pt;}
._39{margin-left:-146.155648pt;}
._35{margin-left:-104.077136pt;}
._b{margin-left:-8.611200pt;}
._c{margin-left:-7.695360pt;}
._1d{margin-left:-6.150656pt;}
._3{margin-left:-5.184000pt;}
._7{margin-left:-3.817813pt;}
._1{margin-left:-2.171520pt;}
._0{margin-left:-0.919040pt;}
._2{width:1.354027pt;}
._9{width:2.346240pt;}
._45{width:3.250162pt;}
._a{width:4.388480pt;}
._44{width:6.225620pt;}
._46{width:11.660113pt;}
._18{width:13.342933pt;}
._8{width:14.422656pt;}
._12{width:17.921536pt;}
._6{width:19.439872pt;}
._5{width:20.346667pt;}
._29{width:25.324544pt;}
._4{width:26.279040pt;}
._47{width:27.708160pt;}
._23{width:29.048747pt;}
._42{width:35.000448pt;}
._27{width:43.520000pt;}
._f{width:61.921493pt;}
._26{width:110.320000pt;}
._34{width:143.648000pt;}
._1c{width:167.739648pt;}
._2a{width:168.889600pt;}
._43{width:203.616853pt;}
._1e{width:206.733397pt;}
._11{width:213.460053pt;}
._3e{width:257.080057pt;}
._3d{width:258.351586pt;}
._32{width:264.051200pt;}
._3f{width:266.859093pt;}
._1b{width:271.528021pt;}
._17{width:289.425280pt;}
._e{width:294.205653pt;}
._2f{width:296.468736pt;}
._3c{width:310.422827pt;}
._1f{width:395.565397pt;}
._20{width:397.490987pt;}
._1a{width:399.404288pt;}
._19{width:402.709333pt;}
._49{width:408.321920pt;}
._14{width:417.453397pt;}
._13{width:420.902997pt;}
._2b{width:421.967147pt;}
._10{width:425.070677pt;}
._25{width:465.559040pt;}
._24{width:466.599040pt;}
._22{width:506.545920pt;}
._21{width:510.664320pt;}
._28{width:800.739627pt;}
._48{width:843.268693pt;}
._40{width:1137.861333pt;}
._d{width:1226.840448pt;}
._41{width:1353.888000pt;}
._2c{width:2444.178555pt;}
.fs2b{font-size:18.732104pt;}
.fs2a{font-size:28.098998pt;}
.fs31{font-size:29.105931pt;}
.fs29{font-size:31.610741pt;}
.fsb{font-size:37.120000pt;}
.fs30{font-size:37.421911pt;}
.fs17{font-size:40.320000pt;}
.fs1a{font-size:40.769124pt;}
.fs19{font-size:42.240000pt;}
.fs2c{font-size:42.880000pt;}
.fs21{font-size:45.064671pt;}
.fs22{font-size:47.507778pt;}
.fs23{font-size:48.000000pt;}
.fs2d{font-size:48.128000pt;}
.fs1b{font-size:49.866412pt;}
.fs13{font-size:49.920000pt;}
.fs1c{font-size:49.970084pt;}
.fs12{font-size:50.048000pt;}
.fs2e{font-size:51.840000pt;}
.fs2f{font-size:52.113476pt;}
.fs0{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs1f{font-size:54.549807pt;}
.fs24{font-size:56.320000pt;}
.fs26{font-size:56.448000pt;}
.fs16{font-size:58.880000pt;}
.fs18{font-size:59.008000pt;}
.fs25{font-size:63.196840pt;}
.fs32{font-size:63.894448pt;}
.fs3{font-size:64.000000pt;}
.fs10{font-size:69.120000pt;}
.fs11{font-size:69.248000pt;}
.fs7{font-size:72.320000pt;}
.fs8{font-size:72.448000pt;}
.fsf{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs14{font-size:80.000000pt;}
.fs15{font-size:80.128000pt;}
.fs4{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fs5{font-size:90.880000pt;}
.fs6{font-size:91.008000pt;}
.fs1e{font-size:93.524198pt;}
.fs2{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs33{font-size:101.120000pt;}
.fs1{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fs1d{font-size:128.000000pt;}
.fs28{font-size:128.128000pt;}
.fs20{font-size:140.278331pt;}
.fs27{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1c7{bottom:3.613333pt;}
.y1{bottom:6.272000pt;}
.y125{bottom:8.826406pt;}
.y128{bottom:8.826408pt;}
.y137{bottom:10.208000pt;}
.y12d{bottom:10.652972pt;}
.y133{bottom:11.242234pt;}
.y138{bottom:12.128000pt;}
.y175{bottom:16.030743pt;}
.y14e{bottom:16.749108pt;}
.y16c{bottom:17.466691pt;}
.y179{bottom:18.162712pt;}
.y15e{bottom:18.208000pt;}
.y168{bottom:18.633361pt;}
.y87{bottom:21.856000pt;}
.y12f{bottom:22.059377pt;}
.y16b{bottom:23.086378pt;}
.y19c{bottom:23.769786pt;}
.y10d{bottom:23.856019pt;}
.y132{bottom:23.866959pt;}
.y167{bottom:24.253048pt;}
.y19d{bottom:25.155782pt;}
.y126{bottom:25.307059pt;}
.y174{bottom:25.513966pt;}
.y178{bottom:27.645935pt;}
.y124{bottom:31.146842pt;}
.y14a{bottom:33.632000pt;}
.y173{bottom:34.997188pt;}
.y199{bottom:35.034539pt;}
.y100{bottom:35.886870pt;}
.y115{bottom:35.886872pt;}
.y111{bottom:35.886873pt;}
.y177{bottom:37.129157pt;}
.y10c{bottom:38.810759pt;}
.y1c8{bottom:40.160000pt;}
.y16e{bottom:43.124661pt;}
.y16a{bottom:44.291331pt;}
.y172{bottom:44.480410pt;}
.y176{bottom:46.612379pt;}
.yc4{bottom:48.224000pt;}
.y1a8{bottom:48.384000pt;}
.y16d{bottom:48.744348pt;}
.y19a{bottom:49.618624pt;}
.ye2{bottom:49.632000pt;}
.y169{bottom:49.911019pt;}
.y19b{bottom:51.004621pt;}
.y1c9{bottom:51.008000pt;}
.y1b7{bottom:51.648000pt;}
.y1d{bottom:51.744000pt;}
.y24{bottom:52.992000pt;}
.yb9{bottom:53.024000pt;}
.ye6{bottom:54.464000pt;}
.yda{bottom:54.592000pt;}
.ya1{bottom:54.656000pt;}
.y127{bottom:54.862516pt;}
.yb8{bottom:55.040000pt;}
.y75{bottom:58.240000pt;}
.y7a{bottom:58.368000pt;}
.y160{bottom:58.400000pt;}
.y149{bottom:59.392000pt;}
.y101{bottom:59.745335pt;}
.y93{bottom:60.736000pt;}
.y152{bottom:62.272000pt;}
.y90{bottom:64.480000pt;}
.ydf{bottom:70.144000pt;}
.y117{bottom:70.975113pt;}
.ye1{bottom:71.168000pt;}
.y122{bottom:71.616000pt;}
.yd9{bottom:72.192000pt;}
.y6d{bottom:73.024000pt;}
.y14f{bottom:73.216000pt;}
.ye7{bottom:74.176000pt;}
.y17d{bottom:74.583787pt;}
.y1c{bottom:77.664000pt;}
.y4a{bottom:78.752000pt;}
.y151{bottom:79.072000pt;}
.y1a6{bottom:81.632000pt;}
.y163{bottom:82.234757pt;}
.y17c{bottom:84.067010pt;}
.y165{bottom:84.646540pt;}
.y148{bottom:85.152000pt;}
.y1c0{bottom:85.248000pt;}
.y4f{bottom:85.632000pt;}
.y116{bottom:85.929853pt;}
.y74{bottom:88.672000pt;}
.y79{bottom:88.768000pt;}
.y14d{bottom:89.600000pt;}
.yd{bottom:89.920000pt;}
.y162{bottom:91.717980pt;}
.y108{bottom:92.331622pt;}
.y94{bottom:93.504000pt;}
.y17b{bottom:93.550232pt;}
.y18b{bottom:93.792000pt;}
.y8f{bottom:94.912000pt;}
.y1c2{bottom:95.072000pt;}
.y18f{bottom:95.456000pt;}
.y49{bottom:96.672000pt;}
.y6c{bottom:97.664000pt;}
.y6{bottom:100.384000pt;}
.y161{bottom:101.201202pt;}
.y17a{bottom:103.033454pt;}
.y4e{bottom:103.552000pt;}
.y1b{bottom:103.616000pt;}
.y39{bottom:103.776000pt;}
.y198{bottom:106.272000pt;}
.ycf{bottom:107.264000pt;}
.y107{bottom:107.290509pt;}
.y166{bottom:107.359443pt;}
.yb7{bottom:108.320000pt;}
.y1a5{bottom:110.464000pt;}
.y2c{bottom:111.392000pt;}
.yef{bottom:111.680000pt;}
.yd2{bottom:112.064000pt;}
.y18c{bottom:113.056000pt;}
.yc{bottom:113.312000pt;}
.yf9{bottom:113.568000pt;}
.y189{bottom:114.176000pt;}
.y48{bottom:114.592000pt;}
.y9f{bottom:114.688000pt;}
.y190{bottom:114.720000pt;}
.yd8{bottom:116.160000pt;}
.y1b3{bottom:117.408000pt;}
.y6b{bottom:117.824000pt;}
.y13e{bottom:118.720000pt;}
.ya3{bottom:118.976000pt;}
.y73{bottom:119.072000pt;}
.y78{bottom:119.200000pt;}
.y13f{bottom:120.640000pt;}
.y4d{bottom:121.472000pt;}
.y60{bottom:122.592000pt;}
.y8e{bottom:125.344000pt;}
.y95{bottom:126.272000pt;}
.yce{bottom:129.024000pt;}
.y1a{bottom:129.536000pt;}
.y182{bottom:130.426667pt;}
.y47{bottom:132.512000pt;}
.y2b{bottom:133.466667pt;}
.yd1{bottom:133.853333pt;}
.y121{bottom:134.466667pt;}
.yf8{bottom:135.973333pt;}
.yee{bottom:136.346667pt;}
.yb{bottom:136.826667pt;}
.y171{bottom:137.992592pt;}
.y1a4{bottom:139.266667pt;}
.y6a{bottom:142.493333pt;}
.y153{bottom:143.586667pt;}
.ya9{bottom:143.866667pt;}
.y5f{bottom:144.986667pt;}
.y1b2{bottom:146.240000pt;}
.y104{bottom:146.810418pt;}
.y170{bottom:147.475815pt;}
.y72{bottom:149.466667pt;}
.y77{bottom:149.600000pt;}
.y4c{bottom:150.466667pt;}
.ycd{bottom:150.786667pt;}
.y131{bottom:152.263952pt;}
.y193{bottom:152.613333pt;}
.yc0{bottom:153.346667pt;}
.y41{bottom:155.293333pt;}
.y19{bottom:155.453333pt;}
.y2a{bottom:155.546667pt;}
.yd0{bottom:155.613333pt;}
.y8d{bottom:155.773333pt;}
.y16f{bottom:156.959037pt;}
.y12e{bottom:157.784259pt;}
.yf7{bottom:158.373333pt;}
.y11a{bottom:158.732741pt;}
.y38{bottom:158.973333pt;}
.yb6{bottom:159.586667pt;}
.y114{bottom:160.115713pt;}
.ya{bottom:160.346667pt;}
.yed{bottom:160.986667pt;}
.y103{bottom:161.822178pt;}
.y69{bottom:162.653333pt;}
.y120{bottom:163.266667pt;}
.y164{bottom:163.333870pt;}
.y15c{bottom:163.866667pt;}
.y13d{bottom:164.000000pt;}
.y4b{bottom:164.386667pt;}
.y1c1{bottom:165.213333pt;}
.y188{bottom:165.786667pt;}
.y18e{bottom:166.266667pt;}
.yd7{bottom:166.720000pt;}
.y5e{bottom:167.426667pt;}
.y1a3{bottom:168.066667pt;}
.y192{bottom:168.293333pt;}
.y25{bottom:171.866667pt;}
.ya0{bottom:172.573333pt;}
.y1bf{bottom:173.053333pt;}
.ya8{bottom:176.386667pt;}
.y102{bottom:176.802836pt;}
.ybf{bottom:178.946667pt;}
.y76{bottom:180.000000pt;}
.yf6{bottom:180.773333pt;}
.y1c6{bottom:180.800000pt;}
.yb5{bottom:181.346667pt;}
.y18{bottom:181.373333pt;}
.yc1{bottom:181.826667pt;}
.y46{bottom:182.306667pt;}
.y68{bottom:182.813333pt;}
.y15b{bottom:185.466667pt;}
.y106{bottom:185.843067pt;}
.y3e{bottom:186.306667pt;}
.y147{bottom:189.466667pt;}
.y5d{bottom:189.826667pt;}
.y1be{bottom:189.853333pt;}
.y9{bottom:192.826667pt;}
.ye5{bottom:192.866667pt;}
.y88{bottom:193.120000pt;}
.y144{bottom:193.986667pt;}
.yd6{bottom:195.546667pt;}
.y1c3{bottom:196.773333pt;}
.y1a2{bottom:196.866667pt;}
.yec{bottom:198.106667pt;}
.y45{bottom:200.386667pt;}
.y105{bottom:200.802990pt;}
.yf5{bottom:203.173333pt;}
.ybe{bottom:204.546667pt;}
.y2f{bottom:206.906667pt;}
.y12c{bottom:207.040000pt;}
.y71{bottom:207.226667pt;}
.y17{bottom:207.293333pt;}
.y67{bottom:207.453333pt;}
.y197{bottom:207.586667pt;}
.y3d{bottom:208.706667pt;}
.y81{bottom:208.866667pt;}
.y130{bottom:209.440000pt;}
.ya2{bottom:209.573333pt;}
.y123{bottom:209.618602pt;}
.y155{bottom:210.333333pt;}
.ye4{bottom:211.866667pt;}
.y5c{bottom:212.226667pt;}
.y37{bottom:214.146667pt;}
.y146{bottom:215.226667pt;}
.y15d{bottom:217.280000pt;}
.y44{bottom:218.306667pt;}
.y5{bottom:218.333333pt;}
.y143{bottom:219.746667pt;}
.yb4{bottom:220.733333pt;}
.y18a{bottom:220.800000pt;}
.y18d{bottom:220.960000pt;}
.y135{bottom:221.440000pt;}
.y191{bottom:221.600000pt;}
.y187{bottom:221.920000pt;}
.yeb{bottom:222.746667pt;}
.y22{bottom:225.093333pt;}
.y154{bottom:227.133333pt;}
.y9a{bottom:228.026667pt;}
.y2e{bottom:228.986667pt;}
.ye3{bottom:229.506667pt;}
.ybd{bottom:230.146667pt;}
.y3c{bottom:231.106667pt;}
.y66{bottom:232.093333pt;}
.y9e{bottom:232.573333pt;}
.y136{bottom:232.893333pt;}
.y16{bottom:233.253333pt;}
.y43{bottom:236.226667pt;}
.y196{bottom:236.386667pt;}
.yf4{bottom:238.080000pt;}
.y1a7{bottom:239.546667pt;}
.y8c{bottom:240.320000pt;}
.y145{bottom:240.986667pt;}
.yc7{bottom:242.973333pt;}
.y1a1{bottom:243.293333pt;}
.y40{bottom:244.546667pt;}
.yd5{bottom:246.106667pt;}
.y5b{bottom:248.066667pt;}
.y26{bottom:249.573333pt;}
.y118{bottom:250.016266pt;}
.yff{bottom:250.761653pt;}
.y2d{bottom:251.066667pt;}
.y113{bottom:251.104826pt;}
.y65{bottom:252.293333pt;}
.y3b{bottom:253.533333pt;}
.y21{bottom:253.920000pt;}
.y1b1{bottom:256.773333pt;}
.y157{bottom:257.093333pt;}
.yb3{bottom:258.173333pt;}
.y99{bottom:258.426667pt;}
.y86{bottom:258.493333pt;}
.y15{bottom:259.173333pt;}
.yea{bottom:259.906667pt;}
.yf3{bottom:260.480000pt;}
.y195{bottom:265.186667pt;}
.y112{bottom:266.064750pt;}
.y36{bottom:269.306667pt;}
.y91{bottom:270.693333pt;}
.y1b0{bottom:271.173333pt;}
.y7d{bottom:271.706667pt;}
.y1a0{bottom:272.093333pt;}
.y11b{bottom:273.580997pt;}
.y1bb{bottom:273.760000pt;}
.y27{bottom:274.586667pt;}
.y1b6{bottom:274.653333pt;}
.y5a{bottom:274.946667pt;}
.y139{bottom:275.546667pt;}
.y3a{bottom:275.933333pt;}
.y64{bottom:276.933333pt;}
.y10b{bottom:278.505435pt;}
.y181{bottom:279.040000pt;}
.y13b{bottom:279.173333pt;}
.yb2{bottom:279.613333pt;}
.y9c{bottom:282.306667pt;}
.yf2{bottom:282.880000pt;}
.ye9{bottom:284.546667pt;}
.y14{bottom:285.093333pt;}
.y55{bottom:287.173333pt;}
.y1bd{bottom:287.226667pt;}
.y98{bottom:288.826667pt;}
.y85{bottom:288.933333pt;}
.ycc{bottom:290.813333pt;}
.y10a{bottom:293.486093pt;}
.y194{bottom:293.986667pt;}
.y186{bottom:295.520000pt;}
.yd4{bottom:296.706667pt;}
.yac{bottom:296.733333pt;}
.y59{bottom:297.373333pt;}
.ya6{bottom:298.373333pt;}
.y3{bottom:299.266667pt;}
.y19f{bottom:300.893333pt;}
.y92{bottom:301.026667pt;}
.y63{bottom:301.573333pt;}
.y7e{bottom:302.080000pt;}
.y1ba{bottom:302.560000pt;}
.y10f{bottom:303.303867pt;}
.y1bc{bottom:304.026667pt;}
.y11f{bottom:304.253333pt;}
.yf1{bottom:305.280000pt;}
.yc5{bottom:305.466667pt;}
.y109{bottom:308.435649pt;}
.y13{bottom:311.013333pt;}
.y1af{bottom:311.706667pt;}
.yca{bottom:312.186667pt;}
.ycb{bottom:312.613333pt;}
.yb1{bottom:312.866667pt;}
.y31{bottom:313.053333pt;}
.y8{bottom:314.080000pt;}
.y9b{bottom:315.066667pt;}
.y13a{bottom:317.573333pt;}
.y10e{bottom:318.263790pt;}
.y54{bottom:319.173333pt;}
.y97{bottom:319.266667pt;}
.y84{bottom:319.333333pt;}
.ye8{bottom:321.666667pt;}
.y62{bottom:321.733333pt;}
.y185{bottom:321.920000pt;}
.y156{bottom:322.080000pt;}
.y58{bottom:324.253333pt;}
.y35{bottom:324.506667pt;}
.yab{bottom:326.813333pt;}
.yf0{bottom:327.706667pt;}
.ya5{bottom:328.453333pt;}
.y19e{bottom:329.733333pt;}
.y7f{bottom:332.413333pt;}
.y11e{bottom:333.053333pt;}
.y3f{bottom:333.826667pt;}
.yc9{bottom:333.946667pt;}
.y30{bottom:335.133333pt;}
.y150{bottom:336.253333pt;}
.y12{bottom:336.960000pt;}
.y7{bottom:337.440000pt;}
.y119{bottom:338.396965pt;}
.y110{bottom:339.836957pt;}
.y13c{bottom:340.826667pt;}
.y140{bottom:342.013333pt;}
.yd3{bottom:347.266667pt;}
.y184{bottom:348.000000pt;}
.y134{bottom:348.893333pt;}
.y96{bottom:349.666667pt;}
.y83{bottom:349.733333pt;}
.y57{bottom:351.133333pt;}
.y53{bottom:351.200000pt;}
.yb0{bottom:351.333333pt;}
.y15a{bottom:352.026667pt;}
.yc8{bottom:355.706667pt;}
.y1ae{bottom:355.906667pt;}
.y61{bottom:355.973333pt;}
.yaa{bottom:356.773333pt;}
.ya4{bottom:358.373333pt;}
.y2{bottom:359.133333pt;}
.yc3{bottom:359.266667pt;}
.y80{bottom:362.746667pt;}
.y11{bottom:362.880000pt;}
.y32{bottom:364.293333pt;}
.yde{bottom:365.626667pt;}
.y142{bottom:366.693333pt;}
.yaf{bottom:372.773333pt;}
.y183{bottom:372.826667pt;}
.y1aa{bottom:375.866667pt;}
.yfd{bottom:377.053333pt;}
.y34{bottom:379.706667pt;}
.y82{bottom:380.133333pt;}
.y1ad{bottom:381.506667pt;}
.y8a{bottom:382.586667pt;}
.y52{bottom:383.200000pt;}
.y141{bottom:384.293333pt;}
.yc2{bottom:385.986667pt;}
.y56{bottom:386.266667pt;}
.y159{bottom:386.493333pt;}
.y10{bottom:388.800000pt;}
.ydd{bottom:391.266667pt;}
.y17f{bottom:396.666667pt;}
.y12b{bottom:399.933333pt;}
.yad{bottom:401.146667pt;}
.yfc{bottom:402.653333pt;}
.ye0{bottom:402.946667pt;}
.y158{bottom:403.293333pt;}
.y1a9{bottom:404.666667pt;}
.ya7{bottom:405.666667pt;}
.y7c{bottom:406.053333pt;}
.yae{bottom:407.333333pt;}
.y89{bottom:408.186667pt;}
.y17e{bottom:409.466667pt;}
.yf{bottom:414.720000pt;}
.ydc{bottom:416.866667pt;}
.y180{bottom:422.266667pt;}
.y7b{bottom:427.840000pt;}
.yc6{bottom:450.746667pt;}
.y29{bottom:451.613333pt;}
.yfb{bottom:454.053333pt;}
.y70{bottom:457.120000pt;}
.y9d{bottom:457.946667pt;}
.y12a{bottom:458.173333pt;}
.y1f{bottom:458.493333pt;}
.y14c{bottom:458.973333pt;}
.y1c5{bottom:459.333333pt;}
.y1ac{bottom:459.866667pt;}
.y1b9{bottom:460.480000pt;}
.ybb{bottom:460.706667pt;}
.y8b{bottom:468.320000pt;}
.y11d{bottom:469.600000pt;}
.y50{bottom:470.466667pt;}
.y51{bottom:472.066667pt;}
.yfe{bottom:472.826667pt;}
.y42{bottom:473.440000pt;}
.y23{bottom:474.493333pt;}
.ybc{bottom:477.986667pt;}
.y15f{bottom:479.040000pt;}
.ydb{bottom:480.026667pt;}
.ye{bottom:480.546667pt;}
.y28{bottom:483.613333pt;}
.y11c{bottom:484.546667pt;}
.y6f{bottom:489.120000pt;}
.y129{bottom:490.173333pt;}
.y1ab{bottom:490.266667pt;}
.y1e{bottom:490.493333pt;}
.y14b{bottom:490.973333pt;}
.y1c4{bottom:491.333333pt;}
.yfa{bottom:492.453333pt;}
.y1b8{bottom:492.506667pt;}
.yba{bottom:492.733333pt;}
.y1b5{bottom:515.226667pt;}
.y20{bottom:520.093333pt;}
.y1b4{bottom:520.160000pt;}
.y33{bottom:520.733333pt;}
.y6e{bottom:520.826667pt;}
.y4{bottom:520.893333pt;}
.h4d{height:15.786919pt;}
.h4c{height:23.681090pt;}
.h4b{height:26.640693pt;}
.h28{height:30.795818pt;}
.h2c{height:37.862437pt;}
.h2d{height:37.941153pt;}
.hc{height:38.715000pt;}
.h22{height:42.052500pt;}
.h3f{height:43.031250pt;}
.h25{height:44.055000pt;}
.h4f{height:44.722500pt;}
.h3a{height:47.001044pt;}
.h44{height:47.983929pt;}
.h3c{height:49.549128pt;}
.h42{height:50.062500pt;}
.h46{height:50.490000pt;}
.h2a{height:52.009109pt;}
.h2b{height:52.117236pt;}
.h58{height:52.345739pt;}
.h37{height:53.511017pt;}
.h35{height:53.537653pt;}
.h51{height:54.067500pt;}
.h55{height:54.628437pt;}
.h59{height:55.117732pt;}
.h1{height:55.402500pt;}
.hd{height:55.536000pt;}
.h27{height:56.187526pt;}
.h3e{height:56.682500pt;}
.h24{height:57.375000pt;}
.h57{height:57.889726pt;}
.h40{height:58.740000pt;}
.h47{height:58.873500pt;}
.h1f{height:61.410000pt;}
.h23{height:61.543500pt;}
.h2f{height:64.833750pt;}
.h30{height:64.948500pt;}
.h2e{height:65.434062pt;}
.h56{height:65.765486pt;}
.h4{height:66.750000pt;}
.h13{height:67.128750pt;}
.h33{height:70.062134pt;}
.h1b{height:71.718750pt;}
.h11{height:72.090000pt;}
.h12{height:72.223500pt;}
.h15{height:72.890625pt;}
.h8{height:75.427500pt;}
.h9{height:75.561000pt;}
.h14{height:76.308750pt;}
.h5b{height:76.951000pt;}
.h20{height:77.015312pt;}
.h21{height:77.131125pt;}
.h10{height:78.097500pt;}
.hf{height:78.231000pt;}
.h36{height:82.253128pt;}
.h19{height:83.437500pt;}
.h17{height:83.571000pt;}
.h53{height:86.062500pt;}
.h54{height:86.177250pt;}
.h32{height:86.859375pt;}
.h5{height:88.777500pt;}
.h41{height:88.867188pt;}
.he{height:88.911000pt;}
.h34{height:91.788886pt;}
.h18{height:91.917500pt;}
.h16{height:92.024167pt;}
.h26{height:92.873500pt;}
.h6{height:94.785000pt;}
.h7{height:94.918500pt;}
.h1c{height:95.816250pt;}
.h4e{height:95.922500pt;}
.h1e{height:96.703437pt;}
.h3{height:100.125000pt;}
.hb{height:100.258500pt;}
.h5a{height:105.465000pt;}
.h2{height:111.472500pt;}
.ha{height:111.606000pt;}
.h5d{height:112.160000pt;}
.h3d{height:115.829167pt;}
.h45{height:117.690000pt;}
.h52{height:118.440833pt;}
.h31{height:133.500000pt;}
.h49{height:133.633500pt;}
.h5c{height:140.800000pt;}
.h3b{height:171.193022pt;}
.h39{height:173.275395pt;}
.h1d{height:177.524167pt;}
.h4a{height:177.763588pt;}
.h38{height:181.025010pt;}
.h48{height:189.625000pt;}
.h1a{height:193.026833pt;}
.h50{height:260.960000pt;}
.h43{height:280.794268pt;}
.h29{height:354.549121pt;}
.h0{height:540.000000pt;}
.w2{width:56.080627pt;}
.w9{width:102.240000pt;}
.wb{width:112.160000pt;}
.wc{width:116.320000pt;}
.w5{width:326.245369pt;}
.w6{width:333.123956pt;}
.w7{width:347.199897pt;}
.w8{width:364.625870pt;}
.w4{width:559.797805pt;}
.wa{width:616.010142pt;}
.w3{width:890.763024pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x105{left:2.080000pt;}
.x60{left:6.655986pt;}
.xb9{left:7.593899pt;}
.xfa{left:9.599986pt;}
.xf{left:10.943986pt;}
.xa0{left:12.552509pt;}
.x9b{left:23.007986pt;}
.x10{left:25.343986pt;}
.xf8{left:26.783986pt;}
.x11{left:28.383986pt;}
.x5c{left:31.231986pt;}
.x91{left:32.671986pt;}
.x93{left:34.527986pt;}
.x5f{left:38.207986pt;}
.xbb{left:39.286764pt;}
.x12{left:40.383986pt;}
.xd1{left:41.375986pt;}
.xa1{left:42.668280pt;}
.x7f{left:44.575986pt;}
.x64{left:48.415986pt;}
.x9c{left:50.527986pt;}
.xce{left:51.508432pt;}
.x65{left:53.215986pt;}
.xa9{left:55.859882pt;}
.x2e{left:59.103986pt;}
.x7e{left:61.375986pt;}
.x68{left:62.719986pt;}
.x2f{left:66.783986pt;}
.xfc{left:67.679986pt;}
.x2c{left:70.335986pt;}
.x76{left:71.551986pt;}
.x31{left:73.343986pt;}
.x78{left:74.559986pt;}
.xb8{left:76.479991pt;}
.x9a{left:79.391986pt;}
.x7{left:80.351986pt;}
.x30{left:83.263986pt;}
.xd9{left:87.647986pt;}
.x96{left:89.439986pt;}
.x2b{left:90.495986pt;}
.x33{left:91.423986pt;}
.x32{left:93.823986pt;}
.x1{left:95.295986pt;}
.x104{left:96.480000pt;}
.xd2{left:101.055986pt;}
.x5b{left:104.415986pt;}
.x17{left:105.631986pt;}
.xbc{left:106.943986pt;}
.x89{left:109.663986pt;}
.xf3{left:117.247986pt;}
.xae{left:119.461384pt;}
.xb5{left:123.972797pt;}
.xf2{left:125.087986pt;}
.xdb{left:131.679991pt;}
.x8{left:133.826652pt;}
.x88{left:134.786652pt;}
.x6d{left:141.253319pt;}
.x99{left:145.279986pt;}
.x6e{left:149.093319pt;}
.x23{left:152.226652pt;}
.x2{left:156.413319pt;}
.x1d{left:160.226652pt;}
.x1c{left:164.546652pt;}
.xe5{left:168.319986pt;}
.x63{left:169.693319pt;}
.x4f{left:172.733319pt;}
.xfb{left:174.906652pt;}
.x55{left:176.639986pt;}
.x94{left:178.106652pt;}
.x2d{left:180.319986pt;}
.x7c{left:181.893319pt;}
.x1e{left:184.066652pt;}
.xd3{left:187.013319pt;}
.x1b{left:188.453319pt;}
.xe7{left:189.599986pt;}
.xcc{left:190.626652pt;}
.x16{left:191.999986pt;}
.x22{left:193.026652pt;}
.xa3{left:194.887769pt;}
.xe2{left:196.386063pt;}
.x66{left:200.733319pt;}
.xa2{left:202.173390pt;}
.x56{left:203.813319pt;}
.x90{left:204.933319pt;}
.xe8{left:207.519986pt;}
.xe4{left:209.748361pt;}
.x8f{left:212.773319pt;}
.x9f{left:213.759986pt;}
.x5{left:215.453319pt;}
.x51{left:217.026652pt;}
.x6f{left:218.493319pt;}
.x13{left:221.693319pt;}
.x57{left:222.693319pt;}
.xc9{left:225.466652pt;}
.xc0{left:227.066652pt;}
.x34{left:232.666652pt;}
.x38{left:234.266652pt;}
.xdf{left:235.291189pt;}
.x86{left:236.733319pt;}
.x39{left:238.106652pt;}
.xf5{left:244.283135pt;}
.xe1{left:245.582028pt;}
.x36{left:248.026652pt;}
.x6c{left:250.906652pt;}
.x3a{left:251.866652pt;}
.xb7{left:253.560403pt;}
.xe{left:255.133319pt;}
.xba{left:256.533008pt;}
.x37{left:258.746652pt;}
.x35{left:263.546652pt;}
.x3b{left:265.946652pt;}
.xcb{left:276.133319pt;}
.xc{left:280.573319pt;}
.xa{left:282.333319pt;}
.xe3{left:283.545245pt;}
.xdd{left:284.446203pt;}
.xdc{left:285.627983pt;}
.x85{left:287.933319pt;}
.xb{left:291.133319pt;}
.x92{left:292.706652pt;}
.x29{left:297.213319pt;}
.xca{left:299.493319pt;}
.x101{left:314.213319pt;}
.xda{left:316.133319pt;}
.x28{left:317.053319pt;}
.x2a{left:319.453319pt;}
.xde{left:325.732440pt;}
.x14{left:327.226652pt;}
.xe0{left:328.406074pt;}
.x77{left:329.346652pt;}
.x1f{left:331.013319pt;}
.xbd{left:333.853319pt;}
.x79{left:338.213319pt;}
.x6{left:340.133319pt;}
.x20{left:341.093319pt;}
.x102{left:343.386652pt;}
.x52{left:344.666652pt;}
.xd4{left:348.613319pt;}
.x21{left:350.053319pt;}
.xeb{left:350.946652pt;}
.xab{left:353.886342pt;}
.x3{left:355.333319pt;}
.x53{left:356.666652pt;}
.x7b{left:358.426652pt;}
.xac{left:359.752148pt;}
.x98{left:360.666652pt;}
.xf4{left:361.786652pt;}
.x103{left:365.853319pt;}
.xe9{left:367.613319pt;}
.xea{left:369.853319pt;}
.xad{left:376.023022pt;}
.x7d{left:380.773319pt;}
.xc4{left:381.693319pt;}
.x15{left:382.586652pt;}
.xe6{left:386.240000pt;}
.xd5{left:400.186652pt;}
.x62{left:402.399986pt;}
.xb1{left:407.199986pt;}
.xc5{left:409.413319pt;}
.xff{left:414.213319pt;}
.xd{left:418.853319pt;}
.x3f{left:422.239986pt;}
.x3c{left:424.159986pt;}
.xaa{left:427.127284pt;}
.xc6{left:431.333319pt;}
.x3d{left:433.626652pt;}
.x3e{left:438.746652pt;}
.xd6{left:446.626652pt;}
.xaf{left:448.920686pt;}
.x6b{left:454.906652pt;}
.x87{left:460.093319pt;}
.xb4{left:462.690733pt;}
.xd7{left:482.493319pt;}
.x7a{left:486.626652pt;}
.x9d{left:489.253319pt;}
.xd8{left:491.386652pt;}
.x24{left:495.746652pt;}
.xf6{left:497.968450pt;}
.x25{left:501.826652pt;}
.x84{left:509.666652pt;}
.x97{left:511.866652pt;}
.x9e{left:516.293319pt;}
.xec{left:521.119986pt;}
.x83{left:526.559986pt;}
.x70{left:530.693319pt;}
.x26{left:532.093319pt;}
.xb3{left:534.939815pt;}
.x81{left:541.626652pt;}
.x27{left:545.919986pt;}
.xb2{left:546.923019pt;}
.xf7{left:549.108257pt;}
.x74{left:550.973319pt;}
.x95{left:553.093319pt;}
.x80{left:556.066652pt;}
.x72{left:557.693319pt;}
.x75{left:563.706652pt;}
.x9{left:565.279986pt;}
.xa5{left:569.615340pt;}
.xf0{left:570.586652pt;}
.xa6{left:576.527871pt;}
.xa4{left:583.108766pt;}
.xb6{left:584.799964pt;}
.xa7{left:586.922576pt;}
.x73{left:590.973319pt;}
.xf1{left:592.026652pt;}
.x8c{left:594.239986pt;}
.xcd{left:597.280000pt;}
.x42{left:602.786652pt;}
.x40{left:604.066652pt;}
.x41{left:605.986652pt;}
.x71{left:610.239986pt;}
.x44{left:613.186652pt;}
.xd0{left:614.879986pt;}
.x45{left:617.666652pt;}
.x43{left:622.626652pt;}
.x46{left:630.146652pt;}
.xf9{left:640.826652pt;}
.x82{left:652.386652pt;}
.x8d{left:662.746652pt;}
.x59{left:671.653319pt;}
.x19{left:674.719986pt;}
.xed{left:678.946652pt;}
.xbf{left:681.693319pt;}
.xfe{left:684.093319pt;}
.xbe{left:685.439986pt;}
.x58{left:686.853319pt;}
.x8a{left:689.573319pt;}
.x5a{left:690.533319pt;}
.x8e{left:692.026652pt;}
.xc3{left:695.613319pt;}
.xc1{left:697.986652pt;}
.xc2{left:702.786652pt;}
.x5d{left:709.826652pt;}
.x5e{left:714.306652pt;}
.x8b{left:715.493319pt;}
.x6a{left:720.319986pt;}
.xc7{left:726.693319pt;}
.x100{left:730.333319pt;}
.x18{left:742.399986pt;}
.xef{left:754.653319pt;}
.xee{left:756.893319pt;}
.xc8{left:770.053319pt;}
.xfd{left:771.493319pt;}
.xa8{left:773.229273pt;}
.x47{left:776.573319pt;}
.x1a{left:778.533319pt;}
.xcf{left:780.573319pt;}
.x48{left:783.613319pt;}
.x4c{left:786.013319pt;}
.x4e{left:787.613319pt;}
.x4b{left:788.573319pt;}
.x49{left:791.933319pt;}
.x4d{left:803.453319pt;}
.x4a{left:814.973319pt;}
.x69{left:815.973319pt;}
.xb0{left:845.847119pt;}
.x61{left:859.453319pt;}
.x67{left:863.906652pt;}
.x50{left:932.453319pt;}
.x54{left:933.573319pt;}
.x4{left:941.413319pt;}
}




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