
    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_da4d99d41cd6cc0599144b61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904000;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_6ba164a7e73eb9273f7e60ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_21136f3eda5462f637c53fe5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_29c0cadf252e3ce1cfb9bb5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4c4a8c1352ce9bef451582b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:3.009000;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_ed7db98174f1f2a440a3901f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c8ca22d79d9d8587d7239bd7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ebdf9e402152183bad209da8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.518000;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_2c78dcb39822648bd4752fff.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ac09e7d0e4703be61d319cf8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_461be05671a2fb526c782406.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.654000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a839eddd5e123aaabfd76fb3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_798052b5fe74ce1014824adc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e68370e622194c47b2d6e569.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.686000;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_92d1d5ce1d0cd8f1ac7cc687.woff2')format("woff");}.fff{font-family:fff;line-height:0.723000;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_e25badf175a486dcdc42a65e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7cb780f2214f065fc2e97db4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_55a2ceca6375e32113c62c3a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2aba9d2447bd8956282f1dcd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.520000;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_4320761328f2786ace12ad6a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_836b40c96bab1acc38a33d6a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7c5ca2171ab7742c32a2e933.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_cf5aeb0dbdb2c9db25027a64.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.528000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_19209bb4e91901019cda2408.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(-0.004479,-0.249960,0.249960,-0.004479,0,0);-ms-transform:matrix(-0.004479,-0.249960,0.249960,-0.004479,0,0);-webkit-transform:matrix(-0.004479,-0.249960,0.249960,-0.004479,0,0);}
.m2{transform:matrix(0.120084,-0.219271,0.219271,0.120084,0,0);-ms-transform:matrix(0.120084,-0.219271,0.219271,0.120084,0,0);-webkit-transform:matrix(0.120084,-0.219271,0.219271,0.120084,0,0);}
.m1{transform:matrix(0.128469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128469,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246676,0.040631,-0.040631,0.246676,0,0);-ms-transform:matrix(0.246676,0.040631,-0.040631,0.246676,0,0);-webkit-transform:matrix(0.246676,0.040631,-0.040631,0.246676,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);}
.v12{vertical-align:-23.754000px;}
.vf{vertical-align:-14.184000px;}
.v9{vertical-align:-9.822000px;}
.v1a{vertical-align:-7.296000px;}
.vc{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:5.976000px;}
.v17{vertical-align:7.050000px;}
.v18{vertical-align:10.290000px;}
.v10{vertical-align:13.620000px;}
.v1{vertical-align:15.822000px;}
.v16{vertical-align:17.112000px;}
.v1b{vertical-align:19.734000px;}
.v6{vertical-align:22.572000px;}
.vb{vertical-align:23.754000px;}
.ve{vertical-align:25.770000px;}
.v19{vertical-align:27.030000px;}
.v1f{vertical-align:32.244000px;}
.v11{vertical-align:37.938000px;}
.v3{vertical-align:40.434000px;}
.v14{vertical-align:41.844000px;}
.v1e{vertical-align:47.202000px;}
.vd{vertical-align:51.420000px;}
.v20{vertical-align:58.044000px;}
.v1c{vertical-align:64.800000px;}
.v5{vertical-align:73.248000px;}
.v2{vertical-align:84.282000px;}
.v7{vertical-align:92.028682px;}
.v8{vertical-align:94.607525px;}
.va{vertical-align:111.930000px;}
.v4{vertical-align:125.286000px;}
.v13{vertical-align:210.108000px;}
.v1d{vertical-align:274.908000px;}
.ls0{letter-spacing:0.000000px;}
.ls8a{letter-spacing:0.000532px;}
.ls39{letter-spacing:0.001050px;}
.lsb{letter-spacing:0.001052px;}
.ls14{letter-spacing:0.001289px;}
.ls5f{letter-spacing:0.001329px;}
.ls55{letter-spacing:0.001611px;}
.ls5d{letter-spacing:0.001641px;}
.ls30{letter-spacing:0.002682px;}
.ls17{letter-spacing:0.002696px;}
.ls25{letter-spacing:0.002706px;}
.ls44{letter-spacing:0.002712px;}
.ls8{letter-spacing:0.003056px;}
.ls2{letter-spacing:0.003181px;}
.ls46{letter-spacing:0.003791px;}
.ls2d{letter-spacing:0.004338px;}
.ls7{letter-spacing:0.006141px;}
.ls5c{letter-spacing:0.007289px;}
.ls3a{letter-spacing:1.819611px;}
.ls3c{letter-spacing:2.350878px;}
.ls70{letter-spacing:2.668328px;}
.ls6d{letter-spacing:2.674328px;}
.ls7a{letter-spacing:2.875066px;}
.ls3f{letter-spacing:2.984915px;}
.ls4a{letter-spacing:2.988532px;}
.ls18{letter-spacing:2.989289px;}
.ls4e{letter-spacing:2.990915px;}
.lsd{letter-spacing:2.992200px;}
.ls8e{letter-spacing:2.994532px;}
.ls81{letter-spacing:3.233412px;}
.ls53{letter-spacing:3.747796px;}
.ls6f{letter-spacing:3.771239px;}
.ls72{letter-spacing:3.777239px;}
.ls8d{letter-spacing:3.864378px;}
.ls69{letter-spacing:3.866519px;}
.ls4f{letter-spacing:3.870378px;}
.ls66{letter-spacing:3.872519px;}
.lsa3{letter-spacing:4.463412px;}
.lsa6{letter-spacing:4.466712px;}
.ls5e{letter-spacing:5.063159px;}
.ls62{letter-spacing:5.069159px;}
.ls4c{letter-spacing:5.089860px;}
.ls6{letter-spacing:5.092888px;}
.ls42{letter-spacing:5.095860px;}
.ls4d{letter-spacing:5.098888px;}
.ls3d{letter-spacing:5.743488px;}
.ls54{letter-spacing:5.749488px;}
.ls43{letter-spacing:5.976532px;}
.ls6a{letter-spacing:5.982532px;}
.ls27{letter-spacing:6.263412px;}
.ls80{letter-spacing:7.005239px;}
.ls74{letter-spacing:7.043428px;}
.ls7d{letter-spacing:7.049428px;}
.ls90{letter-spacing:7.131229px;}
.ls9f{letter-spacing:7.134493px;}
.ls52{letter-spacing:7.137229px;}
.ls28{letter-spacing:7.140493px;}
.ls48{letter-spacing:7.268712px;}
.ls49{letter-spacing:7.274712px;}
.lsa5{letter-spacing:7.448915px;}
.lsa2{letter-spacing:7.454915px;}
.ls95{letter-spacing:9.088332px;}
.ls84{letter-spacing:9.092147px;}
.ls93{letter-spacing:9.094332px;}
.lsbb{letter-spacing:9.427767px;}
.lsba{letter-spacing:9.767412px;}
.ls89{letter-spacing:10.046044px;}
.ls6e{letter-spacing:10.048177px;}
.lsbc{letter-spacing:10.343412px;}
.ls73{letter-spacing:10.904712px;}
.lsb3{letter-spacing:10.907412px;}
.ls50{letter-spacing:10.910712px;}
.ls41{letter-spacing:10.930918px;}
.lsb7{letter-spacing:11.411412px;}
.lsbf{letter-spacing:11.747412px;}
.lsb8{letter-spacing:12.245412px;}
.ls3{letter-spacing:12.328200px;}
.ls1f{letter-spacing:12.377412px;}
.ls26{letter-spacing:13.398493px;}
.ls92{letter-spacing:13.445412px;}
.lsb2{letter-spacing:14.171412px;}
.ls16{letter-spacing:14.540712px;}
.ls22{letter-spacing:14.543412px;}
.ls7c{letter-spacing:14.546698px;}
.ls5b{letter-spacing:14.546712px;}
.lsb9{letter-spacing:14.747412px;}
.lsa9{letter-spacing:15.089412px;}
.lsa8{letter-spacing:15.092712px;}
.lsab{letter-spacing:15.536712px;}
.ls9e{letter-spacing:16.139412px;}
.ls87{letter-spacing:16.235412px;}
.ls91{letter-spacing:16.436915px;}
.ls1d{letter-spacing:16.661412px;}
.ls6c{letter-spacing:16.790915px;}
.ls6b{letter-spacing:16.796915px;}
.ls51{letter-spacing:17.528915px;}
.ls7e{letter-spacing:17.534915px;}
.ls15{letter-spacing:17.539289px;}
.lsb6{letter-spacing:17.675412px;}
.lsa7{letter-spacing:18.074915px;}
.ls38{letter-spacing:18.177249px;}
.ls68{letter-spacing:18.179400px;}
.ls11{letter-spacing:18.179412px;}
.ls1b{letter-spacing:18.179418px;}
.ls9a{letter-spacing:18.181050px;}
.ls78{letter-spacing:18.182688px;}
.ls67{letter-spacing:18.183225px;}
.ls64{letter-spacing:18.185412px;}
.ls21{letter-spacing:18.315239px;}
.lsb5{letter-spacing:18.761412px;}
.lsb1{letter-spacing:18.983412px;}
.ls9d{letter-spacing:19.118915px;}
.ls37{letter-spacing:19.281249px;}
.ls1e{letter-spacing:19.524493px;}
.ls58{letter-spacing:19.589412px;}
.lsc{letter-spacing:19.696861px;}
.lsa4{letter-spacing:19.760915px;}
.lsa1{letter-spacing:19.766915px;}
.ls36{letter-spacing:19.790712px;}
.ls5a{letter-spacing:20.287488px;}
.ls13{letter-spacing:20.293488px;}
.ls79{letter-spacing:21.055066px;}
.ls98{letter-spacing:21.164915px;}
.ls63{letter-spacing:21.166528px;}
.ls12{letter-spacing:21.476142px;}
.ls3b{letter-spacing:21.724878px;}
.lsa{letter-spacing:21.824149px;}
.ls1a{letter-spacing:21.927796px;}
.lsb0{letter-spacing:21.957239px;}
.lsad{letter-spacing:22.448915px;}
.ls61{letter-spacing:22.601159px;}
.ls29{letter-spacing:23.534915px;}
.ls8f{letter-spacing:23.636147px;}
.ls1c{letter-spacing:23.793229px;}
.ls2b{letter-spacing:23.876149px;}
.ls2c{letter-spacing:23.878861px;}
.ls10{letter-spacing:23.929488px;}
.ls2f{letter-spacing:24.533412px;}
.ls2e{letter-spacing:24.538890px;}
.lsaa{letter-spacing:24.632147px;}
.ls96{letter-spacing:24.806915px;}
.ls76{letter-spacing:25.223428px;}
.lsae{letter-spacing:25.317229px;}
.lsaf{letter-spacing:25.320493px;}
.ls57{letter-spacing:25.333488px;}
.ls86{letter-spacing:25.334147px;}
.ls23{letter-spacing:25.593239px;}
.ls60{letter-spacing:26.237159px;}
.lsa0{letter-spacing:26.246915px;}
.ls82{letter-spacing:26.294149px;}
.lsac{letter-spacing:26.294915px;}
.ls31{letter-spacing:26.596335px;}
.lsbd{letter-spacing:26.654712px;}
.ls34{letter-spacing:26.755052px;}
.ls9b{letter-spacing:27.005428px;}
.ls4{letter-spacing:27.063181px;}
.ls9c{letter-spacing:27.188915px;}
.ls94{letter-spacing:27.200915px;}
.ls24{letter-spacing:27.752915px;}
.lsbe{letter-spacing:27.812712px;}
.ls20{letter-spacing:27.876493px;}
.lse{letter-spacing:28.197796px;}
.ls75{letter-spacing:28.859428px;}
.ls2a{letter-spacing:29.300915px;}
.lsf{letter-spacing:30.193488px;}
.ls59{letter-spacing:30.719159px;}
.ls85{letter-spacing:31.388147px;}
.ls32{letter-spacing:31.703412px;}
.ls35{letter-spacing:32.033428px;}
.lsb4{letter-spacing:32.723973px;}
.ls1{letter-spacing:32.727300px;}
.ls88{letter-spacing:33.248915px;}
.ls5{letter-spacing:34.085412px;}
.ls33{letter-spacing:38.454960px;}
.ls45{letter-spacing:38.800177px;}
.ls40{letter-spacing:38.846147px;}
.ls4b{letter-spacing:62.762915px;}
.ls7b{letter-spacing:65.455050px;}
.ls77{letter-spacing:65.456712px;}
.ls8c{letter-spacing:65.754532px;}
.ls7f{letter-spacing:68.438915px;}
.ls56{letter-spacing:71.197488px;}
.ls3e{letter-spacing:73.511159px;}
.ls19{letter-spacing:76.363593px;}
.ls99{letter-spacing:83.636712px;}
.ls83{letter-spacing:84.578915px;}
.ls9{letter-spacing:126.230915px;}
.ls71{letter-spacing:301.778712px;}
.ls47{letter-spacing:332.258712px;}
.ls65{letter-spacing:432.718528px;}
.ls8b{letter-spacing:580.064712px;}
.ls97{letter-spacing:654.548688px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6c{word-spacing:-65.454600px;}
.ws93{word-spacing:-53.568045px;}
.wsaa{word-spacing:-51.820407px;}
.ws68{word-spacing:-42.637126px;}
.ws67{word-spacing:-33.211407px;}
.ws96{word-spacing:-31.771663px;}
.ws6d{word-spacing:-31.706208px;}
.ws23{word-spacing:-28.721478px;}
.ws18{word-spacing:-26.899125px;}
.ws24{word-spacing:-26.626931px;}
.wsa8{word-spacing:-24.459350px;}
.ws73{word-spacing:-20.906199px;}
.wsb1{word-spacing:-19.944013px;}
.wsf{word-spacing:-18.183288px;}
.wsb2{word-spacing:-17.949600px;}
.ws21{word-spacing:-16.743287px;}
.ws105{word-spacing:-16.730196px;}
.wsb7{word-spacing:-16.620011px;}
.wsb8{word-spacing:-14.958000px;}
.ws57{word-spacing:-14.111859px;}
.ws81{word-spacing:-12.465008px;}
.ws86{word-spacing:-12.035147px;}
.wsc5{word-spacing:-11.634008px;}
.ws1{word-spacing:-11.419437px;}
.ws82{word-spacing:-11.218500px;}
.wsa6{word-spacing:-10.624789px;}
.wsc6{word-spacing:-10.470600px;}
.ws89{word-spacing:-9.697186px;}
.wsdb{word-spacing:-4.003188px;}
.wse4{word-spacing:-3.613325px;}
.ws13{word-spacing:-3.586912px;}
.ws9b{word-spacing:-2.932366px;}
.ws108{word-spacing:-2.670548px;}
.ws44{word-spacing:-2.605093px;}
.wsed{word-spacing:-2.361782px;}
.wsf2{word-spacing:-2.361430px;}
.wsf1{word-spacing:-2.360032px;}
.wsee{word-spacing:-2.359291px;}
.wsef{word-spacing:-2.353358px;}
.wseb{word-spacing:-2.351219px;}
.wsf0{word-spacing:-2.350443px;}
.wsec{word-spacing:-2.348304px;}
.wsfc{word-spacing:-2.277820px;}
.wsab{word-spacing:-2.016002px;}
.wsfa{word-spacing:-1.950547px;}
.wsfe{word-spacing:-1.623274px;}
.wsa2{word-spacing:-1.492365px;}
.ws2e{word-spacing:-1.426910px;}
.wsd1{word-spacing:-1.409514px;}
.wse3{word-spacing:-1.361456px;}
.ws47{word-spacing:-1.230546px;}
.ws7{word-spacing:-1.165092px;}
.ws17{word-spacing:-0.772364px;}
.wse7{word-spacing:-0.706910px;}
.wse9{word-spacing:-0.576000px;}
.ws7f{word-spacing:-0.510546px;}
.ws104{word-spacing:-0.445091px;}
.ws11{word-spacing:-0.248727px;}
.ws5a{word-spacing:-0.183273px;}
.ws1c{word-spacing:-0.117818px;}
.wse1{word-spacing:-0.079200px;}
.ws10e{word-spacing:-0.065455px;}
.wsa7{word-spacing:-0.023549px;}
.wsa9{word-spacing:-0.017548px;}
.ws6{word-spacing:0.000000px;}
.ws8b{word-spacing:0.013091px;}
.ws2d{word-spacing:0.144000px;}
.ws45{word-spacing:0.274909px;}
.ws6f{word-spacing:0.340364px;}
.ws5b{word-spacing:0.405819px;}
.ws8{word-spacing:0.471273px;}
.ws38{word-spacing:0.536728px;}
.ws46{word-spacing:0.798546px;}
.wsf6{word-spacing:0.864001px;}
.wsad{word-spacing:0.994910px;}
.ws30{word-spacing:1.060365px;}
.ws8c{word-spacing:1.073860px;}
.ws8a{word-spacing:1.125819px;}
.ws8f{word-spacing:1.180261px;}
.ws35{word-spacing:1.191274px;}
.ws41{word-spacing:1.256728px;}
.wsd2{word-spacing:1.282261px;}
.wsc1{word-spacing:1.322183px;}
.ws9c{word-spacing:1.387638px;}
.ws69{word-spacing:1.453092px;}
.ws66{word-spacing:1.518547px;}
.ws62{word-spacing:1.714911px;}
.ws28{word-spacing:1.780365px;}
.ws26{word-spacing:1.845820px;}
.wsc0{word-spacing:1.911274px;}
.ws34{word-spacing:1.976729px;}
.wse0{word-spacing:2.042184px;}
.wsc9{word-spacing:2.107638px;}
.wsfb{word-spacing:2.238547px;}
.ws2c{word-spacing:2.304002px;}
.ws77{word-spacing:2.364396px;}
.ws71{word-spacing:2.369457px;}
.wsd6{word-spacing:2.434911px;}
.ws5c{word-spacing:2.500366px;}
.ws10{word-spacing:2.565820px;}
.ws4e{word-spacing:2.631275px;}
.ws2b{word-spacing:2.696730px;}
.ws111{word-spacing:2.775275px;}
.ws1a{word-spacing:2.893093px;}
.wsfd{word-spacing:2.958548px;}
.ws48{word-spacing:3.024003px;}
.wsbf{word-spacing:3.088260px;}
.ws8e{word-spacing:3.089457px;}
.ws3e{word-spacing:3.154912px;}
.ws52{word-spacing:3.220366px;}
.wscb{word-spacing:3.285821px;}
.ws5f{word-spacing:3.351276px;}
.ws27{word-spacing:3.416730px;}
.ws43{word-spacing:3.482185px;}
.wsa1{word-spacing:3.607236px;}
.ws2{word-spacing:3.613094px;}
.wscc{word-spacing:3.628261px;}
.ws102{word-spacing:3.633192px;}
.ws70{word-spacing:3.648983px;}
.ws3{word-spacing:3.678549px;}
.ws75{word-spacing:3.744003px;}
.wsd4{word-spacing:3.809458px;}
.ws36{word-spacing:3.874912px;}
.wsc8{word-spacing:3.940367px;}
.ws7b{word-spacing:4.005822px;}
.ws3c{word-spacing:4.136731px;}
.wsb6{word-spacing:4.145332px;}
.ws0{word-spacing:4.162913px;}
.ws80{word-spacing:4.202185px;}
.ws106{word-spacing:4.215276px;}
.wsb5{word-spacing:4.267640px;}
.ws99{word-spacing:4.333095px;}
.ws40{word-spacing:4.464004px;}
.ws5d{word-spacing:4.483200px;}
.ws32{word-spacing:4.529458px;}
.ws4f{word-spacing:4.594913px;}
.wsde{word-spacing:4.660368px;}
.ws7e{word-spacing:4.725822px;}
.wsa{word-spacing:4.791277px;}
.ws9f{word-spacing:4.922186px;}
.ws9e{word-spacing:4.987641px;}
.wsd0{word-spacing:5.053095px;}
.ws76{word-spacing:5.118550px;}
.wsc2{word-spacing:5.249459px;}
.wsd8{word-spacing:5.314914px;}
.wsd{word-spacing:5.379825px;}
.ws37{word-spacing:5.380368px;}
.ws8d{word-spacing:5.445823px;}
.wsac{word-spacing:5.511277px;}
.ws1b{word-spacing:5.576732px;}
.wsc3{word-spacing:5.642187px;}
.ws85{word-spacing:5.669686px;}
.ws3d{word-spacing:5.707641px;}
.ws39{word-spacing:5.838550px;}
.ws78{word-spacing:5.864732px;}
.ws12{word-spacing:5.904005px;}
.ws4c{word-spacing:5.969460px;}
.wsca{word-spacing:6.028261px;}
.ws51{word-spacing:6.034914px;}
.ws10c{word-spacing:6.048005px;}
.wsb{word-spacing:6.100369px;}
.ws5{word-spacing:6.121021px;}
.wsb9{word-spacing:6.165823px;}
.ws6a{word-spacing:6.231278px;}
.ws6b{word-spacing:6.296733px;}
.ws59{word-spacing:6.362187px;}
.wsa0{word-spacing:6.427642px;}
.ws2f{word-spacing:6.493096px;}
.ws7c{word-spacing:6.558551px;}
.ws1e{word-spacing:6.624006px;}
.ws103{word-spacing:6.637096px;}
.wsf8{word-spacing:6.689460px;}
.ws4{word-spacing:6.702551px;}
.ws1d{word-spacing:6.754915px;}
.ws10d{word-spacing:6.768006px;}
.ws4d{word-spacing:6.820369px;}
.ws50{word-spacing:6.885824px;}
.ws53{word-spacing:6.951279px;}
.wscf{word-spacing:7.016733px;}
.wsc{word-spacing:7.082188px;}
.ws2a{word-spacing:7.147642px;}
.ws33{word-spacing:7.278552px;}
.ws72{word-spacing:7.337383px;}
.ws74{word-spacing:7.344006px;}
.wse{word-spacing:7.409461px;}
.ws88{word-spacing:7.414757px;}
.ws87{word-spacing:7.445283px;}
.ws42{word-spacing:7.474915px;}
.ws61{word-spacing:7.540370px;}
.ws31{word-spacing:7.605825px;}
.wsf9{word-spacing:7.671279px;}
.ws7a{word-spacing:7.736734px;}
.wsd7{word-spacing:7.802188px;}
.ws7d{word-spacing:7.867643px;}
.ws9{word-spacing:7.933098px;}
.ws54{word-spacing:7.998552px;}
.wsaf{word-spacing:8.064007px;}
.ws84{word-spacing:8.122261px;}
.ws83{word-spacing:8.129461px;}
.ws14{word-spacing:8.194916px;}
.ws1f{word-spacing:8.260371px;}
.wse5{word-spacing:8.325825px;}
.wsdd{word-spacing:8.456734px;}
.wsb4{word-spacing:8.522189px;}
.wsb3{word-spacing:8.587644px;}
.wse6{word-spacing:8.718553px;}
.ws5e{word-spacing:8.784007px;}
.ws56{word-spacing:8.914917px;}
.ws4b{word-spacing:9.438553px;}
.ws29{word-spacing:9.569463px;}
.ws10f{word-spacing:9.609405px;}
.ws55{word-spacing:9.634917px;}
.wsc7{word-spacing:9.765826px;}
.ws3b{word-spacing:9.896736px;}
.ws3f{word-spacing:9.962190px;}
.ws10a{word-spacing:9.996916px;}
.ws16{word-spacing:10.027645px;}
.ws101{word-spacing:10.129424px;}
.ws58{word-spacing:10.158554px;}
.ws9a{word-spacing:10.224009px;}
.wsd9{word-spacing:10.289463px;}
.ws9d{word-spacing:10.354918px;}
.wsf7{word-spacing:10.420372px;}
.ws109{word-spacing:10.450084px;}
.wsd3{word-spacing:10.485827px;}
.ws112{word-spacing:10.508621px;}
.ws91{word-spacing:10.551282px;}
.wsdc{word-spacing:10.878555px;}
.ws107{word-spacing:10.881186px;}
.ws90{word-spacing:10.922621px;}
.wsc4{word-spacing:11.009464px;}
.wsd5{word-spacing:11.140373px;}
.ws113{word-spacing:11.154202px;}
.wsea{word-spacing:11.205828px;}
.wsb0{word-spacing:11.336737px;}
.ws4a{word-spacing:11.402191px;}
.ws92{word-spacing:11.533101px;}
.wse8{word-spacing:11.598555px;}
.ws3a{word-spacing:11.729464px;}
.ws49{word-spacing:11.794919px;}
.wsff{word-spacing:11.991283px;}
.wsba{word-spacing:12.056737px;}
.ws110{word-spacing:12.135283px;}
.wsae{word-spacing:12.187647px;}
.ws15{word-spacing:12.449465px;}
.wsda{word-spacing:13.104011px;}
.ws60{word-spacing:13.234920px;}
.ws19{word-spacing:13.431284px;}
.ws65{word-spacing:14.085830px;}
.ws100{word-spacing:14.360739px;}
.ws22{word-spacing:14.544012px;}
.ws10b{word-spacing:14.740376px;}
.ws79{word-spacing:15.264013px;}
.ws20{word-spacing:39.639306px;}
.wsa4{word-spacing:65.183971px;}
.ws25{word-spacing:69.937725px;}
.ws95{word-spacing:75.347971px;}
.wsa3{word-spacing:81.725971px;}
.wsf3{word-spacing:88.634136px;}
.wsf4{word-spacing:99.239052px;}
.ws94{word-spacing:102.035971px;}
.wsf5{word-spacing:103.958766px;}
.wsbc{word-spacing:108.949198px;}
.wsbb{word-spacing:152.179198px;}
.wse2{word-spacing:164.971887px;}
.wsbe{word-spacing:178.180512px;}
.wsce{word-spacing:287.527211px;}
.ws98{word-spacing:309.089712px;}
.ws97{word-spacing:374.544312px;}
.wsa5{word-spacing:410.937070px;}
.wscd{word-spacing:415.545074px;}
.wsbd{word-spacing:476.391670px;}
.ws64{word-spacing:547.309222px;}
.ws63{word-spacing:575.440319px;}
.ws6e{word-spacing:666.210010px;}
.wsdf{word-spacing:1009.257568px;}
._48{margin-left:-1720.547485px;}
._3f{margin-left:-317.001600px;}
._43{margin-left:-296.760193px;}
._42{margin-left:-264.168000px;}
._3e{margin-left:-244.080159px;}
._41{margin-left:-203.400132px;}
._39{margin-left:-198.126000px;}
._47{margin-left:-184.917600px;}
._38{margin-left:-152.550099px;}
._46{margin-left:-142.380093px;}
._10{margin-left:-35.476393px;}
._18{margin-left:-34.298210px;}
._11{margin-left:-33.120028px;}
._f{margin-left:-32.072754px;}
._15{margin-left:-29.960241px;}
._e{margin-left:-25.574782px;}
._1e{margin-left:-13.513170px;}
._1d{margin-left:-10.687066px;}
._c{margin-left:-8.091257px;}
._4{margin-left:-6.218187px;}
._1{margin-left:-4.468879px;}
._5{margin-left:-3.338185px;}
._3{margin-left:-2.094547px;}
._a{margin-left:-1.047274px;}
._17{width:1.029307px;}
._9{width:2.225456px;}
._12{width:3.796367px;}
._0{width:5.936912px;}
._3a{width:7.368295px;}
._45{width:9.068647px;}
._4c{width:10.120385px;}
._4a{width:11.712938px;}
._4b{width:15.010421px;}
._2a{width:16.054343px;}
._25{width:17.149105px;}
._6{width:18.589106px;}
._19{width:19.654346px;}
._21{width:21.796382px;}
._29{width:22.974565px;}
._49{width:24.021838px;}
._2{width:25.069112px;}
._33{width:26.163874px;}
._d{width:27.490932px;}
._14{width:28.495126px;}
._31{width:29.978207px;}
._32{width:31.483663px;}
._8{width:32.727300px;}
._16{width:34.036392px;}
._b{width:36.261848px;}
._36{width:37.850725px;}
._34{width:39.076396px;}
._37{width:40.144712px;}
._7{width:41.319819px;}
._13{width:43.069127px;}
._40{width:44.290389px;}
._4d{width:45.932634px;}
._2e{width:47.276187px;}
._3c{width:48.734155px;}
._26{width:51.840043px;}
._30{width:53.672772px;}
._1f{width:56.945502px;}
._22{width:59.170958px;}
._1b{width:60.545505px;}
._28{width:62.836416px;}
._59{width:65.454600px;}
._20{width:66.894601px;}
._24{width:74.880062px;}
._3d{width:76.382182px;}
._35{width:80.697600px;}
._3b{width:86.527645px;}
._23{width:89.672802px;}
._2f{width:96.836850px;}
._44{width:103.042406px;}
._50{width:115.746083px;}
._4f{width:127.056749px;}
._55{width:137.667305px;}
._53{width:142.852008px;}
._54{width:158.172749px;}
._51{width:163.594712px;}
._52{width:169.491194px;}
._58{width:173.498915px;}
._57{width:200.132675px;}
._56{width:206.882116px;}
._4e{width:217.490922px;}
._2b{width:1493.412154px;}
._2d{width:1615.681346px;}
._1a{width:2100.569023px;}
._1c{width:2116.278127px;}
._2c{width:2124.656316px;}
._27{width:2235.741534px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs14{font-size:37.800000px;}
.fs9{font-size:40.500000px;}
.fs12{font-size:42.000027px;}
.fs18{font-size:42.430944px;}
.fs7{font-size:45.000029px;}
.fs3{font-size:47.820600px;}
.fs13{font-size:50.400021px;}
.fs16{font-size:53.999998px;}
.fs10{font-size:54.000000px;}
.fs8{font-size:54.000023px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.000039px;}
.fs17{font-size:62.999982px;}
.fsd{font-size:64.800000px;}
.fs0{font-size:65.454600px;}
.fs11{font-size:65.999988px;}
.fs4{font-size:71.731200px;}
.fsf{font-size:72.000030px;}
.fsb{font-size:72.000047px;}
.fs15{font-size:79.199910px;}
.fs2{font-size:86.077200px;}
.fsc{font-size:86.400036px;}
.fs6{font-size:98.181900px;}
.fs5{font-size:102.253647px;}
.y0{bottom:0.000000px;}
.y190{bottom:2.651676px;}
.y159{bottom:2.743125px;}
.y158{bottom:3.156753px;}
.yb0{bottom:15.593302px;}
.yb6{bottom:15.681790px;}
.yb3{bottom:15.682034px;}
.yaf{bottom:16.213746px;}
.yb5{bottom:16.302234px;}
.yb2{bottom:16.302477px;}
.y134{bottom:24.949283px;}
.y13a{bottom:25.090864px;}
.y137{bottom:25.091254px;}
.y133{bottom:25.941994px;}
.y139{bottom:26.083574px;}
.y136{bottom:26.083963px;}
.yae{bottom:29.713755px;}
.yb4{bottom:29.802243px;}
.yb1{bottom:29.802486px;}
.y24{bottom:40.207500px;}
.y187{bottom:40.368404px;}
.y18d{bottom:40.450993px;}
.y18a{bottom:40.451220px;}
.y186{bottom:40.947485px;}
.y18c{bottom:41.030074px;}
.y189{bottom:41.030301px;}
.y132{bottom:47.542008px;}
.y138{bottom:47.683589px;}
.y135{bottom:47.683977px;}
.y1e1{bottom:49.121777px;}
.y185{bottom:53.547493px;}
.y18b{bottom:53.630082px;}
.y188{bottom:53.630309px;}
.y14f{bottom:56.210530px;}
.y155{bottom:56.328514px;}
.y152{bottom:56.328839px;}
.y14e{bottom:57.037788px;}
.y154{bottom:57.155772px;}
.y151{bottom:57.156096px;}
.y14d{bottom:75.037800px;}
.y153{bottom:75.155784px;}
.y150{bottom:75.156108px;}
.y1e0{bottom:84.477343px;}
.y1de{bottom:85.039500px;}
.y53{bottom:87.003000px;}
.yb8{bottom:88.752274px;}
.y21e{bottom:88.771500px;}
.y257{bottom:92.823000px;}
.y1a3{bottom:95.553000px;}
.yac{bottom:96.703500px;}
.y98{bottom:98.098500px;}
.y7b{bottom:98.232000px;}
.ycf{bottom:98.868000px;}
.y118{bottom:99.940500px;}
.y291{bottom:101.031000px;}
.y182{bottom:101.061000px;}
.y1e2{bottom:101.852570px;}
.yb7{bottom:102.252281px;}
.y1dd{bottom:108.411000px;}
.y18f{bottom:109.437238px;}
.y192{bottom:109.437623px;}
.y52{bottom:110.376000px;}
.y1ce{bottom:110.641500px;}
.y21d{bottom:112.143000px;}
.y1c7{bottom:112.302000px;}
.y279{bottom:112.848000px;}
.y260{bottom:115.281000px;}
.y256{bottom:116.194500px;}
.y1a2{bottom:118.926000px;}
.yab{bottom:120.075000px;}
.y97{bottom:121.470000px;}
.y7a{bottom:121.605000px;}
.y18e{bottom:122.037244px;}
.y191{bottom:122.037630px;}
.yce{bottom:122.239500px;}
.y117{bottom:123.312000px;}
.y181{bottom:124.432500px;}
.y290{bottom:131.127000px;}
.y1dc{bottom:131.784000px;}
.y51{bottom:133.747500px;}
.y1c6{bottom:135.675000px;}
.y278{bottom:136.219500px;}
.y78{bottom:138.409500px;}
.y25f{bottom:138.652500px;}
.y255{bottom:139.567500px;}
.y13c{bottom:142.003639px;}
.y1a1{bottom:142.297500px;}
.y79{bottom:143.017500px;}
.yaa{bottom:143.448000px;}
.ycd{bottom:145.612500px;}
.y96{bottom:145.678500px;}
.y21c{bottom:146.083500px;}
.y116{bottom:146.685000px;}
.y180{bottom:147.805500px;}
.y77{bottom:148.660500px;}
.y157{bottom:153.755826px;}
.y28f{bottom:154.500000px;}
.y1cd{bottom:155.128500px;}
.y1db{bottom:155.155500px;}
.y50{bottom:157.119000px;}
.yea{bottom:158.667000px;}
.y1c5{bottom:159.046500px;}
.y277{bottom:159.592500px;}
.y1fc{bottom:160.749000px;}
.y13b{bottom:163.603650px;}
.y93{bottom:165.309000px;}
.ya9{bottom:166.819500px;}
.ycc{bottom:168.984000px;}
.y115{bottom:170.056500px;}
.y17f{bottom:171.177000px;}
.y156{bottom:171.755835px;}
.y76{bottom:175.005000px;}
.y1da{bottom:178.528500px;}
.y4f{bottom:180.492000px;}
.y95{bottom:180.855000px;}
.ye9{bottom:182.040000px;}
.y1c4{bottom:182.419500px;}
.y276{bottom:182.964000px;}
.y1fb{bottom:184.120500px;}
.y28e{bottom:184.596000px;}
.y1a0{bottom:184.657500px;}
.y25e{bottom:185.397000px;}
.y94{bottom:185.763000px;}
.y254{bottom:186.312000px;}
.y19f{bottom:189.042000px;}
.ya8{bottom:190.192500px;}
.y2ad{bottom:192.967500px;}
.y21b{bottom:193.041000px;}
.y17e{bottom:194.550000px;}
.y110{bottom:196.057500px;}
.y75{bottom:198.376500px;}
.y8a{bottom:200.971504px;}
.y8b{bottom:200.971604px;}
.y8c{bottom:201.616414px;}
.y10f{bottom:201.919500px;}
.y1c3{bottom:205.791000px;}
.y275{bottom:206.337000px;}
.y20f{bottom:206.374500px;}
.y1fa{bottom:207.493500px;}
.y28d{bottom:207.969000px;}
.y19e{bottom:208.030500px;}
.y25d{bottom:208.770000px;}
.y253{bottom:209.683500px;}
.y19d{bottom:212.415000px;}
.ya7{bottom:213.564000px;}
.yc{bottom:215.500500px;}
.ycb{bottom:215.728500px;}
.y21a{bottom:216.414000px;}
.y14b{bottom:216.580500px;}
.y17d{bottom:217.921500px;}
.y92{bottom:218.812500px;}
.y74{bottom:221.749500px;}
.y1d9{bottom:222.742500px;}
.y89{bottom:223.978574px;}
.y107{bottom:224.505000px;}
.y10e{bottom:225.291000px;}
.y114{bottom:225.292500px;}
.y4e{bottom:227.236500px;}
.y1c2{bottom:229.164000px;}
.y274{bottom:229.708500px;}
.y20e{bottom:229.746000px;}
.y1f9{bottom:230.865000px;}
.y10d{bottom:231.268500px;}
.y113{bottom:231.270000px;}
.y19c{bottom:231.402000px;}
.y252{bottom:233.056500px;}
.y106{bottom:234.978000px;}
.y19b{bottom:235.786500px;}
.ya6{bottom:236.937000px;}
.y10c{bottom:237.247500px;}
.y28c{bottom:238.066500px;}
.yca{bottom:239.101500px;}
.y219{bottom:239.785500px;}
.y14a{bottom:239.953500px;}
.y112{bottom:240.705000px;}
.y17c{bottom:241.294500px;}
.y91{bottom:242.184000px;}
.y105{bottom:244.795500px;}
.y111{bottom:244.797000px;}
.y73{bottom:245.121000px;}
.y24a{bottom:249.255000px;}
.y10b{bottom:250.567500px;}
.y4d{bottom:250.608000px;}
.y1c1{bottom:252.535500px;}
.y273{bottom:253.081500px;}
.y20d{bottom:253.119000px;}
.y25c{bottom:253.257000px;}
.y1f8{bottom:254.238000px;}
.y104{bottom:254.614500px;}
.y10a{bottom:254.952000px;}
.y2a3{bottom:255.835500px;}
.y251{bottom:256.428000px;}
.ya5{bottom:260.308500px;}
.y1d7{bottom:261.058500px;}
.y28b{bottom:261.438000px;}
.yc9{bottom:262.473000px;}
.y149{bottom:263.325000px;}
.y103{bottom:264.433500px;}
.y17b{bottom:264.666000px;}
.y90{bottom:265.557000px;}
.y1f0{bottom:266.755500px;}
.y72{bottom:268.494000px;}
.y249{bottom:272.628000px;}
.y109{bottom:273.940500px;}
.y4c{bottom:273.981000px;}
.y272{bottom:276.453000px;}
.y20c{bottom:276.490500px;}
.y1f7{bottom:277.609500px;}
.y108{bottom:278.325000px;}
.y250{bottom:279.801000px;}
.y218{bottom:281.091000px;}
.y19a{bottom:282.531000px;}
.ya4{bottom:283.681500px;}
.y1d8{bottom:284.047575px;}
.yc8{bottom:285.846000px;}
.y148{bottom:286.698000px;}
.y8f{bottom:288.928500px;}
.y1ef{bottom:290.127000px;}
.y28a{bottom:291.535500px;}
.y71{bottom:291.865500px;}
.y102{bottom:293.233500px;}
.y4b{bottom:297.352500px;}
.y1c0{bottom:299.280000px;}
.y271{bottom:299.826000px;}
.y20b{bottom:299.863500px;}
.yb{bottom:299.902500px;}
.y2a2{bottom:300.322500px;}
.y217{bottom:304.462500px;}
.y199{bottom:305.904000px;}
.ya3{bottom:307.053000px;}
.y147{bottom:310.069500px;}
.y17a{bottom:311.410500px;}
.y8e{bottom:312.301500px;}
.y289{bottom:314.907000px;}
.y70{bottom:315.238500px;}
.y1f6{bottom:318.915000px;}
.y248{bottom:319.372500px;}
.y101{bottom:319.551000px;}
.yc7{bottom:319.786500px;}
.y4a{bottom:320.725500px;}
.y1bf{bottom:322.653000px;}
.ya{bottom:323.275500px;}
.y24f{bottom:324.288000px;}
.y2a8{bottom:327.097500px;}
.y198{bottom:329.275500px;}
.ya2{bottom:330.426000px;}
.y20a{bottom:333.804000px;}
.y179{bottom:334.783500px;}
.y1ee{bottom:336.871500px;}
.y100{bottom:337.062000px;}
.y288{bottom:338.280000px;}
.yff{bottom:338.539500px;}
.y6f{bottom:338.610000px;}
.y1f5{bottom:342.286500px;}
.y247{bottom:342.744000px;}
.yfe{bottom:342.924000px;}
.y146{bottom:344.010000px;}
.y49{bottom:344.097000px;}
.y1be{bottom:346.024500px;}
.y270{bottom:346.570500px;}
.y130{bottom:350.074500px;}
.y197{bottom:352.648500px;}
.y1e5{bottom:354.147021px;}
.y8d{bottom:356.788500px;}
.y178{bottom:358.155000px;}
.y1ed{bottom:360.244500px;}
.y6e{bottom:361.983000px;}
.y246{bottom:366.117000px;}
.yfd{bottom:366.295500px;}
.yc6{bottom:366.742500px;}
.y287{bottom:368.376000px;}
.y1bd{bottom:369.397500px;}
.y26f{bottom:369.942000px;}
.y12f{bottom:373.446000px;}
.y1e4{bottom:375.449521px;}
.y196{bottom:376.020000px;}
.ya1{bottom:377.170500px;}
.y209{bottom:380.761500px;}
.y1ec{bottom:383.616000px;}
.y6d{bottom:385.354500px;}
.y176{bottom:390.018000px;}
.yc5{bottom:390.115500px;}
.y145{bottom:390.280500px;}
.y48{bottom:390.841500px;}
.y286{bottom:391.749000px;}
.y26e{bottom:393.315000px;}
.y88{bottom:395.104500px;}
.yfa{bottom:395.878500px;}
.y1e6{bottom:396.233271px;}
.y12e{bottom:396.819000px;}
.y195{bottom:399.393000px;}
.ya0{bottom:400.542000px;}
.y16a{bottom:401.704500px;}
.y1bc{bottom:403.338000px;}
.y208{bottom:404.133000px;}
.y1eb{bottom:406.989000px;}
.y245{bottom:407.421000px;}
.y6c{bottom:408.727500px;}
.y9{bottom:410.427000px;}
.y23{bottom:410.853000px;}
.y175{bottom:413.389500px;}
.yc4{bottom:413.487000px;}
.y144{bottom:413.652000px;}
.y47{bottom:414.214500px;}
.y16f{bottom:414.471000px;}
.y26d{bottom:416.686500px;}
.yf4{bottom:418.465500px;}
.yf9{bottom:419.251500px;}
.y174{bottom:419.368500px;}
.y12d{bottom:420.190500px;}
.y285{bottom:421.846500px;}
.y194{bottom:422.764500px;}
.y9f{bottom:423.915000px;}
.y164{bottom:424.290000px;}
.y16e{bottom:424.944000px;}
.y169{bottom:425.076000px;}
.yf8{bottom:425.229000px;}
.y173{bottom:425.346000px;}
.y207{bottom:427.506000px;}
.yf3{bottom:428.937000px;}
.y1ea{bottom:430.360500px;}
.y244{bottom:430.794000px;}
.y168{bottom:431.053500px;}
.yf7{bottom:431.206500px;}
.yc3{bottom:431.217000px;}
.y6b{bottom:432.099000px;}
.y22{bottom:434.226000px;}
.yfb{bottom:434.665500px;}
.y163{bottom:434.763000px;}
.yc2{bottom:436.860000px;}
.y143{bottom:437.025000px;}
.y167{bottom:437.031000px;}
.y46{bottom:437.586000px;}
.yf2{bottom:438.756000px;}
.y177{bottom:440.490000px;}
.y172{bottom:443.050500px;}
.y12c{bottom:443.563500px;}
.y162{bottom:444.580500px;}
.y284{bottom:445.218000px;}
.y9e{bottom:447.286500px;}
.yf1{bottom:448.573500px;}
.yf6{bottom:448.911000px;}
.yfc{bottom:448.912500px;}
.y1bb{bottom:450.295500px;}
.y206{bottom:450.877500px;}
.y161{bottom:454.399500px;}
.y166{bottom:454.737000px;}
.y6a{bottom:455.472000px;}
.y26c{bottom:456.264000px;}
.yf0{bottom:458.392500px;}
.y45{bottom:460.959000px;}
.y243{bottom:463.530144px;}
.y160{bottom:464.217000px;}
.y1e9{bottom:464.301000px;}
.yc1{bottom:464.686500px;}
.y171{bottom:466.423500px;}
.y12b{bottom:466.935000px;}
.y193{bottom:467.251500px;}
.y9d{bottom:470.659500px;}
.yf5{bottom:472.284000px;}
.y1ba{bottom:473.667000px;}
.y21{bottom:473.802000px;}
.y16d{bottom:474.036000px;}
.y205{bottom:474.250500px;}
.y283{bottom:475.315500px;}
.ybf{bottom:475.911000px;}
.y8{bottom:476.319000px;}
.y165{bottom:478.108500px;}
.y142{bottom:478.126500px;}
.y242{bottom:478.681692px;}
.y69{bottom:478.843500px;}
.y141{bottom:483.769500px;}
.y44{bottom:484.330500px;}
.yc0{bottom:486.981000px;}
.yef{bottom:487.192500px;}
.y170{bottom:489.795000px;}
.y15f{bottom:493.017000px;}
.y16b{bottom:493.018500px;}
.y241{bottom:493.832266px;}
.y9c{bottom:494.031000px;}
.y1b9{bottom:497.040000px;}
.y282{bottom:498.687000px;}
.y16c{bottom:502.836000px;}
.y1e8{bottom:504.565500px;}
.y2ae{bottom:504.660000px;}
.y184{bottom:505.567500px;}
.y140{bottom:507.141000px;}
.y240{bottom:508.983814px;}
.y26b{bottom:511.855500px;}
.yee{bottom:513.511500px;}
.y12a{bottom:513.679500px;}
.y1b8{bottom:516.027000px;}
.y9b{bottom:517.404000px;}
.y204{bottom:518.736000px;}
.y1b7{bottom:520.411500px;}
.y23f{bottom:524.134389px;}
.y68{bottom:525.588000px;}
.ybe{bottom:526.087500px;}
.y3c{bottom:527.904000px;}
.y281{bottom:528.784500px;}
.y20{bottom:529.395000px;}
.y13f{bottom:530.514000px;}
.y15e{bottom:531.022500px;}
.y43{bottom:531.075000px;}
.y26a{bottom:535.228500px;}
.yed{bottom:536.883000px;}
.y129{bottom:537.052500px;}
.y23e{bottom:539.285936px;}
.y1b6{bottom:539.400000px;}
.y9a{bottom:540.775500px;}
.y7{bottom:542.211000px;}
.y1b5{bottom:543.784500px;}
.y67{bottom:548.961000px;}
.ybd{bottom:549.460500px;}
.y280{bottom:552.156000px;}
.y1f{bottom:552.766500px;}
.y1cc{bottom:553.248000px;}
.y13e{bottom:553.885500px;}
.y15d{bottom:554.394000px;}
.y23d{bottom:554.436511px;}
.y42{bottom:554.448000px;}
.y269{bottom:558.600000px;}
.y128{bottom:560.424000px;}
.y1e7{bottom:563.340000px;}
.y3b{bottom:567.640500px;}
.y23c{bottom:569.588058px;}
.y66{bottom:572.332500px;}
.ybc{bottom:572.832000px;}
.y1e{bottom:576.139500px;}
.y1cb{bottom:576.619500px;}
.y15c{bottom:577.767000px;}
.y41{bottom:577.819500px;}
.yec{bottom:581.370000px;}
.y268{bottom:581.973000px;}
.y27f{bottom:582.253500px;}
.y127{bottom:583.797000px;}
.y23b{bottom:584.738633px;}
.y99{bottom:585.262500px;}
.y25b{bottom:588.760500px;}
.y1b4{bottom:590.529000px;}
.y1d6{bottom:594.436500px;}
.y65{bottom:595.705500px;}
.y2a1{bottom:595.890000px;}
.ybb{bottom:596.205000px;}
.y13d{bottom:598.372500px;}
.y1d{bottom:599.511000px;}
.y23a{bottom:599.890180px;}
.y1ca{bottom:599.992500px;}
.y15b{bottom:601.138500px;}
.y40{bottom:601.192500px;}
.y1e3{bottom:601.656000px;}
.y1df{bottom:601.657573px;}
.y27e{bottom:605.626500px;}
.y126{bottom:607.168500px;}
.y3a{bottom:607.375500px;}
.y25a{bottom:612.133500px;}
.y1b3{bottom:613.900500px;}
.y239{bottom:615.040755px;}
.y64{bottom:619.077000px;}
.yba{bottom:619.576500px;}
.y1c{bottom:622.884000px;}
.y1c9{bottom:623.364000px;}
.y267{bottom:628.717500px;}
.y27d{bottom:628.998000px;}
.y6{bottom:629.362500px;}
.y2a0{bottom:629.830500px;}
.y216{bottom:630.174000px;}
.y238{bottom:630.192302px;}
.ye8{bottom:633.189000px;}
.y259{bottom:635.505000px;}
.y131{bottom:636.688500px;}
.y1b2{bottom:637.273500px;}
.y125{bottom:641.109000px;}
.y63{bottom:642.450000px;}
.y237{bottom:645.342877px;}
.y15a{bottom:645.625500px;}
.y1b{bottom:646.255500px;}
.y39{bottom:647.112000px;}
.y3f{bottom:647.937000px;}
.y266{bottom:652.089000px;}
.y5{bottom:652.735500px;}
.y1d5{bottom:653.947500px;}
.y1b1{bottom:656.260500px;}
.ye7{bottom:656.560500px;}
.y24e{bottom:659.791500px;}
.y236{bottom:660.494424px;}
.y1b0{bottom:660.645000px;}
.yb9{bottom:664.063500px;}
.y62{bottom:665.821500px;}
.y1c8{bottom:667.851000px;}
.y27c{bottom:668.575500px;}
.y1a{bottom:669.628500px;}
.y29f{bottom:670.093500px;}
.y38{bottom:670.483500px;}
.y3e{bottom:671.308500px;}
.y265{bottom:675.462000px;}
.y235{bottom:675.644999px;}
.y1f4{bottom:675.921000px;}
.y87{bottom:676.258500px;}
.y215{bottom:677.131500px;}
.ye6{bottom:679.933500px;}
.y258{bottom:679.992000px;}
.y24d{bottom:683.164500px;}
.y14c{bottom:683.941500px;}
.y1af{bottom:684.018000px;}
.y124{bottom:687.379500px;}
.y2a7{bottom:688.813500px;}
.y61{bottom:689.194500px;}
.y1d4{bottom:690.496500px;}
.y234{bottom:690.796546px;}
.y19{bottom:693.000000px;}
.y37{bottom:693.856500px;}
.y264{bottom:698.833500px;}
.y1f3{bottom:699.292500px;}
.y86{bottom:699.630000px;}
.y214{bottom:700.503000px;}
.yad{bottom:702.379500px;}
.y1ae{bottom:703.005000px;}
.ye5{bottom:703.305000px;}
.y233{bottom:705.947121px;}
.y1ad{bottom:707.389500px;}
.y2ac{bottom:710.266500px;}
.y123{bottom:710.751000px;}
.y3d{bottom:710.886000px;}
.y27b{bottom:715.713000px;}
.y36{bottom:717.228000px;}
.y4{bottom:718.627500px;}
.y232{bottom:721.098669px;}
.y263{bottom:722.206500px;}
.y85{bottom:723.003000px;}
.y213{bottom:723.876000px;}
.y29e{bottom:725.686500px;}
.y1d3{bottom:726.634500px;}
.ye4{bottom:726.678000px;}
.y24c{bottom:729.909000px;}
.y1ac{bottom:730.762500px;}
.y18{bottom:732.577500px;}
.y122{bottom:734.124000px;}
.y2a6{bottom:735.558000px;}
.y60{bottom:735.939000px;}
.y231{bottom:736.249243px;}
.y1f2{bottom:740.598000px;}
.y35{bottom:740.601000px;}
.y3{bottom:741.999000px;}
.y262{bottom:745.578000px;}
.y84{bottom:746.374500px;}
.y212{bottom:747.247500px;}
.y29d{bottom:749.059500px;}
.ye3{bottom:750.049500px;}
.y230{bottom:751.399818px;}
.y2ab{bottom:752.259000px;}
.y1ab{bottom:754.134000px;}
.y121{bottom:757.495500px;}
.y2a5{bottom:758.931000px;}
.y5f{bottom:759.310500px;}
.y1f1{bottom:763.969500px;}
.y34{bottom:763.972500px;}
.y29{bottom:766.479000px;}
.y22f{bottom:766.551366px;}
.y1d2{bottom:773.379000px;}
.y24b{bottom:774.394500px;}
.y27a{bottom:774.487500px;}
.y2aa{bottom:775.632000px;}
.y29c{bottom:779.157000px;}
.y120{bottom:780.868500px;}
.y22e{bottom:781.701940px;}
.y5e{bottom:782.683500px;}
.y2{bottom:786.631500px;}
.y17{bottom:788.170500px;}
.y211{bottom:788.553000px;}
.y28{bottom:789.850500px;}
.y261{bottom:790.065000px;}
.y83{bottom:793.119000px;}
.y1d1{bottom:796.752000px;}
.ye2{bottom:796.794000px;}
.y22d{bottom:796.853488px;}
.y1aa{bottom:800.878500px;}
.y29b{bottom:802.528500px;}
.y2a4{bottom:803.418000px;}
.y33{bottom:803.709000px;}
.y5d{bottom:806.055000px;}
.y1{bottom:810.003000px;}
.y16{bottom:811.542000px;}
.y210{bottom:811.924500px;}
.y22c{bottom:812.004063px;}
.y27{bottom:813.223500px;}
.y11f{bottom:814.809000px;}
.y82{bottom:816.492000px;}
.y1d0{bottom:820.123500px;}
.ye1{bottom:820.167000px;}
.y1a9{bottom:824.251500px;}
.y29a{bottom:825.901500px;}
.y32{bottom:827.080500px;}
.y22b{bottom:827.155610px;}
.y5c{bottom:829.428000px;}
.y183{bottom:829.902000px;}
.y81{bottom:839.863500px;}
.y22a{bottom:842.306185px;}
.y1cf{bottom:843.496500px;}
.ye0{bottom:843.538500px;}
.y1a8{bottom:847.623000px;}
.y31{bottom:850.453500px;}
.y15{bottom:851.119500px;}
.y299{bottom:855.997500px;}
.y229{bottom:857.457732px;}
.y26{bottom:859.968000px;}
.y11e{bottom:861.766500px;}
.y80{bottom:863.236500px;}
.yeb{bottom:866.458500px;}
.ydf{bottom:866.911500px;}
.y1a7{bottom:870.996000px;}
.y228{bottom:872.608307px;}
.y30{bottom:873.825000px;}
.y5b{bottom:876.172500px;}
.y298{bottom:879.370500px;}
.y25{bottom:883.339500px;}
.y11d{bottom:885.138000px;}
.y7f{bottom:886.608000px;}
.y227{bottom:887.759854px;}
.y203{bottom:888.976500px;}
.y1a6{bottom:894.367500px;}
.y2f{bottom:897.198000px;}
.ydb{bottom:898.773000px;}
.y5a{bottom:899.544000px;}
.y226{bottom:902.910429px;}
.y14{bottom:906.712500px;}
.y297{bottom:909.466500px;}
.y202{bottom:912.348000px;}
.y1a5{bottom:917.739000px;}
.y225{bottom:918.061976px;}
.y7e{bottom:920.548500px;}
.y2e{bottom:920.569500px;}
.yd5{bottom:921.358500px;}
.ydd{bottom:921.360000px;}
.yda{bottom:922.146000px;}
.y59{bottom:922.917000px;}
.y11b{bottom:923.725500px;}
.yd9{bottom:928.123500px;}
.y13{bottom:930.084000px;}
.yd4{bottom:931.831500px;}
.y296{bottom:932.839500px;}
.y224{bottom:933.212551px;}
.yd8{bottom:934.101000px;}
.ydc{bottom:937.560000px;}
.yd3{bottom:941.650500px;}
.y2d{bottom:943.942500px;}
.y58{bottom:946.288500px;}
.y1a4{bottom:947.323500px;}
.y223{bottom:948.364098px;}
.yd2{bottom:951.468000px;}
.yd7{bottom:951.805500px;}
.yde{bottom:951.807000px;}
.y12{bottom:953.457000px;}
.y11c{bottom:953.502000px;}
.y11a{bottom:954.256500px;}
.y295{bottom:956.211000px;}
.y201{bottom:959.092500px;}
.y7d{bottom:960.813000px;}
.yd1{bottom:961.287000px;}
.y222{bottom:963.514673px;}
.y2c{bottom:967.314000px;}
.y57{bottom:969.661500px;}
.yd6{bottom:975.178500px;}
.y11{bottom:976.828500px;}
.y221{bottom:978.666221px;}
.y119{bottom:982.113000px;}
.y200{bottom:982.465500px;}
.y294{bottom:986.308500px;}
.yd0{bottom:990.087000px;}
.y56{bottom:993.033000px;}
.y220{bottom:993.816795px;}
.y10{bottom:1000.201500px;}
.y1ff{bottom:1005.837000px;}
.y2b{bottom:1007.050500px;}
.y21f{bottom:1009.355348px;}
.y293{bottom:1009.681500px;}
.y55{bottom:1016.406000px;}
.yf{bottom:1023.573000px;}
.y1fe{bottom:1029.210000px;}
.y292{bottom:1033.053000px;}
.y54{bottom:1039.777500px;}
.y2a{bottom:1046.787000px;}
.ye{bottom:1046.946000px;}
.y1fd{bottom:1052.581500px;}
.y2a9{bottom:1062.462000px;}
.y7c{bottom:1063.150500px;}
.yd{bottom:1086.522000px;}
.h10{height:3.272730px;}
.h35{height:27.519434px;}
.h15{height:29.485107px;}
.h33{height:30.577168px;}
.h44{height:31.823208px;}
.h13{height:32.761252px;}
.hf{height:33.665702px;}
.h11{height:35.865450px;}
.h34{height:36.692593px;}
.h23{height:37.464624px;}
.h41{height:39.313475px;}
.h30{height:39.313477px;}
.h14{height:39.313493px;}
.h2e{height:43.681669px;}
.h4{height:44.831700px;}
.h43{height:45.865710px;}
.h2{height:46.080038px;}
.h2b{height:47.176172px;}
.h31{height:48.049796px;}
.h3{height:49.090950px;}
.h9{height:50.211840px;}
.h39{height:50.479715px;}
.h36{height:50.485715px;}
.h2f{height:52.417991px;}
.h29{height:52.418003px;}
.h1b{height:57.413702px;}
.h16{height:57.419702px;}
.h1c{height:57.647702px;}
.h3f{height:57.737044px;}
.h1f{height:59.613450px;}
.h18{height:59.619450px;}
.h20{height:59.847450px;}
.h5{height:60.254040px;}
.h3c{height:60.680870px;}
.h26{height:60.695702px;}
.h1{height:61.902038px;}
.h3a{height:62.889450px;}
.h1d{height:62.895450px;}
.h2a{height:62.901589px;}
.h38{height:66.628950px;}
.h37{height:68.023715px;}
.h2c{height:68.109450px;}
.h27{height:68.204730px;}
.h8{height:71.662950px;}
.hb{height:74.493379px;}
.h21{height:74.957702px;}
.h3d{height:77.157450px;}
.h22{height:80.867702px;}
.h6{height:87.270780px;}
.h25{height:90.928950px;}
.h1a{height:90.934950px;}
.h17{height:96.845492px;}
.h3b{height:107.134950px;}
.he{height:115.202730px;}
.h7{height:128.274780px;}
.hc{height:166.522061px;}
.hd{height:169.100904px;}
.h19{height:213.380730px;}
.h24{height:213.386730px;}
.ha{height:258.547494px;}
.h1e{height:278.180730px;}
.h12{height:291.417538px;}
.h32{height:294.335015px;}
.h3e{height:311.040005px;}
.h40{height:389.812500px;}
.h42{height:415.513573px;}
.h2d{height:419.019974px;}
.h28{height:466.268061px;}
.h0{height:1188.000000px;}
.w6{width:365.470200px;}
.w8{width:389.812500px;}
.w3{width:669.498322px;}
.w1{width:678.355678px;}
.w2{width:684.927246px;}
.w4{width:715.755844px;}
.w5{width:738.144809px;}
.w7{width:749.789978px;}
.w0{width:918.000000px;}
.x5a{left:-1.388673px;}
.x0{left:0.000000px;}
.x88{left:11.748233px;}
.x5c{left:18.534388px;}
.x72{left:23.363440px;}
.x6f{left:28.328456px;}
.x70{left:33.327239px;}
.x99{left:39.675838px;}
.x98{left:44.807429px;}
.x5b{left:80.755712px;}
.x89{left:85.031877px;}
.x15{left:115.192621px;}
.x10{left:127.558500px;}
.x9a{left:129.999000px;}
.x86{left:134.591698px;}
.xa0{left:135.741000px;}
.x9b{left:136.906913px;}
.x64{left:140.022000px;}
.x97{left:144.650560px;}
.x6{left:148.183500px;}
.x66{left:149.255482px;}
.x5d{left:151.059267px;}
.x1{left:152.763000px;}
.x9d{left:158.535450px;}
.x9c{left:161.187117px;}
.x95{left:163.159425px;}
.x68{left:165.858032px;}
.x8d{left:168.939000px;}
.x87{left:183.967876px;}
.x5f{left:187.993569px;}
.x12{left:189.741000px;}
.x8e{left:197.665500px;}
.x9f{left:201.499500px;}
.x28{left:208.681500px;}
.x8{left:213.705000px;}
.x73{left:216.114000px;}
.x67{left:217.709136px;}
.x96{left:220.102500px;}
.x9e{left:222.409500px;}
.x74{left:223.497000px;}
.x16{left:225.284962px;}
.x17{left:227.886000px;}
.x8f{left:232.893000px;}
.x3d{left:234.681000px;}
.x85{left:239.755647px;}
.x49{left:244.042500px;}
.x5e{left:250.214905px;}
.xa1{left:251.500500px;}
.x3c{left:255.900000px;}
.x4b{left:258.361500px;}
.x2{left:260.922000px;}
.x58{left:263.286000px;}
.x2e{left:264.400500px;}
.x1e{left:265.621465px;}
.x9{left:267.931500px;}
.x4a{left:269.002500px;}
.x93{left:272.317500px;}
.x69{left:276.295427px;}
.x20{left:278.073378px;}
.x3e{left:280.851000px;}
.x4c{left:281.962500px;}
.x2f{left:285.393000px;}
.x30{left:290.785500px;}
.x3f{left:295.170000px;}
.x59{left:298.513500px;}
.x1d{left:301.272000px;}
.x31{left:307.398000px;}
.x7{left:315.727500px;}
.x1f{left:316.961706px;}
.x4d{left:318.097500px;}
.x18{left:319.563000px;}
.x2d{left:322.420500px;}
.xe{left:324.625500px;}
.x32{left:326.262000px;}
.xd{left:329.511000px;}
.x50{left:332.416500px;}
.x4e{left:336.550500px;}
.x65{left:337.567500px;}
.x92{left:339.772500px;}
.x60{left:341.994569px;}
.x33{left:343.534500px;}
.x4f{left:345.784500px;}
.x7d{left:353.216318px;}
.xf{left:356.443500px;}
.x36{left:357.852000px;}
.x6a{left:358.925126px;}
.x21{left:360.901424px;}
.x34{left:364.527000px;}
.x71{left:370.127579px;}
.x35{left:373.759500px;}
.x91{left:382.698000px;}
.x22{left:383.985363px;}
.xb{left:385.204500px;}
.x40{left:387.042000px;}
.x7c{left:389.512091px;}
.x5{left:395.056500px;}
.x29{left:402.202500px;}
.x41{left:406.876500px;}
.xa{left:409.654500px;}
.x94{left:413.511000px;}
.x1a{left:421.320000px;}
.x1b{left:422.860500px;}
.x61{left:426.639444px;}
.xc{left:427.741500px;}
.x19{left:429.283500px;}
.x7e{left:430.522495px;}
.x6b{left:435.410126px;}
.x42{left:443.995500px;}
.x1c{left:447.682500px;}
.x57{left:450.817500px;}
.x80{left:452.067504px;}
.x11{left:454.909500px;}
.x47{left:468.564000px;}
.x2a{left:471.192000px;}
.x2b{left:479.061000px;}
.x23{left:480.237449px;}
.x43{left:483.768000px;}
.x7f{left:488.363284px;}
.x84{left:490.077761px;}
.x62{left:493.212561px;}
.x25{left:494.252168px;}
.x45{left:498.085500px;}
.x51{left:503.530500px;}
.x6c{left:505.947521px;}
.x44{left:516.889500px;}
.x52{left:520.576500px;}
.x75{left:526.840500px;}
.x24{left:533.140495px;}
.x55{left:534.894000px;}
.x37{left:542.086500px;}
.x76{left:543.885000px;}
.x48{left:549.766500px;}
.x53{left:553.698000px;}
.x82{left:554.983165px;}
.x90{left:557.215500px;}
.x38{left:559.131000px;}
.x6d{left:561.425119px;}
.x8a{left:564.897000px;}
.x77{left:566.385000px;}
.x3a{left:573.450000px;}
.x26{left:574.748693px;}
.x3{left:579.192000px;}
.x13{left:584.553000px;}
.x81{left:591.278938px;}
.x54{left:594.993000px;}
.x78{left:602.521500px;}
.x39{left:604.093500px;}
.x7a{left:616.840500px;}
.x63{left:618.841666px;}
.x8b{left:620.029500px;}
.x46{left:622.830000px;}
.x79{left:627.648000px;}
.x3b{left:639.282000px;}
.x27{left:653.266883px;}
.x14{left:657.121500px;}
.x56{left:659.638500px;}
.x6e{left:666.116039px;}
.x4{left:677.782500px;}
.x83{left:691.381073px;}
.x7b{left:694.501500px;}
.x2c{left:769.531500px;}
.x8c{left:783.342000px;}
@media print{
.v12{vertical-align:-21.114667pt;}
.vf{vertical-align:-12.608000pt;}
.v9{vertical-align:-8.730667pt;}
.v1a{vertical-align:-6.485333pt;}
.vc{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:5.312000pt;}
.v17{vertical-align:6.266667pt;}
.v18{vertical-align:9.146667pt;}
.v10{vertical-align:12.106667pt;}
.v1{vertical-align:14.064000pt;}
.v16{vertical-align:15.210667pt;}
.v1b{vertical-align:17.541333pt;}
.v6{vertical-align:20.064000pt;}
.vb{vertical-align:21.114667pt;}
.ve{vertical-align:22.906667pt;}
.v19{vertical-align:24.026667pt;}
.v1f{vertical-align:28.661333pt;}
.v11{vertical-align:33.722667pt;}
.v3{vertical-align:35.941333pt;}
.v14{vertical-align:37.194667pt;}
.v1e{vertical-align:41.957333pt;}
.vd{vertical-align:45.706667pt;}
.v20{vertical-align:51.594667pt;}
.v1c{vertical-align:57.600000pt;}
.v5{vertical-align:65.109333pt;}
.v2{vertical-align:74.917333pt;}
.v7{vertical-align:81.803273pt;}
.v8{vertical-align:84.095577pt;}
.va{vertical-align:99.493333pt;}
.v4{vertical-align:111.365333pt;}
.v13{vertical-align:186.762667pt;}
.v1d{vertical-align:244.362667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8a{letter-spacing:0.000473pt;}
.ls39{letter-spacing:0.000933pt;}
.lsb{letter-spacing:0.000935pt;}
.ls14{letter-spacing:0.001146pt;}
.ls5f{letter-spacing:0.001181pt;}
.ls55{letter-spacing:0.001432pt;}
.ls5d{letter-spacing:0.001458pt;}
.ls30{letter-spacing:0.002384pt;}
.ls17{letter-spacing:0.002397pt;}
.ls25{letter-spacing:0.002405pt;}
.ls44{letter-spacing:0.002411pt;}
.ls8{letter-spacing:0.002717pt;}
.ls2{letter-spacing:0.002827pt;}
.ls46{letter-spacing:0.003370pt;}
.ls2d{letter-spacing:0.003856pt;}
.ls7{letter-spacing:0.005459pt;}
.ls5c{letter-spacing:0.006479pt;}
.ls3a{letter-spacing:1.617432pt;}
.ls3c{letter-spacing:2.089669pt;}
.ls70{letter-spacing:2.371847pt;}
.ls6d{letter-spacing:2.377181pt;}
.ls7a{letter-spacing:2.555614pt;}
.ls3f{letter-spacing:2.653258pt;}
.ls4a{letter-spacing:2.656473pt;}
.ls18{letter-spacing:2.657146pt;}
.ls4e{letter-spacing:2.658591pt;}
.lsd{letter-spacing:2.659733pt;}
.ls8e{letter-spacing:2.661806pt;}
.ls81{letter-spacing:2.874144pt;}
.ls53{letter-spacing:3.331374pt;}
.ls6f{letter-spacing:3.352213pt;}
.ls72{letter-spacing:3.357546pt;}
.ls8d{letter-spacing:3.435003pt;}
.ls69{letter-spacing:3.436906pt;}
.ls4f{letter-spacing:3.440336pt;}
.ls66{letter-spacing:3.442239pt;}
.lsa3{letter-spacing:3.967477pt;}
.lsa6{letter-spacing:3.970411pt;}
.ls5e{letter-spacing:4.500586pt;}
.ls62{letter-spacing:4.505919pt;}
.ls4c{letter-spacing:4.524320pt;}
.ls6{letter-spacing:4.527012pt;}
.ls42{letter-spacing:4.529653pt;}
.ls4d{letter-spacing:4.532345pt;}
.ls3d{letter-spacing:5.105323pt;}
.ls54{letter-spacing:5.110656pt;}
.ls43{letter-spacing:5.312473pt;}
.ls6a{letter-spacing:5.317806pt;}
.ls27{letter-spacing:5.567477pt;}
.ls80{letter-spacing:6.226879pt;}
.ls74{letter-spacing:6.260825pt;}
.ls7d{letter-spacing:6.266158pt;}
.ls90{letter-spacing:6.338870pt;}
.ls9f{letter-spacing:6.341771pt;}
.ls52{letter-spacing:6.344203pt;}
.ls28{letter-spacing:6.347104pt;}
.ls48{letter-spacing:6.461077pt;}
.ls49{letter-spacing:6.466411pt;}
.lsa5{letter-spacing:6.621258pt;}
.lsa2{letter-spacing:6.626591pt;}
.ls95{letter-spacing:8.078517pt;}
.ls84{letter-spacing:8.081908pt;}
.ls93{letter-spacing:8.083850pt;}
.lsbb{letter-spacing:8.380237pt;}
.lsba{letter-spacing:8.682144pt;}
.ls89{letter-spacing:8.929817pt;}
.ls6e{letter-spacing:8.931713pt;}
.lsbc{letter-spacing:9.194144pt;}
.ls73{letter-spacing:9.693077pt;}
.lsb3{letter-spacing:9.695477pt;}
.ls50{letter-spacing:9.698411pt;}
.ls41{letter-spacing:9.716372pt;}
.lsb7{letter-spacing:10.143477pt;}
.lsbf{letter-spacing:10.442144pt;}
.lsb8{letter-spacing:10.884811pt;}
.ls3{letter-spacing:10.958400pt;}
.ls1f{letter-spacing:11.002144pt;}
.ls26{letter-spacing:11.909771pt;}
.ls92{letter-spacing:11.951477pt;}
.lsb2{letter-spacing:12.596811pt;}
.ls16{letter-spacing:12.925077pt;}
.ls22{letter-spacing:12.927477pt;}
.ls7c{letter-spacing:12.930399pt;}
.ls5b{letter-spacing:12.930411pt;}
.lsb9{letter-spacing:13.108811pt;}
.lsa9{letter-spacing:13.412811pt;}
.lsa8{letter-spacing:13.415744pt;}
.lsab{letter-spacing:13.810411pt;}
.ls9e{letter-spacing:14.346144pt;}
.ls87{letter-spacing:14.431477pt;}
.ls91{letter-spacing:14.610591pt;}
.ls1d{letter-spacing:14.810144pt;}
.ls6c{letter-spacing:14.925258pt;}
.ls6b{letter-spacing:14.930591pt;}
.ls51{letter-spacing:15.581258pt;}
.ls7e{letter-spacing:15.586591pt;}
.ls15{letter-spacing:15.590479pt;}
.lsb6{letter-spacing:15.711477pt;}
.lsa7{letter-spacing:16.066591pt;}
.ls38{letter-spacing:16.157555pt;}
.ls68{letter-spacing:16.159467pt;}
.ls11{letter-spacing:16.159477pt;}
.ls1b{letter-spacing:16.159483pt;}
.ls9a{letter-spacing:16.160933pt;}
.ls78{letter-spacing:16.162389pt;}
.ls67{letter-spacing:16.162867pt;}
.ls64{letter-spacing:16.164811pt;}
.ls21{letter-spacing:16.280213pt;}
.lsb5{letter-spacing:16.676811pt;}
.lsb1{letter-spacing:16.874144pt;}
.ls9d{letter-spacing:16.994591pt;}
.ls37{letter-spacing:17.138888pt;}
.ls1e{letter-spacing:17.355104pt;}
.ls58{letter-spacing:17.412811pt;}
.lsc{letter-spacing:17.508321pt;}
.lsa4{letter-spacing:17.565258pt;}
.lsa1{letter-spacing:17.570591pt;}
.ls36{letter-spacing:17.591744pt;}
.ls5a{letter-spacing:18.033323pt;}
.ls13{letter-spacing:18.038656pt;}
.ls79{letter-spacing:18.715614pt;}
.ls98{letter-spacing:18.813258pt;}
.ls63{letter-spacing:18.814692pt;}
.ls12{letter-spacing:19.089904pt;}
.ls3b{letter-spacing:19.311003pt;}
.lsa{letter-spacing:19.399244pt;}
.ls1a{letter-spacing:19.491374pt;}
.lsb0{letter-spacing:19.517546pt;}
.lsad{letter-spacing:19.954591pt;}
.ls61{letter-spacing:20.089919pt;}
.ls29{letter-spacing:20.919925pt;}
.ls8f{letter-spacing:21.009908pt;}
.ls1c{letter-spacing:21.149537pt;}
.ls2b{letter-spacing:21.223244pt;}
.ls2c{letter-spacing:21.225654pt;}
.ls10{letter-spacing:21.270656pt;}
.ls2f{letter-spacing:21.807477pt;}
.ls2e{letter-spacing:21.812347pt;}
.lsaa{letter-spacing:21.895242pt;}
.ls96{letter-spacing:22.050591pt;}
.ls76{letter-spacing:22.420825pt;}
.lsae{letter-spacing:22.504203pt;}
.lsaf{letter-spacing:22.507104pt;}
.ls57{letter-spacing:22.518656pt;}
.ls86{letter-spacing:22.519242pt;}
.ls23{letter-spacing:22.749546pt;}
.ls60{letter-spacing:23.321919pt;}
.lsa0{letter-spacing:23.330591pt;}
.ls82{letter-spacing:23.372577pt;}
.lsac{letter-spacing:23.373258pt;}
.ls31{letter-spacing:23.641187pt;}
.lsbd{letter-spacing:23.693077pt;}
.ls34{letter-spacing:23.782268pt;}
.ls9b{letter-spacing:24.004825pt;}
.ls4{letter-spacing:24.056161pt;}
.ls9c{letter-spacing:24.167925pt;}
.ls94{letter-spacing:24.178591pt;}
.ls24{letter-spacing:24.669258pt;}
.lsbe{letter-spacing:24.722411pt;}
.ls20{letter-spacing:24.779104pt;}
.lse{letter-spacing:25.064707pt;}
.ls75{letter-spacing:25.652825pt;}
.ls2a{letter-spacing:26.045258pt;}
.lsf{letter-spacing:26.838656pt;}
.ls59{letter-spacing:27.305919pt;}
.ls85{letter-spacing:27.900575pt;}
.ls32{letter-spacing:28.180811pt;}
.ls35{letter-spacing:28.474158pt;}
.lsb4{letter-spacing:29.087976pt;}
.ls1{letter-spacing:29.090933pt;}
.ls88{letter-spacing:29.554591pt;}
.ls5{letter-spacing:30.298144pt;}
.ls33{letter-spacing:34.182187pt;}
.ls45{letter-spacing:34.489046pt;}
.ls40{letter-spacing:34.529908pt;}
.ls4b{letter-spacing:55.789258pt;}
.ls7b{letter-spacing:58.182267pt;}
.ls77{letter-spacing:58.183744pt;}
.ls8c{letter-spacing:58.448473pt;}
.ls7f{letter-spacing:60.834591pt;}
.ls56{letter-spacing:63.286656pt;}
.ls3e{letter-spacing:65.343252pt;}
.ls19{letter-spacing:67.878749pt;}
.ls99{letter-spacing:74.343744pt;}
.ls83{letter-spacing:75.181258pt;}
.ls9{letter-spacing:112.205258pt;}
.ls71{letter-spacing:268.247744pt;}
.ls47{letter-spacing:295.341077pt;}
.ls65{letter-spacing:384.638692pt;}
.ls8b{letter-spacing:515.613077pt;}
.ls97{letter-spacing:581.821056pt;}
.ws6c{word-spacing:-58.181867pt;}
.ws93{word-spacing:-47.616040pt;}
.wsaa{word-spacing:-46.062584pt;}
.ws68{word-spacing:-37.899668pt;}
.ws67{word-spacing:-29.521250pt;}
.ws96{word-spacing:-28.241478pt;}
.ws6d{word-spacing:-28.183296pt;}
.ws23{word-spacing:-25.530203pt;}
.ws18{word-spacing:-23.910333pt;}
.ws24{word-spacing:-23.668383pt;}
.wsa8{word-spacing:-21.741645pt;}
.ws73{word-spacing:-18.583288pt;}
.wsb1{word-spacing:-17.728012pt;}
.wsf{word-spacing:-16.162923pt;}
.wsb2{word-spacing:-15.955200pt;}
.ws21{word-spacing:-14.882921pt;}
.ws105{word-spacing:-14.871285pt;}
.wsb7{word-spacing:-14.773343pt;}
.wsb8{word-spacing:-13.296000pt;}
.ws57{word-spacing:-12.543875pt;}
.ws81{word-spacing:-11.080007pt;}
.ws86{word-spacing:-10.697909pt;}
.wsc5{word-spacing:-10.341340pt;}
.ws1{word-spacing:-10.150611pt;}
.ws82{word-spacing:-9.972000pt;}
.wsa6{word-spacing:-9.444257pt;}
.wsc6{word-spacing:-9.307200pt;}
.ws89{word-spacing:-8.619721pt;}
.wsdb{word-spacing:-3.558389pt;}
.wse4{word-spacing:-3.211844pt;}
.ws13{word-spacing:-3.188366pt;}
.ws9b{word-spacing:-2.606548pt;}
.ws108{word-spacing:-2.373820pt;}
.ws44{word-spacing:-2.315638pt;}
.wsed{word-spacing:-2.099362pt;}
.wsf2{word-spacing:-2.099049pt;}
.wsf1{word-spacing:-2.097806pt;}
.wsee{word-spacing:-2.097147pt;}
.wsef{word-spacing:-2.091874pt;}
.wseb{word-spacing:-2.089972pt;}
.wsf0{word-spacing:-2.089283pt;}
.wsec{word-spacing:-2.087381pt;}
.wsfc{word-spacing:-2.024729pt;}
.wsab{word-spacing:-1.792001pt;}
.wsfa{word-spacing:-1.733820pt;}
.wsfe{word-spacing:-1.442910pt;}
.wsa2{word-spacing:-1.326547pt;}
.ws2e{word-spacing:-1.268365pt;}
.wsd1{word-spacing:-1.252901pt;}
.wse3{word-spacing:-1.210183pt;}
.ws47{word-spacing:-1.093819pt;}
.ws7{word-spacing:-1.035637pt;}
.ws17{word-spacing:-0.686546pt;}
.wse7{word-spacing:-0.628364pt;}
.wse9{word-spacing:-0.512000pt;}
.ws7f{word-spacing:-0.453819pt;}
.ws104{word-spacing:-0.395637pt;}
.ws11{word-spacing:-0.221091pt;}
.ws5a{word-spacing:-0.162909pt;}
.ws1c{word-spacing:-0.104727pt;}
.wse1{word-spacing:-0.070400pt;}
.ws10e{word-spacing:-0.058182pt;}
.wsa7{word-spacing:-0.020932pt;}
.wsa9{word-spacing:-0.015599pt;}
.ws6{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.011636pt;}
.ws2d{word-spacing:0.128000pt;}
.ws45{word-spacing:0.244364pt;}
.ws6f{word-spacing:0.302546pt;}
.ws5b{word-spacing:0.360728pt;}
.ws8{word-spacing:0.418909pt;}
.ws38{word-spacing:0.477091pt;}
.ws46{word-spacing:0.709819pt;}
.wsf6{word-spacing:0.768001pt;}
.wsad{word-spacing:0.884364pt;}
.ws30{word-spacing:0.942546pt;}
.ws8c{word-spacing:0.954542pt;}
.ws8a{word-spacing:1.000728pt;}
.ws8f{word-spacing:1.049121pt;}
.ws35{word-spacing:1.058910pt;}
.ws41{word-spacing:1.117092pt;}
.wsd2{word-spacing:1.139787pt;}
.wsc1{word-spacing:1.175274pt;}
.ws9c{word-spacing:1.233456pt;}
.ws69{word-spacing:1.291637pt;}
.ws66{word-spacing:1.349819pt;}
.ws62{word-spacing:1.524365pt;}
.ws28{word-spacing:1.582547pt;}
.ws26{word-spacing:1.640729pt;}
.wsc0{word-spacing:1.698911pt;}
.ws34{word-spacing:1.757092pt;}
.wse0{word-spacing:1.815274pt;}
.wsc9{word-spacing:1.873456pt;}
.wsfb{word-spacing:1.989820pt;}
.ws2c{word-spacing:2.048002pt;}
.ws77{word-spacing:2.101686pt;}
.ws71{word-spacing:2.106184pt;}
.wsd6{word-spacing:2.164365pt;}
.ws5c{word-spacing:2.222547pt;}
.ws10{word-spacing:2.280729pt;}
.ws4e{word-spacing:2.338911pt;}
.ws2b{word-spacing:2.397093pt;}
.ws111{word-spacing:2.466911pt;}
.ws1a{word-spacing:2.571639pt;}
.wsfd{word-spacing:2.629820pt;}
.ws48{word-spacing:2.688002pt;}
.wsbf{word-spacing:2.745120pt;}
.ws8e{word-spacing:2.746184pt;}
.ws3e{word-spacing:2.804366pt;}
.ws52{word-spacing:2.862548pt;}
.wscb{word-spacing:2.920730pt;}
.ws5f{word-spacing:2.978912pt;}
.ws27{word-spacing:3.037093pt;}
.ws43{word-spacing:3.095275pt;}
.wsa1{word-spacing:3.206432pt;}
.ws2{word-spacing:3.211639pt;}
.wscc{word-spacing:3.225121pt;}
.ws102{word-spacing:3.229504pt;}
.ws70{word-spacing:3.243541pt;}
.ws3{word-spacing:3.269821pt;}
.ws75{word-spacing:3.328003pt;}
.wsd4{word-spacing:3.386185pt;}
.ws36{word-spacing:3.444367pt;}
.wsc8{word-spacing:3.502548pt;}
.ws7b{word-spacing:3.560730pt;}
.ws3c{word-spacing:3.677094pt;}
.wsb6{word-spacing:3.684739pt;}
.ws0{word-spacing:3.700367pt;}
.ws80{word-spacing:3.735276pt;}
.ws106{word-spacing:3.746912pt;}
.wsb5{word-spacing:3.793458pt;}
.ws99{word-spacing:3.851640pt;}
.ws40{word-spacing:3.968003pt;}
.ws5d{word-spacing:3.985067pt;}
.ws32{word-spacing:4.026185pt;}
.ws4f{word-spacing:4.084367pt;}
.wsde{word-spacing:4.142549pt;}
.ws7e{word-spacing:4.200731pt;}
.wsa{word-spacing:4.258913pt;}
.ws9f{word-spacing:4.375276pt;}
.ws9e{word-spacing:4.433458pt;}
.wsd0{word-spacing:4.491640pt;}
.ws76{word-spacing:4.549822pt;}
.wsc2{word-spacing:4.666186pt;}
.wsd8{word-spacing:4.724368pt;}
.wsd{word-spacing:4.782067pt;}
.ws37{word-spacing:4.782549pt;}
.ws8d{word-spacing:4.840731pt;}
.wsac{word-spacing:4.898913pt;}
.ws1b{word-spacing:4.957095pt;}
.wsc3{word-spacing:5.015277pt;}
.ws85{word-spacing:5.039720pt;}
.ws3d{word-spacing:5.073459pt;}
.ws39{word-spacing:5.189823pt;}
.ws78{word-spacing:5.213095pt;}
.ws12{word-spacing:5.248004pt;}
.ws4c{word-spacing:5.306186pt;}
.wsca{word-spacing:5.358454pt;}
.ws51{word-spacing:5.364368pt;}
.ws10c{word-spacing:5.376004pt;}
.wsb{word-spacing:5.422550pt;}
.ws5{word-spacing:5.440908pt;}
.wsb9{word-spacing:5.480732pt;}
.ws6a{word-spacing:5.538914pt;}
.ws6b{word-spacing:5.597096pt;}
.ws59{word-spacing:5.655277pt;}
.wsa0{word-spacing:5.713459pt;}
.ws2f{word-spacing:5.771641pt;}
.ws7c{word-spacing:5.829823pt;}
.ws1e{word-spacing:5.888005pt;}
.ws103{word-spacing:5.899641pt;}
.wsf8{word-spacing:5.946187pt;}
.ws4{word-spacing:5.957823pt;}
.ws1d{word-spacing:6.004369pt;}
.ws10d{word-spacing:6.016005pt;}
.ws4d{word-spacing:6.062551pt;}
.ws50{word-spacing:6.120732pt;}
.ws53{word-spacing:6.178914pt;}
.wscf{word-spacing:6.237096pt;}
.wsc{word-spacing:6.295278pt;}
.ws2a{word-spacing:6.353460pt;}
.ws33{word-spacing:6.469824pt;}
.ws72{word-spacing:6.522119pt;}
.ws74{word-spacing:6.528005pt;}
.wse{word-spacing:6.586187pt;}
.ws88{word-spacing:6.590895pt;}
.ws87{word-spacing:6.618029pt;}
.ws42{word-spacing:6.644369pt;}
.ws61{word-spacing:6.702551pt;}
.ws31{word-spacing:6.760733pt;}
.wsf9{word-spacing:6.818915pt;}
.ws7a{word-spacing:6.877097pt;}
.wsd7{word-spacing:6.935279pt;}
.ws7d{word-spacing:6.993460pt;}
.ws9{word-spacing:7.051642pt;}
.ws54{word-spacing:7.109824pt;}
.wsaf{word-spacing:7.168006pt;}
.ws84{word-spacing:7.219787pt;}
.ws83{word-spacing:7.226188pt;}
.ws14{word-spacing:7.284370pt;}
.ws1f{word-spacing:7.342552pt;}
.wse5{word-spacing:7.400733pt;}
.wsdd{word-spacing:7.517097pt;}
.wsb4{word-spacing:7.575279pt;}
.wsb3{word-spacing:7.633461pt;}
.wse6{word-spacing:7.749825pt;}
.ws5e{word-spacing:7.808007pt;}
.ws56{word-spacing:7.924370pt;}
.ws4b{word-spacing:8.389825pt;}
.ws29{word-spacing:8.506189pt;}
.ws10f{word-spacing:8.541693pt;}
.ws55{word-spacing:8.564371pt;}
.wsc7{word-spacing:8.680735pt;}
.ws3b{word-spacing:8.797098pt;}
.ws3f{word-spacing:8.855280pt;}
.ws10a{word-spacing:8.886147pt;}
.ws16{word-spacing:8.913462pt;}
.ws101{word-spacing:9.003932pt;}
.ws58{word-spacing:9.029826pt;}
.ws9a{word-spacing:9.088008pt;}
.wsd9{word-spacing:9.146189pt;}
.ws9d{word-spacing:9.204371pt;}
.wsf7{word-spacing:9.262553pt;}
.ws109{word-spacing:9.288964pt;}
.wsd3{word-spacing:9.320735pt;}
.ws112{word-spacing:9.340996pt;}
.ws91{word-spacing:9.378917pt;}
.wsdc{word-spacing:9.669826pt;}
.ws107{word-spacing:9.672166pt;}
.ws90{word-spacing:9.708996pt;}
.wsc4{word-spacing:9.786190pt;}
.wsd5{word-spacing:9.902554pt;}
.ws113{word-spacing:9.914846pt;}
.wsea{word-spacing:9.960736pt;}
.wsb0{word-spacing:10.077099pt;}
.ws4a{word-spacing:10.135281pt;}
.ws92{word-spacing:10.251645pt;}
.wse8{word-spacing:10.309827pt;}
.ws3a{word-spacing:10.426191pt;}
.ws49{word-spacing:10.484372pt;}
.wsff{word-spacing:10.658918pt;}
.wsba{word-spacing:10.717100pt;}
.ws110{word-spacing:10.786918pt;}
.wsae{word-spacing:10.833464pt;}
.ws15{word-spacing:11.066191pt;}
.wsda{word-spacing:11.648010pt;}
.ws60{word-spacing:11.764373pt;}
.ws19{word-spacing:11.938919pt;}
.ws65{word-spacing:12.520738pt;}
.ws100{word-spacing:12.765102pt;}
.ws22{word-spacing:12.928011pt;}
.ws10b{word-spacing:13.102556pt;}
.ws79{word-spacing:13.568011pt;}
.ws20{word-spacing:35.234938pt;}
.wsa4{word-spacing:57.941308pt;}
.ws25{word-spacing:62.166867pt;}
.ws95{word-spacing:66.975975pt;}
.wsa3{word-spacing:72.645308pt;}
.wsf3{word-spacing:78.785899pt;}
.wsf4{word-spacing:88.212491pt;}
.ws94{word-spacing:90.698641pt;}
.wsf5{word-spacing:92.407792pt;}
.wsbc{word-spacing:96.843732pt;}
.wsbb{word-spacing:135.270398pt;}
.wse2{word-spacing:146.641677pt;}
.wsbe{word-spacing:158.382677pt;}
.wsce{word-spacing:255.579743pt;}
.ws98{word-spacing:274.746411pt;}
.ws97{word-spacing:332.928277pt;}
.wsa5{word-spacing:365.277395pt;}
.wscd{word-spacing:369.373399pt;}
.wsbd{word-spacing:423.459262pt;}
.ws64{word-spacing:486.497086pt;}
.ws63{word-spacing:511.502506pt;}
.ws6e{word-spacing:592.186675pt;}
.wsdf{word-spacing:897.117839pt;}
._48{margin-left:-1529.375542pt;}
._3f{margin-left:-281.779200pt;}
._43{margin-left:-263.786838pt;}
._42{margin-left:-234.816000pt;}
._3e{margin-left:-216.960141pt;}
._41{margin-left:-180.800118pt;}
._39{margin-left:-176.112000pt;}
._47{margin-left:-164.371200pt;}
._38{margin-left:-135.600088pt;}
._46{margin-left:-126.560082pt;}
._10{margin-left:-31.534572pt;}
._18{margin-left:-30.487298pt;}
._11{margin-left:-29.440025pt;}
._f{margin-left:-28.509115pt;}
._15{margin-left:-26.631325pt;}
._e{margin-left:-22.733140pt;}
._1e{margin-left:-12.011706pt;}
._1d{margin-left:-9.499614pt;}
._c{margin-left:-7.192228pt;}
._4{margin-left:-5.527277pt;}
._1{margin-left:-3.972337pt;}
._5{margin-left:-2.967275pt;}
._3{margin-left:-1.861820pt;}
._a{margin-left:-0.930910pt;}
._17{width:0.914940pt;}
._9{width:1.978183pt;}
._12{width:3.374548pt;}
._0{width:5.277255pt;}
._3a{width:6.549596pt;}
._45{width:8.061019pt;}
._4c{width:8.995898pt;}
._4a{width:10.411501pt;}
._4b{width:13.342596pt;}
._2a{width:14.270527pt;}
._25{width:15.243649pt;}
._6{width:16.523650pt;}
._19{width:17.470530pt;}
._21{width:19.374562pt;}
._29{width:20.421835pt;}
._49{width:21.352745pt;}
._2{width:22.283655pt;}
._33{width:23.256777pt;}
._d{width:24.436384pt;}
._14{width:25.329001pt;}
._31{width:26.647295pt;}
._32{width:27.985478pt;}
._8{width:29.090933pt;}
._16{width:30.254571pt;}
._b{width:32.232754pt;}
._36{width:33.645089pt;}
._34{width:34.734574pt;}
._37{width:35.684189pt;}
._7{width:36.728728pt;}
._13{width:38.283668pt;}
._40{width:39.369235pt;}
._4d{width:40.829008pt;}
._2e{width:42.023278pt;}
._3c{width:43.319249pt;}
._26{width:46.080038pt;}
._30{width:47.709131pt;}
._1f{width:50.618224pt;}
._22{width:52.596407pt;}
._1b{width:53.818227pt;}
._28{width:55.854592pt;}
._59{width:58.181867pt;}
._20{width:59.461868pt;}
._24{width:66.560055pt;}
._3d{width:67.895273pt;}
._35{width:71.731200pt;}
._3b{width:76.913462pt;}
._23{width:79.709157pt;}
._2f{width:86.077200pt;}
._44{width:91.593250pt;}
._50{width:102.885407pt;}
._4f{width:112.939332pt;}
._55{width:122.370937pt;}
._53{width:126.979563pt;}
._54{width:140.597999pt;}
._51{width:145.417521pt;}
._52{width:150.658839pt;}
._58{width:154.221258pt;}
._57{width:177.895711pt;}
._56{width:183.895214pt;}
._4e{width:193.325264pt;}
._2b{width:1327.477470pt;}
._2d{width:1436.161197pt;}
._1a{width:1867.172465pt;}
._1c{width:1881.136113pt;}
._2c{width:1888.583392pt;}
._27{width:1987.325808pt;}
.fsa{font-size:31.880533pt;}
.fs14{font-size:33.600000pt;}
.fs9{font-size:36.000000pt;}
.fs12{font-size:37.333358pt;}
.fs18{font-size:37.716395pt;}
.fs7{font-size:40.000026pt;}
.fs3{font-size:42.507200pt;}
.fs13{font-size:44.800019pt;}
.fs16{font-size:47.999999pt;}
.fs10{font-size:48.000000pt;}
.fs8{font-size:48.000020pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.333368pt;}
.fs17{font-size:55.999984pt;}
.fsd{font-size:57.600000pt;}
.fs0{font-size:58.181867pt;}
.fs11{font-size:58.666656pt;}
.fs4{font-size:63.761067pt;}
.fsf{font-size:64.000027pt;}
.fsb{font-size:64.000042pt;}
.fs15{font-size:70.399920pt;}
.fs2{font-size:76.513067pt;}
.fsc{font-size:76.800032pt;}
.fs6{font-size:87.272800pt;}
.fs5{font-size:90.892130pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:2.357046pt;}
.y159{bottom:2.438333pt;}
.y158{bottom:2.806003pt;}
.yb0{bottom:13.860713pt;}
.yb6{bottom:13.939369pt;}
.yb3{bottom:13.939586pt;}
.yaf{bottom:14.412219pt;}
.yb5{bottom:14.490875pt;}
.yb2{bottom:14.491091pt;}
.y134{bottom:22.177141pt;}
.y13a{bottom:22.302990pt;}
.y137{bottom:22.303337pt;}
.y133{bottom:23.059550pt;}
.y139{bottom:23.185400pt;}
.y136{bottom:23.185745pt;}
.yae{bottom:26.412226pt;}
.yb4{bottom:26.490883pt;}
.yb1{bottom:26.491098pt;}
.y24{bottom:35.740000pt;}
.y187{bottom:35.883026pt;}
.y18d{bottom:35.956438pt;}
.y18a{bottom:35.956640pt;}
.y186{bottom:36.397764pt;}
.y18c{bottom:36.471177pt;}
.y189{bottom:36.471378pt;}
.y132{bottom:42.259562pt;}
.y138{bottom:42.385412pt;}
.y135{bottom:42.385758pt;}
.y1e1{bottom:43.663802pt;}
.y185{bottom:47.597772pt;}
.y18b{bottom:47.671184pt;}
.y188{bottom:47.671386pt;}
.y14f{bottom:49.964915pt;}
.y155{bottom:50.069790pt;}
.y152{bottom:50.070079pt;}
.y14e{bottom:50.700256pt;}
.y154{bottom:50.805131pt;}
.y151{bottom:50.805419pt;}
.y14d{bottom:66.700267pt;}
.y153{bottom:66.805141pt;}
.y150{bottom:66.805429pt;}
.y1e0{bottom:75.090972pt;}
.y1de{bottom:75.590667pt;}
.y53{bottom:77.336000pt;}
.yb8{bottom:78.890911pt;}
.y21e{bottom:78.908000pt;}
.y257{bottom:82.509333pt;}
.y1a3{bottom:84.936000pt;}
.yac{bottom:85.958667pt;}
.y98{bottom:87.198667pt;}
.y7b{bottom:87.317333pt;}
.ycf{bottom:87.882667pt;}
.y118{bottom:88.836000pt;}
.y291{bottom:89.805333pt;}
.y182{bottom:89.832000pt;}
.y1e2{bottom:90.535618pt;}
.yb7{bottom:90.890917pt;}
.y1dd{bottom:96.365333pt;}
.y18f{bottom:97.277544pt;}
.y192{bottom:97.277887pt;}
.y52{bottom:98.112000pt;}
.y1ce{bottom:98.348000pt;}
.y21d{bottom:99.682667pt;}
.y1c7{bottom:99.824000pt;}
.y279{bottom:100.309333pt;}
.y260{bottom:102.472000pt;}
.y256{bottom:103.284000pt;}
.y1a2{bottom:105.712000pt;}
.yab{bottom:106.733333pt;}
.y97{bottom:107.973333pt;}
.y7a{bottom:108.093333pt;}
.y18e{bottom:108.477550pt;}
.y191{bottom:108.477893pt;}
.yce{bottom:108.657333pt;}
.y117{bottom:109.610667pt;}
.y181{bottom:110.606667pt;}
.y290{bottom:116.557333pt;}
.y1dc{bottom:117.141333pt;}
.y51{bottom:118.886667pt;}
.y1c6{bottom:120.600000pt;}
.y278{bottom:121.084000pt;}
.y78{bottom:123.030667pt;}
.y25f{bottom:123.246667pt;}
.y255{bottom:124.060000pt;}
.y13c{bottom:126.225457pt;}
.y1a1{bottom:126.486667pt;}
.y79{bottom:127.126667pt;}
.yaa{bottom:127.509333pt;}
.ycd{bottom:129.433333pt;}
.y96{bottom:129.492000pt;}
.y21c{bottom:129.852000pt;}
.y116{bottom:130.386667pt;}
.y180{bottom:131.382667pt;}
.y77{bottom:132.142667pt;}
.y157{bottom:136.671845pt;}
.y28f{bottom:137.333333pt;}
.y1cd{bottom:137.892000pt;}
.y1db{bottom:137.916000pt;}
.y50{bottom:139.661333pt;}
.yea{bottom:141.037333pt;}
.y1c5{bottom:141.374667pt;}
.y277{bottom:141.860000pt;}
.y1fc{bottom:142.888000pt;}
.y13b{bottom:145.425466pt;}
.y93{bottom:146.941333pt;}
.ya9{bottom:148.284000pt;}
.ycc{bottom:150.208000pt;}
.y115{bottom:151.161333pt;}
.y17f{bottom:152.157333pt;}
.y156{bottom:152.671853pt;}
.y76{bottom:155.560000pt;}
.y1da{bottom:158.692000pt;}
.y4f{bottom:160.437333pt;}
.y95{bottom:160.760000pt;}
.ye9{bottom:161.813333pt;}
.y1c4{bottom:162.150667pt;}
.y276{bottom:162.634667pt;}
.y1fb{bottom:163.662667pt;}
.y28e{bottom:164.085333pt;}
.y1a0{bottom:164.140000pt;}
.y25e{bottom:164.797333pt;}
.y94{bottom:165.122667pt;}
.y254{bottom:165.610667pt;}
.y19f{bottom:168.037333pt;}
.ya8{bottom:169.060000pt;}
.y2ad{bottom:171.526667pt;}
.y21b{bottom:171.592000pt;}
.y17e{bottom:172.933333pt;}
.y110{bottom:174.273333pt;}
.y75{bottom:176.334667pt;}
.y8a{bottom:178.641337pt;}
.y8b{bottom:178.641425pt;}
.y8c{bottom:179.214590pt;}
.y10f{bottom:179.484000pt;}
.y1c3{bottom:182.925333pt;}
.y275{bottom:183.410667pt;}
.y20f{bottom:183.444000pt;}
.y1fa{bottom:184.438667pt;}
.y28d{bottom:184.861333pt;}
.y19e{bottom:184.916000pt;}
.y25d{bottom:185.573333pt;}
.y253{bottom:186.385333pt;}
.y19d{bottom:188.813333pt;}
.ya7{bottom:189.834667pt;}
.yc{bottom:191.556000pt;}
.ycb{bottom:191.758667pt;}
.y21a{bottom:192.368000pt;}
.y14b{bottom:192.516000pt;}
.y17d{bottom:193.708000pt;}
.y92{bottom:194.500000pt;}
.y74{bottom:197.110667pt;}
.y1d9{bottom:197.993333pt;}
.y89{bottom:199.092066pt;}
.y107{bottom:199.560000pt;}
.y10e{bottom:200.258667pt;}
.y114{bottom:200.260000pt;}
.y4e{bottom:201.988000pt;}
.y1c2{bottom:203.701333pt;}
.y274{bottom:204.185333pt;}
.y20e{bottom:204.218667pt;}
.y1f9{bottom:205.213333pt;}
.y10d{bottom:205.572000pt;}
.y113{bottom:205.573333pt;}
.y19c{bottom:205.690667pt;}
.y252{bottom:207.161333pt;}
.y106{bottom:208.869333pt;}
.y19b{bottom:209.588000pt;}
.ya6{bottom:210.610667pt;}
.y10c{bottom:210.886667pt;}
.y28c{bottom:211.614667pt;}
.yca{bottom:212.534667pt;}
.y219{bottom:213.142667pt;}
.y14a{bottom:213.292000pt;}
.y112{bottom:213.960000pt;}
.y17c{bottom:214.484000pt;}
.y91{bottom:215.274667pt;}
.y105{bottom:217.596000pt;}
.y111{bottom:217.597333pt;}
.y73{bottom:217.885333pt;}
.y24a{bottom:221.560000pt;}
.y10b{bottom:222.726667pt;}
.y4d{bottom:222.762667pt;}
.y1c1{bottom:224.476000pt;}
.y273{bottom:224.961333pt;}
.y20d{bottom:224.994667pt;}
.y25c{bottom:225.117333pt;}
.y1f8{bottom:225.989333pt;}
.y104{bottom:226.324000pt;}
.y10a{bottom:226.624000pt;}
.y2a3{bottom:227.409333pt;}
.y251{bottom:227.936000pt;}
.ya5{bottom:231.385333pt;}
.y1d7{bottom:232.052000pt;}
.y28b{bottom:232.389333pt;}
.yc9{bottom:233.309333pt;}
.y149{bottom:234.066667pt;}
.y103{bottom:235.052000pt;}
.y17b{bottom:235.258667pt;}
.y90{bottom:236.050667pt;}
.y1f0{bottom:237.116000pt;}
.y72{bottom:238.661333pt;}
.y249{bottom:242.336000pt;}
.y109{bottom:243.502667pt;}
.y4c{bottom:243.538667pt;}
.y272{bottom:245.736000pt;}
.y20c{bottom:245.769333pt;}
.y1f7{bottom:246.764000pt;}
.y108{bottom:247.400000pt;}
.y250{bottom:248.712000pt;}
.y218{bottom:249.858667pt;}
.y19a{bottom:251.138667pt;}
.ya4{bottom:252.161333pt;}
.y1d8{bottom:252.486734pt;}
.yc8{bottom:254.085333pt;}
.y148{bottom:254.842667pt;}
.y8f{bottom:256.825333pt;}
.y1ef{bottom:257.890667pt;}
.y28a{bottom:259.142667pt;}
.y71{bottom:259.436000pt;}
.y102{bottom:260.652000pt;}
.y4b{bottom:264.313333pt;}
.y1c0{bottom:266.026667pt;}
.y271{bottom:266.512000pt;}
.y20b{bottom:266.545333pt;}
.yb{bottom:266.580000pt;}
.y2a2{bottom:266.953333pt;}
.y217{bottom:270.633333pt;}
.y199{bottom:271.914667pt;}
.ya3{bottom:272.936000pt;}
.y147{bottom:275.617333pt;}
.y17a{bottom:276.809333pt;}
.y8e{bottom:277.601333pt;}
.y289{bottom:279.917333pt;}
.y70{bottom:280.212000pt;}
.y1f6{bottom:283.480000pt;}
.y248{bottom:283.886667pt;}
.y101{bottom:284.045333pt;}
.yc7{bottom:284.254667pt;}
.y4a{bottom:285.089333pt;}
.y1bf{bottom:286.802667pt;}
.ya{bottom:287.356000pt;}
.y24f{bottom:288.256000pt;}
.y2a8{bottom:290.753333pt;}
.y198{bottom:292.689333pt;}
.ya2{bottom:293.712000pt;}
.y20a{bottom:296.714667pt;}
.y179{bottom:297.585333pt;}
.y1ee{bottom:299.441333pt;}
.y100{bottom:299.610667pt;}
.y288{bottom:300.693333pt;}
.yff{bottom:300.924000pt;}
.y6f{bottom:300.986667pt;}
.y1f5{bottom:304.254667pt;}
.y247{bottom:304.661333pt;}
.yfe{bottom:304.821333pt;}
.y146{bottom:305.786667pt;}
.y49{bottom:305.864000pt;}
.y1be{bottom:307.577333pt;}
.y270{bottom:308.062667pt;}
.y130{bottom:311.177333pt;}
.y197{bottom:313.465333pt;}
.y1e5{bottom:314.797352pt;}
.y8d{bottom:317.145333pt;}
.y178{bottom:318.360000pt;}
.y1ed{bottom:320.217333pt;}
.y6e{bottom:321.762667pt;}
.y246{bottom:325.437333pt;}
.yfd{bottom:325.596000pt;}
.yc6{bottom:325.993333pt;}
.y287{bottom:327.445333pt;}
.y1bd{bottom:328.353333pt;}
.y26f{bottom:328.837333pt;}
.y12f{bottom:331.952000pt;}
.y1e4{bottom:333.732908pt;}
.y196{bottom:334.240000pt;}
.ya1{bottom:335.262667pt;}
.y209{bottom:338.454667pt;}
.y1ec{bottom:340.992000pt;}
.y6d{bottom:342.537333pt;}
.y176{bottom:346.682667pt;}
.yc5{bottom:346.769333pt;}
.y145{bottom:346.916000pt;}
.y48{bottom:347.414667pt;}
.y286{bottom:348.221333pt;}
.y26e{bottom:349.613333pt;}
.y88{bottom:351.204000pt;}
.yfa{bottom:351.892000pt;}
.y1e6{bottom:352.207352pt;}
.y12e{bottom:352.728000pt;}
.y195{bottom:355.016000pt;}
.ya0{bottom:356.037333pt;}
.y16a{bottom:357.070667pt;}
.y1bc{bottom:358.522667pt;}
.y208{bottom:359.229333pt;}
.y1eb{bottom:361.768000pt;}
.y245{bottom:362.152000pt;}
.y6c{bottom:363.313333pt;}
.y9{bottom:364.824000pt;}
.y23{bottom:365.202667pt;}
.y175{bottom:367.457333pt;}
.yc4{bottom:367.544000pt;}
.y144{bottom:367.690667pt;}
.y47{bottom:368.190667pt;}
.y16f{bottom:368.418667pt;}
.y26d{bottom:370.388000pt;}
.yf4{bottom:371.969333pt;}
.yf9{bottom:372.668000pt;}
.y174{bottom:372.772000pt;}
.y12d{bottom:373.502667pt;}
.y285{bottom:374.974667pt;}
.y194{bottom:375.790667pt;}
.y9f{bottom:376.813333pt;}
.y164{bottom:377.146667pt;}
.y16e{bottom:377.728000pt;}
.y169{bottom:377.845333pt;}
.yf8{bottom:377.981333pt;}
.y173{bottom:378.085333pt;}
.y207{bottom:380.005333pt;}
.yf3{bottom:381.277333pt;}
.y1ea{bottom:382.542667pt;}
.y244{bottom:382.928000pt;}
.y168{bottom:383.158667pt;}
.yf7{bottom:383.294667pt;}
.yc3{bottom:383.304000pt;}
.y6b{bottom:384.088000pt;}
.y22{bottom:385.978667pt;}
.yfb{bottom:386.369333pt;}
.y163{bottom:386.456000pt;}
.yc2{bottom:388.320000pt;}
.y143{bottom:388.466667pt;}
.y167{bottom:388.472000pt;}
.y46{bottom:388.965333pt;}
.yf2{bottom:390.005333pt;}
.y177{bottom:391.546667pt;}
.y172{bottom:393.822667pt;}
.y12c{bottom:394.278667pt;}
.y162{bottom:395.182667pt;}
.y284{bottom:395.749333pt;}
.y9e{bottom:397.588000pt;}
.yf1{bottom:398.732000pt;}
.yf6{bottom:399.032000pt;}
.yfc{bottom:399.033333pt;}
.y1bb{bottom:400.262667pt;}
.y206{bottom:400.780000pt;}
.y161{bottom:403.910667pt;}
.y166{bottom:404.210667pt;}
.y6a{bottom:404.864000pt;}
.y26c{bottom:405.568000pt;}
.yf0{bottom:407.460000pt;}
.y45{bottom:409.741333pt;}
.y243{bottom:412.026795pt;}
.y160{bottom:412.637333pt;}
.y1e9{bottom:412.712000pt;}
.yc1{bottom:413.054667pt;}
.y171{bottom:414.598667pt;}
.y12b{bottom:415.053333pt;}
.y193{bottom:415.334667pt;}
.y9d{bottom:418.364000pt;}
.yf5{bottom:419.808000pt;}
.y1ba{bottom:421.037333pt;}
.y21{bottom:421.157333pt;}
.y16d{bottom:421.365333pt;}
.y205{bottom:421.556000pt;}
.y283{bottom:422.502667pt;}
.ybf{bottom:423.032000pt;}
.y8{bottom:423.394667pt;}
.y165{bottom:424.985333pt;}
.y142{bottom:425.001333pt;}
.y242{bottom:425.494837pt;}
.y69{bottom:425.638667pt;}
.y141{bottom:430.017333pt;}
.y44{bottom:430.516000pt;}
.yc0{bottom:432.872000pt;}
.yef{bottom:433.060000pt;}
.y170{bottom:435.373333pt;}
.y15f{bottom:438.237333pt;}
.y16b{bottom:438.238667pt;}
.y241{bottom:438.962015pt;}
.y9c{bottom:439.138667pt;}
.y1b9{bottom:441.813333pt;}
.y282{bottom:443.277333pt;}
.y16c{bottom:446.965333pt;}
.y1e8{bottom:448.502667pt;}
.y2ae{bottom:448.586667pt;}
.y184{bottom:449.393333pt;}
.y140{bottom:450.792000pt;}
.y240{bottom:452.430057pt;}
.y26b{bottom:454.982667pt;}
.yee{bottom:456.454667pt;}
.y12a{bottom:456.604000pt;}
.y1b8{bottom:458.690667pt;}
.y9b{bottom:459.914667pt;}
.y204{bottom:461.098667pt;}
.y1b7{bottom:462.588000pt;}
.y23f{bottom:465.897234pt;}
.y68{bottom:467.189333pt;}
.ybe{bottom:467.633333pt;}
.y3c{bottom:469.248000pt;}
.y281{bottom:470.030667pt;}
.y20{bottom:470.573333pt;}
.y13f{bottom:471.568000pt;}
.y15e{bottom:472.020000pt;}
.y43{bottom:472.066667pt;}
.y26a{bottom:475.758667pt;}
.yed{bottom:477.229333pt;}
.y129{bottom:477.380000pt;}
.y23e{bottom:479.365276pt;}
.y1b6{bottom:479.466667pt;}
.y9a{bottom:480.689333pt;}
.y7{bottom:481.965333pt;}
.y1b5{bottom:483.364000pt;}
.y67{bottom:487.965333pt;}
.ybd{bottom:488.409333pt;}
.y280{bottom:490.805333pt;}
.y1f{bottom:491.348000pt;}
.y1cc{bottom:491.776000pt;}
.y13e{bottom:492.342667pt;}
.y15d{bottom:492.794667pt;}
.y23d{bottom:492.832454pt;}
.y42{bottom:492.842667pt;}
.y269{bottom:496.533333pt;}
.y128{bottom:498.154667pt;}
.y1e7{bottom:500.746667pt;}
.y3b{bottom:504.569333pt;}
.y23c{bottom:506.300496pt;}
.y66{bottom:508.740000pt;}
.ybc{bottom:509.184000pt;}
.y1e{bottom:512.124000pt;}
.y1cb{bottom:512.550667pt;}
.y15c{bottom:513.570667pt;}
.y41{bottom:513.617333pt;}
.yec{bottom:516.773333pt;}
.y268{bottom:517.309333pt;}
.y27f{bottom:517.558667pt;}
.y127{bottom:518.930667pt;}
.y23b{bottom:519.767674pt;}
.y99{bottom:520.233333pt;}
.y25b{bottom:523.342667pt;}
.y1b4{bottom:524.914667pt;}
.y1d6{bottom:528.388000pt;}
.y65{bottom:529.516000pt;}
.y2a1{bottom:529.680000pt;}
.ybb{bottom:529.960000pt;}
.y13d{bottom:531.886667pt;}
.y1d{bottom:532.898667pt;}
.y23a{bottom:533.235716pt;}
.y1ca{bottom:533.326667pt;}
.y15b{bottom:534.345333pt;}
.y40{bottom:534.393333pt;}
.y1e3{bottom:534.805333pt;}
.y1df{bottom:534.806731pt;}
.y27e{bottom:538.334667pt;}
.y126{bottom:539.705333pt;}
.y3a{bottom:539.889333pt;}
.y25a{bottom:544.118667pt;}
.y1b3{bottom:545.689333pt;}
.y239{bottom:546.702893pt;}
.y64{bottom:550.290667pt;}
.yba{bottom:550.734667pt;}
.y1c{bottom:553.674667pt;}
.y1c9{bottom:554.101333pt;}
.y267{bottom:558.860000pt;}
.y27d{bottom:559.109333pt;}
.y6{bottom:559.433333pt;}
.y2a0{bottom:559.849333pt;}
.y216{bottom:560.154667pt;}
.y238{bottom:560.170935pt;}
.ye8{bottom:562.834667pt;}
.y259{bottom:564.893333pt;}
.y131{bottom:565.945333pt;}
.y1b2{bottom:566.465333pt;}
.y125{bottom:569.874667pt;}
.y63{bottom:571.066667pt;}
.y237{bottom:573.638113pt;}
.y15a{bottom:573.889333pt;}
.y1b{bottom:574.449333pt;}
.y39{bottom:575.210667pt;}
.y3f{bottom:575.944000pt;}
.y266{bottom:579.634667pt;}
.y5{bottom:580.209333pt;}
.y1d5{bottom:581.286667pt;}
.y1b1{bottom:583.342667pt;}
.ye7{bottom:583.609333pt;}
.y24e{bottom:586.481333pt;}
.y236{bottom:587.106155pt;}
.y1b0{bottom:587.240000pt;}
.yb9{bottom:590.278667pt;}
.y62{bottom:591.841333pt;}
.y1c8{bottom:593.645333pt;}
.y27c{bottom:594.289333pt;}
.y1a{bottom:595.225333pt;}
.y29f{bottom:595.638667pt;}
.y38{bottom:595.985333pt;}
.y3e{bottom:596.718667pt;}
.y265{bottom:600.410667pt;}
.y235{bottom:600.573333pt;}
.y1f4{bottom:600.818667pt;}
.y87{bottom:601.118667pt;}
.y215{bottom:601.894667pt;}
.ye6{bottom:604.385333pt;}
.y258{bottom:604.437333pt;}
.y24d{bottom:607.257333pt;}
.y14c{bottom:607.948000pt;}
.y1af{bottom:608.016000pt;}
.y124{bottom:611.004000pt;}
.y2a7{bottom:612.278667pt;}
.y61{bottom:612.617333pt;}
.y1d4{bottom:613.774667pt;}
.y234{bottom:614.041375pt;}
.y19{bottom:616.000000pt;}
.y37{bottom:616.761333pt;}
.y264{bottom:621.185333pt;}
.y1f3{bottom:621.593333pt;}
.y86{bottom:621.893333pt;}
.y214{bottom:622.669333pt;}
.yad{bottom:624.337333pt;}
.y1ae{bottom:624.893333pt;}
.ye5{bottom:625.160000pt;}
.y233{bottom:627.508552pt;}
.y1ad{bottom:628.790667pt;}
.y2ac{bottom:631.348000pt;}
.y123{bottom:631.778667pt;}
.y3d{bottom:631.898667pt;}
.y27b{bottom:636.189333pt;}
.y36{bottom:637.536000pt;}
.y4{bottom:638.780000pt;}
.y232{bottom:640.976594pt;}
.y263{bottom:641.961333pt;}
.y85{bottom:642.669333pt;}
.y213{bottom:643.445333pt;}
.y29e{bottom:645.054667pt;}
.y1d3{bottom:645.897333pt;}
.ye4{bottom:645.936000pt;}
.y24c{bottom:648.808000pt;}
.y1ac{bottom:649.566667pt;}
.y18{bottom:651.180000pt;}
.y122{bottom:652.554667pt;}
.y2a6{bottom:653.829333pt;}
.y60{bottom:654.168000pt;}
.y231{bottom:654.443772pt;}
.y1f2{bottom:658.309333pt;}
.y35{bottom:658.312000pt;}
.y3{bottom:659.554667pt;}
.y262{bottom:662.736000pt;}
.y84{bottom:663.444000pt;}
.y212{bottom:664.220000pt;}
.y29d{bottom:665.830667pt;}
.ye3{bottom:666.710667pt;}
.y230{bottom:667.910950pt;}
.y2ab{bottom:668.674667pt;}
.y1ab{bottom:670.341333pt;}
.y121{bottom:673.329333pt;}
.y2a5{bottom:674.605333pt;}
.y5f{bottom:674.942667pt;}
.y1f1{bottom:679.084000pt;}
.y34{bottom:679.086667pt;}
.y29{bottom:681.314667pt;}
.y22f{bottom:681.378992pt;}
.y1d2{bottom:687.448000pt;}
.y24b{bottom:688.350667pt;}
.y27a{bottom:688.433333pt;}
.y2aa{bottom:689.450667pt;}
.y29c{bottom:692.584000pt;}
.y120{bottom:694.105333pt;}
.y22e{bottom:694.846169pt;}
.y5e{bottom:695.718667pt;}
.y2{bottom:699.228000pt;}
.y17{bottom:700.596000pt;}
.y211{bottom:700.936000pt;}
.y28{bottom:702.089333pt;}
.y261{bottom:702.280000pt;}
.y83{bottom:704.994667pt;}
.y1d1{bottom:708.224000pt;}
.ye2{bottom:708.261333pt;}
.y22d{bottom:708.314211pt;}
.y1aa{bottom:711.892000pt;}
.y29b{bottom:713.358667pt;}
.y2a4{bottom:714.149333pt;}
.y33{bottom:714.408000pt;}
.y5d{bottom:716.493333pt;}
.y1{bottom:720.002667pt;}
.y16{bottom:721.370667pt;}
.y210{bottom:721.710667pt;}
.y22c{bottom:721.781389pt;}
.y27{bottom:722.865333pt;}
.y11f{bottom:724.274667pt;}
.y82{bottom:725.770667pt;}
.y1d0{bottom:728.998667pt;}
.ye1{bottom:729.037333pt;}
.y1a9{bottom:732.668000pt;}
.y29a{bottom:734.134667pt;}
.y32{bottom:735.182667pt;}
.y22b{bottom:735.249431pt;}
.y5c{bottom:737.269333pt;}
.y183{bottom:737.690667pt;}
.y81{bottom:746.545333pt;}
.y22a{bottom:748.716609pt;}
.y1cf{bottom:749.774667pt;}
.ye0{bottom:749.812000pt;}
.y1a8{bottom:753.442667pt;}
.y31{bottom:755.958667pt;}
.y15{bottom:756.550667pt;}
.y299{bottom:760.886667pt;}
.y229{bottom:762.184651pt;}
.y26{bottom:764.416000pt;}
.y11e{bottom:766.014667pt;}
.y80{bottom:767.321333pt;}
.yeb{bottom:770.185333pt;}
.ydf{bottom:770.588000pt;}
.y1a7{bottom:774.218667pt;}
.y228{bottom:775.651828pt;}
.y30{bottom:776.733333pt;}
.y5b{bottom:778.820000pt;}
.y298{bottom:781.662667pt;}
.y25{bottom:785.190667pt;}
.y11d{bottom:786.789333pt;}
.y7f{bottom:788.096000pt;}
.y227{bottom:789.119870pt;}
.y203{bottom:790.201333pt;}
.y1a6{bottom:794.993333pt;}
.y2f{bottom:797.509333pt;}
.ydb{bottom:798.909333pt;}
.y5a{bottom:799.594667pt;}
.y226{bottom:802.587048pt;}
.y14{bottom:805.966667pt;}
.y297{bottom:808.414667pt;}
.y202{bottom:810.976000pt;}
.y1a5{bottom:815.768000pt;}
.y225{bottom:816.055090pt;}
.y7e{bottom:818.265333pt;}
.y2e{bottom:818.284000pt;}
.yd5{bottom:818.985333pt;}
.ydd{bottom:818.986667pt;}
.yda{bottom:819.685333pt;}
.y59{bottom:820.370667pt;}
.y11b{bottom:821.089333pt;}
.yd9{bottom:824.998667pt;}
.y13{bottom:826.741333pt;}
.yd4{bottom:828.294667pt;}
.y296{bottom:829.190667pt;}
.y224{bottom:829.522268pt;}
.yd8{bottom:830.312000pt;}
.ydc{bottom:833.386667pt;}
.yd3{bottom:837.022667pt;}
.y2d{bottom:839.060000pt;}
.y58{bottom:841.145333pt;}
.y1a4{bottom:842.065333pt;}
.y223{bottom:842.990310pt;}
.yd2{bottom:845.749333pt;}
.yd7{bottom:846.049333pt;}
.yde{bottom:846.050667pt;}
.y12{bottom:847.517333pt;}
.y11c{bottom:847.557333pt;}
.y11a{bottom:848.228000pt;}
.y295{bottom:849.965333pt;}
.y201{bottom:852.526667pt;}
.y7d{bottom:854.056000pt;}
.yd1{bottom:854.477333pt;}
.y222{bottom:856.457487pt;}
.y2c{bottom:859.834667pt;}
.y57{bottom:861.921333pt;}
.yd6{bottom:866.825333pt;}
.y11{bottom:868.292000pt;}
.y221{bottom:869.925529pt;}
.y119{bottom:872.989333pt;}
.y200{bottom:873.302667pt;}
.y294{bottom:876.718667pt;}
.yd0{bottom:880.077333pt;}
.y56{bottom:882.696000pt;}
.y220{bottom:883.392707pt;}
.y10{bottom:889.068000pt;}
.y1ff{bottom:894.077333pt;}
.y2b{bottom:895.156000pt;}
.y21f{bottom:897.204754pt;}
.y293{bottom:897.494667pt;}
.y55{bottom:903.472000pt;}
.yf{bottom:909.842667pt;}
.y1fe{bottom:914.853333pt;}
.y292{bottom:918.269333pt;}
.y54{bottom:924.246667pt;}
.y2a{bottom:930.477333pt;}
.ye{bottom:930.618667pt;}
.y1fd{bottom:935.628000pt;}
.y2a9{bottom:944.410667pt;}
.y7c{bottom:945.022667pt;}
.yd{bottom:965.797333pt;}
.h10{height:2.909093pt;}
.h35{height:24.461719pt;}
.h15{height:26.208984pt;}
.h33{height:27.179705pt;}
.h44{height:28.287296pt;}
.h13{height:29.121113pt;}
.hf{height:29.925069pt;}
.h11{height:31.880400pt;}
.h34{height:32.615639pt;}
.h23{height:33.301888pt;}
.h41{height:34.945311pt;}
.h30{height:34.945312pt;}
.h14{height:34.945327pt;}
.h2e{height:38.828150pt;}
.h4{height:39.850400pt;}
.h43{height:40.769520pt;}
.h2{height:40.960034pt;}
.h2b{height:41.934375pt;}
.h31{height:42.710930pt;}
.h3{height:43.636400pt;}
.h9{height:44.632747pt;}
.h39{height:44.870858pt;}
.h36{height:44.876191pt;}
.h2f{height:46.593769pt;}
.h29{height:46.593780pt;}
.h1b{height:51.034402pt;}
.h16{height:51.039735pt;}
.h1c{height:51.242402pt;}
.h3f{height:51.321817pt;}
.h1f{height:52.989733pt;}
.h18{height:52.995067pt;}
.h20{height:53.197733pt;}
.h5{height:53.559147pt;}
.h3c{height:53.938551pt;}
.h26{height:53.951735pt;}
.h1{height:55.024034pt;}
.h3a{height:55.901733pt;}
.h1d{height:55.907067pt;}
.h2a{height:55.912523pt;}
.h38{height:59.225733pt;}
.h37{height:60.465525pt;}
.h2c{height:60.541733pt;}
.h27{height:60.626427pt;}
.h8{height:63.700400pt;}
.hb{height:66.216337pt;}
.h21{height:66.629069pt;}
.h3d{height:68.584400pt;}
.h22{height:71.882402pt;}
.h6{height:77.574027pt;}
.h25{height:80.825733pt;}
.h1a{height:80.831067pt;}
.h17{height:86.084882pt;}
.h3b{height:95.231067pt;}
.he{height:102.402427pt;}
.h7{height:114.022027pt;}
.hc{height:148.019610pt;}
.hd{height:150.311915pt;}
.h19{height:189.671760pt;}
.h24{height:189.677093pt;}
.ha{height:229.819995pt;}
.h1e{height:247.271760pt;}
.h12{height:259.037811pt;}
.h32{height:261.631124pt;}
.h3e{height:276.480005pt;}
.h40{height:346.500000pt;}
.h42{height:369.345398pt;}
.h2d{height:372.462199pt;}
.h28{height:414.460498pt;}
.h0{height:1056.000000pt;}
.w6{width:324.862400pt;}
.w8{width:346.500000pt;}
.w3{width:595.109619pt;}
.w1{width:602.982825pt;}
.w2{width:608.824219pt;}
.w4{width:636.227417pt;}
.w5{width:656.128719pt;}
.w7{width:666.479981pt;}
.w0{width:816.000000pt;}
.x5a{left:-1.234376pt;}
.x0{left:0.000000pt;}
.x88{left:10.442873pt;}
.x5c{left:16.475011pt;}
.x72{left:20.767502pt;}
.x6f{left:25.180850pt;}
.x70{left:29.624213pt;}
.x99{left:35.267412pt;}
.x98{left:39.828826pt;}
.x5b{left:71.782855pt;}
.x89{left:75.583891pt;}
.x15{left:102.393441pt;}
.x10{left:113.385333pt;}
.x9a{left:115.554667pt;}
.x86{left:119.637065pt;}
.xa0{left:120.658667pt;}
.x9b{left:121.695034pt;}
.x64{left:124.464000pt;}
.x97{left:128.578276pt;}
.x6{left:131.718667pt;}
.x66{left:132.671539pt;}
.x5d{left:134.274904pt;}
.x1{left:135.789333pt;}
.x9d{left:140.920400pt;}
.x9c{left:143.277437pt;}
.x95{left:145.030600pt;}
.x68{left:147.429362pt;}
.x8d{left:150.168000pt;}
.x87{left:163.527001pt;}
.x5f{left:167.105394pt;}
.x12{left:168.658667pt;}
.x8e{left:175.702667pt;}
.x9f{left:179.110667pt;}
.x28{left:185.494667pt;}
.x8{left:189.960000pt;}
.x73{left:192.101333pt;}
.x67{left:193.519232pt;}
.x96{left:195.646667pt;}
.x9e{left:197.697333pt;}
.x74{left:198.664000pt;}
.x16{left:200.253300pt;}
.x17{left:202.565333pt;}
.x8f{left:207.016000pt;}
.x3d{left:208.605333pt;}
.x85{left:213.116131pt;}
.x49{left:216.926667pt;}
.x5e{left:222.413249pt;}
.xa1{left:223.556000pt;}
.x3c{left:227.466667pt;}
.x4b{left:229.654667pt;}
.x2{left:231.930667pt;}
.x58{left:234.032000pt;}
.x2e{left:235.022667pt;}
.x1e{left:236.107969pt;}
.x9{left:238.161333pt;}
.x4a{left:239.113333pt;}
.x93{left:242.060000pt;}
.x69{left:245.595935pt;}
.x20{left:247.176336pt;}
.x3e{left:249.645333pt;}
.x4c{left:250.633333pt;}
.x2f{left:253.682667pt;}
.x30{left:258.476000pt;}
.x3f{left:262.373333pt;}
.x59{left:265.345333pt;}
.x1d{left:267.797333pt;}
.x31{left:273.242667pt;}
.x7{left:280.646667pt;}
.x1f{left:281.743739pt;}
.x4d{left:282.753333pt;}
.x18{left:284.056000pt;}
.x2d{left:286.596000pt;}
.xe{left:288.556000pt;}
.x32{left:290.010667pt;}
.xd{left:292.898667pt;}
.x50{left:295.481333pt;}
.x4e{left:299.156000pt;}
.x65{left:300.060000pt;}
.x92{left:302.020000pt;}
.x60{left:303.995173pt;}
.x33{left:305.364000pt;}
.x4f{left:307.364000pt;}
.x7d{left:313.970061pt;}
.xf{left:316.838667pt;}
.x36{left:318.090667pt;}
.x6a{left:319.044556pt;}
.x21{left:320.801266pt;}
.x34{left:324.024000pt;}
.x71{left:329.002292pt;}
.x35{left:332.230667pt;}
.x91{left:340.176000pt;}
.x22{left:341.320323pt;}
.xb{left:342.404000pt;}
.x40{left:344.037333pt;}
.x7c{left:346.232970pt;}
.x5{left:351.161333pt;}
.x29{left:357.513333pt;}
.x41{left:361.668000pt;}
.xa{left:364.137333pt;}
.x94{left:367.565333pt;}
.x1a{left:374.506667pt;}
.x1b{left:375.876000pt;}
.x61{left:379.235062pt;}
.xc{left:380.214667pt;}
.x19{left:381.585333pt;}
.x7e{left:382.686662pt;}
.x6b{left:387.031223pt;}
.x42{left:394.662667pt;}
.x1c{left:397.940000pt;}
.x57{left:400.726667pt;}
.x80{left:401.837781pt;}
.x11{left:404.364000pt;}
.x47{left:416.501333pt;}
.x2a{left:418.837333pt;}
.x2b{left:425.832000pt;}
.x23{left:426.877732pt;}
.x43{left:430.016000pt;}
.x7f{left:434.100697pt;}
.x84{left:435.624677pt;}
.x62{left:438.411166pt;}
.x25{left:439.335260pt;}
.x45{left:442.742667pt;}
.x51{left:447.582667pt;}
.x6c{left:449.731130pt;}
.x44{left:459.457333pt;}
.x52{left:462.734667pt;}
.x75{left:468.302667pt;}
.x24{left:473.902663pt;}
.x55{left:475.461333pt;}
.x37{left:481.854667pt;}
.x76{left:483.453333pt;}
.x48{left:488.681333pt;}
.x53{left:492.176000pt;}
.x82{left:493.318369pt;}
.x90{left:495.302667pt;}
.x38{left:497.005333pt;}
.x6d{left:499.044550pt;}
.x8a{left:502.130667pt;}
.x77{left:503.453333pt;}
.x3a{left:509.733333pt;}
.x26{left:510.887727pt;}
.x3{left:514.837333pt;}
.x13{left:519.602667pt;}
.x81{left:525.581278pt;}
.x54{left:528.882667pt;}
.x78{left:535.574667pt;}
.x39{left:536.972000pt;}
.x7a{left:548.302667pt;}
.x63{left:550.081481pt;}
.x8b{left:551.137333pt;}
.x46{left:553.626667pt;}
.x79{left:557.909333pt;}
.x3b{left:568.250667pt;}
.x27{left:580.681674pt;}
.x14{left:584.108000pt;}
.x56{left:586.345333pt;}
.x6e{left:592.103146pt;}
.x4{left:602.473333pt;}
.x83{left:614.560954pt;}
.x7b{left:617.334667pt;}
.x2c{left:684.028000pt;}
.x8c{left:696.304000pt;}
}




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