
    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_40a005ba77f0f53f6dd175c2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.727539;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_8ec7ab25fe87314a693194cc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e0dfe9385bdd05b198ec8889.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_0b8cc3c7826f9beb98920040.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_d8d8a42f7ad23181dce45229.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_22688e077d77f9e996520fae.woff')format("woff");}.ff6{font-family:ff6;line-height:0.770000;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_2b317aace8f69a4ef31d12d2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682000;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_3190895773795f3751115084.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_d5510508030593974d18c6e2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.862000;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_75b63c6832f61c92784b3d0c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.858000;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_d5510508030593974d18c6e2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.862000;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_3190895773795f3751115084.woff')format("woff");}.ffc{font-family:ffc;line-height:0.740000;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_0154b5e41ed4f5529c4627bb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.857000;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_9d0f048c0ad42d9603952464.woff')format("woff");}.ffe{font-family:ffe;line-height:0.715000;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_fad5b038a30095ed8c14be38.woff')format("woff");}.fff{font-family:fff;line-height:0.893555;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_6bbd8548f0f8d5068c3c1e63.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_9d0f048c0ad42d9603952464.woff')format("woff");}.ff11{font-family:ff11;line-height:0.715000;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_d5510508030593974d18c6e2.woff')format("woff");}.ff12{font-family:ff12;line-height:0.862000;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_d5510508030593974d18c6e2.woff')format("woff");}.ff13{font-family:ff13;line-height:0.862000;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_9d0f048c0ad42d9603952464.woff')format("woff");}.ff14{font-family:ff14;line-height:0.715000;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;}
.m7{transform:matrix(0.016898,0.249428,-0.249428,0.016898,0,0);-ms-transform:matrix(0.016898,0.249428,-0.249428,0.016898,0,0);-webkit-transform:matrix(0.016898,0.249428,-0.249428,0.016898,0,0);}
.m6{transform:matrix(0.142576,0.205359,-0.205359,0.142576,0,0);-ms-transform:matrix(0.142576,0.205359,-0.205359,0.142576,0,0);-webkit-transform:matrix(0.142576,0.205359,-0.205359,0.142576,0,0);}
.m2{transform:matrix(0.216508,0.124997,-0.124997,0.216508,0,0);-ms-transform:matrix(0.216508,0.124997,-0.124997,0.216508,0,0);-webkit-transform:matrix(0.216508,0.124997,-0.124997,0.216508,0,0);}
.m1{transform:matrix(0.221775,0.115395,-0.115395,0.221775,0,0);-ms-transform:matrix(0.221775,0.115395,-0.115395,0.221775,0,0);-webkit-transform:matrix(0.221775,0.115395,-0.115395,0.221775,0,0);}
.m4{transform:matrix(0.228103,0.154612,-0.150043,0.199968,0,0);-ms-transform:matrix(0.228103,0.154612,-0.150043,0.199968,0,0);-webkit-transform:matrix(0.228103,0.154612,-0.150043,0.199968,0,0);}
.m3{transform:matrix(0.232295,0.151176,-0.147197,0.202072,0,0);-ms-transform:matrix(0.232295,0.151176,-0.147197,0.202072,0,0);-webkit-transform:matrix(0.232295,0.151176,-0.147197,0.202072,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);}
.m5{transform:matrix(0.261896,0.085687,-0.089066,0.233596,0,0);-ms-transform:matrix(0.261896,0.085687,-0.089066,0.233596,0,0);-webkit-transform:matrix(0.261896,0.085687,-0.089066,0.233596,0,0);}
.v2{vertical-align:-18.023317px;}
.v3{vertical-align:-16.966200px;}
.v6{vertical-align:-12.993000px;}
.v5{vertical-align:-10.230000px;}
.v4{vertical-align:-7.056551px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.137115px;}
.ls3f{letter-spacing:-5.355000px;}
.ls44{letter-spacing:-4.977000px;}
.ls3e{letter-spacing:-3.528000px;}
.ls3c{letter-spacing:-2.457000px;}
.ls1f{letter-spacing:-2.243867px;}
.ls8{letter-spacing:-1.449000px;}
.ls18{letter-spacing:-1.375273px;}
.ls22{letter-spacing:-1.302854px;}
.ls3a{letter-spacing:-1.197000px;}
.ls2b{letter-spacing:-1.134000px;}
.ls25{letter-spacing:-1.008000px;}
.ls13{letter-spacing:-0.916822px;}
.ls26{letter-spacing:-0.819000px;}
.ls1c{letter-spacing:-0.796211px;}
.ls15{letter-spacing:-0.772061px;}
.ls19{letter-spacing:-0.760019px;}
.ls31{letter-spacing:-0.756000px;}
.ls3b{letter-spacing:-0.693000px;}
.ls2f{letter-spacing:-0.630000px;}
.ls21{letter-spacing:-0.579062px;}
.ls11{letter-spacing:-0.579046px;}
.ls30{letter-spacing:-0.567000px;}
.ls2{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.530792px;}
.ls46{letter-spacing:-0.510000px;}
.ls1a{letter-spacing:-0.506680px;}
.ls7{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.482538px;}
.ls17{letter-spacing:-0.470488px;}
.lsd{letter-spacing:-0.441000px;}
.ls10{letter-spacing:-0.434285px;}
.ls3d{letter-spacing:-0.378000px;}
.ls1b{letter-spacing:-0.361914px;}
.ls12{letter-spacing:-0.325723px;}
.ls5{letter-spacing:-0.315000px;}
.ls35{letter-spacing:-0.252000px;}
.lsf{letter-spacing:-0.189000px;}
.ls1d{letter-spacing:-0.180957px;}
.lsc{letter-spacing:-0.126000px;}
.ls1e{letter-spacing:-0.072383px;}
.lsb{letter-spacing:-0.063000px;}
.ls23{letter-spacing:-0.042221px;}
.ls1{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.063000px;}
.lse{letter-spacing:0.126000px;}
.ls20{letter-spacing:0.180957px;}
.ls6{letter-spacing:0.189000px;}
.ls27{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.315000px;}
.ls2e{letter-spacing:0.378000px;}
.ls2c{letter-spacing:0.441000px;}
.ls43{letter-spacing:0.504000px;}
.ls45{letter-spacing:0.510000px;}
.ls0{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.567000px;}
.ls28{letter-spacing:0.630000px;}
.ls2a{letter-spacing:0.693000px;}
.ls9{letter-spacing:0.756000px;}
.ls41{letter-spacing:1.008000px;}
.ls42{letter-spacing:1.134000px;}
.ls3{letter-spacing:1.890000px;}
.ls39{letter-spacing:3.087000px;}
.ls32{letter-spacing:3.730897px;}
.ls4{letter-spacing:5.922000px;}
.ls40{letter-spacing:7.560000px;}
.ls24{letter-spacing:8.271900px;}
.ls38{letter-spacing:12.852000px;}
.ls37{letter-spacing:97.584331px;}
.ls33{letter-spacing:1041.029777px;}
.ls34{letter-spacing:1084.579297px;}
.ls36{letter-spacing:1598.012489px;}
.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;}
}
.wsb9{word-spacing:-108.405754px;}
.ws106{word-spacing:-16.884000px;}
.ws105{word-spacing:-16.758000px;}
.wsd7{word-spacing:-16.506000px;}
.wsd1{word-spacing:-16.443000px;}
.ws130{word-spacing:-16.254000px;}
.wsd2{word-spacing:-16.191000px;}
.wsd3{word-spacing:-16.128000px;}
.ws50{word-spacing:-15.939000px;}
.wsd5{word-spacing:-15.813000px;}
.wsd4{word-spacing:-15.750000px;}
.ws4f{word-spacing:-15.624000px;}
.ws108{word-spacing:-15.561000px;}
.ws131{word-spacing:-15.246000px;}
.ws109{word-spacing:-15.183000px;}
.wsd6{word-spacing:-15.057000px;}
.ws4e{word-spacing:-14.931000px;}
.ws0{word-spacing:-14.040000px;}
.wsbb{word-spacing:-12.750000px;}
.ws2c{word-spacing:-12.268837px;}
.ws1c{word-spacing:-12.268546px;}
.wsb8{word-spacing:-11.025000px;}
.ws2d{word-spacing:-10.965691px;}
.ws1a{word-spacing:-10.905359px;}
.ws107{word-spacing:-10.773000px;}
.ws21{word-spacing:-10.326313px;}
.ws20{word-spacing:-10.133298px;}
.ws1f{word-spacing:-9.988537px;}
.ws2f{word-spacing:-9.499815px;}
.ws132{word-spacing:-9.450000px;}
.ws9e{word-spacing:-8.925000px;}
.ws2a{word-spacing:-8.360213px;}
.ws1d{word-spacing:-8.179256px;}
.ws24{word-spacing:-7.853534px;}
.ws28{word-spacing:-7.817342px;}
.ws26{word-spacing:-7.672577px;}
.ws2b{word-spacing:-7.600194px;}
.ws25{word-spacing:-7.419237px;}
.ws29{word-spacing:-7.383046px;}
.ws23{word-spacing:-6.803983px;}
.ws129{word-spacing:-6.237000px;}
.wse0{word-spacing:-5.607000px;}
.ws12a{word-spacing:-5.481000px;}
.wsdf{word-spacing:-4.914000px;}
.ws98{word-spacing:-4.473000px;}
.wscf{word-spacing:-4.284000px;}
.ws19a{word-spacing:-4.131000px;}
.wsd{word-spacing:-4.104000px;}
.ws138{word-spacing:-3.996000px;}
.wsea{word-spacing:-3.591000px;}
.wsc5{word-spacing:-3.465000px;}
.ws8{word-spacing:-3.294000px;}
.ws120{word-spacing:-3.276000px;}
.ws7b{word-spacing:-3.213000px;}
.ws79{word-spacing:-3.087000px;}
.ws6c{word-spacing:-3.024000px;}
.ws134{word-spacing:-2.970000px;}
.ws68{word-spacing:-2.898000px;}
.ws13f{word-spacing:-2.862000px;}
.ws146{word-spacing:-2.805000px;}
.wsbc{word-spacing:-2.709000px;}
.wsf{word-spacing:-2.646000px;}
.ws152{word-spacing:-2.601000px;}
.wsc0{word-spacing:-2.583000px;}
.ws16d{word-spacing:-2.550000px;}
.wsf9{word-spacing:-2.520000px;}
.ws77{word-spacing:-2.457000px;}
.ws19b{word-spacing:-2.448000px;}
.ws13{word-spacing:-2.430000px;}
.ws9b{word-spacing:-2.394000px;}
.ws133{word-spacing:-2.331000px;}
.ws111{word-spacing:-2.268000px;}
.wsd8{word-spacing:-2.205000px;}
.ws53{word-spacing:-2.142000px;}
.wse5{word-spacing:-2.079000px;}
.ws19{word-spacing:-2.052000px;}
.ws52{word-spacing:-2.016000px;}
.ws15a{word-spacing:-1.989000px;}
.wsa2{word-spacing:-1.953000px;}
.wscc{word-spacing:-1.938000px;}
.wsa0{word-spacing:-1.890000px;}
.ws159{word-spacing:-1.887000px;}
.wsaa{word-spacing:-1.827000px;}
.ws11e{word-spacing:-1.764000px;}
.ws17e{word-spacing:-1.734000px;}
.ws71{word-spacing:-1.701000px;}
.ws11b{word-spacing:-1.638000px;}
.ws151{word-spacing:-1.632000px;}
.wscd{word-spacing:-1.581000px;}
.ws5a{word-spacing:-1.575000px;}
.wsab{word-spacing:-1.512000px;}
.wsd0{word-spacing:-1.479000px;}
.ws112{word-spacing:-1.449000px;}
.ws13b{word-spacing:-1.404000px;}
.ws124{word-spacing:-1.386000px;}
.wsc{word-spacing:-1.296000px;}
.ws16e{word-spacing:-1.224000px;}
.ws9a{word-spacing:-1.197000px;}
.ws123{word-spacing:-1.134000px;}
.ws19c{word-spacing:-1.122000px;}
.wsa4{word-spacing:-1.071000px;}
.wsee{word-spacing:-1.008000px;}
.ws72{word-spacing:-0.945000px;}
.ws64{word-spacing:-0.819000px;}
.ws158{word-spacing:-0.816000px;}
.ws194{word-spacing:-0.765000px;}
.ws183{word-spacing:-0.714000px;}
.wsec{word-spacing:-0.693000px;}
.ws18c{word-spacing:-0.663000px;}
.ws143{word-spacing:-0.612000px;}
.ws8b{word-spacing:-0.567000px;}
.wsb7{word-spacing:-0.561000px;}
.wsa{word-spacing:-0.540000px;}
.ws156{word-spacing:-0.510000px;}
.wse4{word-spacing:-0.504000px;}
.ws16a{word-spacing:-0.459000px;}
.ws7c{word-spacing:-0.441000px;}
.ws173{word-spacing:-0.408000px;}
.ws6{word-spacing:-0.378000px;}
.ws3c{word-spacing:-0.315000px;}
.ws14c{word-spacing:-0.306000px;}
.ws14e{word-spacing:-0.255000px;}
.ws104{word-spacing:-0.252000px;}
.ws34{word-spacing:-0.189000px;}
.ws149{word-spacing:-0.153000px;}
.ws69{word-spacing:-0.126000px;}
.wsba{word-spacing:-0.078407px;}
.ws6b{word-spacing:-0.063000px;}
.wsb5{word-spacing:-0.051000px;}
.ws22{word-spacing:-0.030643px;}
.ws3{word-spacing:0.000000px;}
.ws16f{word-spacing:0.051000px;}
.ws13d{word-spacing:0.054000px;}
.wsa5{word-spacing:0.063000px;}
.ws4a{word-spacing:0.072383px;}
.ws58{word-spacing:0.126000px;}
.ws7a{word-spacing:0.189000px;}
.ws16{word-spacing:0.216000px;}
.ws121{word-spacing:0.252000px;}
.ws13e{word-spacing:0.270000px;}
.ws189{word-spacing:0.306000px;}
.ws36{word-spacing:0.315000px;}
.ws3d{word-spacing:0.378000px;}
.ws185{word-spacing:0.408000px;}
.ws45{word-spacing:0.434285px;}
.ws61{word-spacing:0.441000px;}
.ws49{word-spacing:0.470488px;}
.ws47{word-spacing:0.482538px;}
.ws35{word-spacing:0.504000px;}
.ws144{word-spacing:0.510000px;}
.ws48{word-spacing:0.530792px;}
.ws18{word-spacing:0.540000px;}
.ws46{word-spacing:0.579046px;}
.ws86{word-spacing:0.630000px;}
.ws157{word-spacing:0.663000px;}
.ws12d{word-spacing:0.693000px;}
.ws10{word-spacing:0.702000px;}
.wsb4{word-spacing:0.714000px;}
.ws8e{word-spacing:0.756000px;}
.ws19e{word-spacing:0.765000px;}
.wse{word-spacing:0.810000px;}
.wse9{word-spacing:0.819000px;}
.ws182{word-spacing:0.867000px;}
.ws85{word-spacing:0.882000px;}
.ws171{word-spacing:0.969000px;}
.wsc1{word-spacing:1.008000px;}
.ws95{word-spacing:1.071000px;}
.ws150{word-spacing:1.122000px;}
.ws78{word-spacing:1.134000px;}
.ws7{word-spacing:1.188000px;}
.ws119{word-spacing:1.197000px;}
.ws167{word-spacing:1.224000px;}
.wsce{word-spacing:1.275000px;}
.wsc4{word-spacing:1.323000px;}
.ws14{word-spacing:1.350000px;}
.ws12{word-spacing:1.404000px;}
.ws39{word-spacing:1.449000px;}
.ws16c{word-spacing:1.479000px;}
.ws9{word-spacing:1.512000px;}
.ws14a{word-spacing:1.530000px;}
.wsc6{word-spacing:1.575000px;}
.wsb1{word-spacing:1.638000px;}
.ws11{word-spacing:1.674000px;}
.ws195{word-spacing:1.683000px;}
.ws13c{word-spacing:1.728000px;}
.wsf8{word-spacing:1.764000px;}
.ws11d{word-spacing:1.827000px;}
.ws153{word-spacing:1.836000px;}
.ws127{word-spacing:1.890000px;}
.wse3{word-spacing:1.953000px;}
.wsf4{word-spacing:2.016000px;}
.wsc8{word-spacing:2.079000px;}
.wsf6{word-spacing:2.142000px;}
.ws97{word-spacing:2.205000px;}
.wsb{word-spacing:2.214000px;}
.ws4b{word-spacing:2.243867px;}
.ws191{word-spacing:2.244000px;}
.ws88{word-spacing:2.268000px;}
.ws4c{word-spacing:2.295000px;}
.ws90{word-spacing:2.331000px;}
.ws114{word-spacing:2.394000px;}
.ws188{word-spacing:2.397000px;}
.wsb0{word-spacing:2.457000px;}
.ws19d{word-spacing:2.499000px;}
.ws10e{word-spacing:2.520000px;}
.ws14d{word-spacing:2.550000px;}
.ws18a{word-spacing:2.601000px;}
.ws12c{word-spacing:2.646000px;}
.ws186{word-spacing:2.652000px;}
.wsa8{word-spacing:2.709000px;}
.ws15{word-spacing:2.754000px;}
.ws11f{word-spacing:2.772000px;}
.ws181{word-spacing:2.805000px;}
.wsb6{word-spacing:2.856000px;}
.wscb{word-spacing:2.898000px;}
.ws175{word-spacing:2.907000px;}
.ws18d{word-spacing:2.958000px;}
.ws9c{word-spacing:2.961000px;}
.wsb3{word-spacing:3.111000px;}
.wsfd{word-spacing:3.213000px;}
.wsc3{word-spacing:3.339000px;}
.ws180{word-spacing:3.366000px;}
.ws96{word-spacing:3.402000px;}
.ws178{word-spacing:3.417000px;}
.ws33{word-spacing:3.465000px;}
.ws17d{word-spacing:3.468000px;}
.wsbd{word-spacing:3.528000px;}
.ws15d{word-spacing:3.570000px;}
.ws135{word-spacing:3.618000px;}
.ws170{word-spacing:3.621000px;}
.ws59{word-spacing:3.654000px;}
.ws10d{word-spacing:3.717000px;}
.ws15f{word-spacing:3.723000px;}
.wse6{word-spacing:3.780000px;}
.ws179{word-spacing:3.825000px;}
.ws6e{word-spacing:3.843000px;}
.ws184{word-spacing:3.876000px;}
.wsae{word-spacing:3.906000px;}
.ws139{word-spacing:3.942000px;}
.ws118{word-spacing:3.969000px;}
.ws147{word-spacing:4.029000px;}
.wsdd{word-spacing:4.032000px;}
.ws19f{word-spacing:4.080000px;}
.wsd9{word-spacing:4.095000px;}
.ws18b{word-spacing:4.131000px;}
.ws161{word-spacing:4.182000px;}
.ws10a{word-spacing:4.221000px;}
.ws101{word-spacing:4.284000px;}
.ws177{word-spacing:4.335000px;}
.ws193{word-spacing:4.386000px;}
.ws6a{word-spacing:4.410000px;}
.ws4d{word-spacing:4.437000px;}
.wseb{word-spacing:4.473000px;}
.ws15e{word-spacing:4.488000px;}
.ws8f{word-spacing:4.536000px;}
.ws160{word-spacing:4.590000px;}
.ws10b{word-spacing:4.599000px;}
.wsdc{word-spacing:4.662000px;}
.wsa1{word-spacing:4.725000px;}
.ws140{word-spacing:4.743000px;}
.ws54{word-spacing:4.788000px;}
.ws30{word-spacing:4.860000px;}
.ws190{word-spacing:4.896000px;}
.ws55{word-spacing:4.914000px;}
.ws17c{word-spacing:4.998000px;}
.ws73{word-spacing:5.040000px;}
.ws145{word-spacing:5.049000px;}
.ws142{word-spacing:5.100000px;}
.wsad{word-spacing:5.103000px;}
.ws148{word-spacing:5.151000px;}
.ws3b{word-spacing:5.166000px;}
.ws17a{word-spacing:5.202000px;}
.wsfa{word-spacing:5.229000px;}
.wsa3{word-spacing:5.292000px;}
.ws5{word-spacing:5.346000px;}
.ws70{word-spacing:5.355000px;}
.ws99{word-spacing:5.418000px;}
.ws44{word-spacing:5.481000px;}
.ws5d{word-spacing:5.544000px;}
.ws40{word-spacing:5.607000px;}
.ws174{word-spacing:5.661000px;}
.wsfb{word-spacing:5.670000px;}
.ws89{word-spacing:5.733000px;}
.ws17f{word-spacing:5.763000px;}
.ws31{word-spacing:5.796000px;}
.ws51{word-spacing:5.832000px;}
.ws6f{word-spacing:5.922000px;}
.wsa9{word-spacing:5.985000px;}
.wsaf{word-spacing:6.048000px;}
.ws164{word-spacing:6.171000px;}
.ws80{word-spacing:6.174000px;}
.ws18e{word-spacing:6.222000px;}
.ws3a{word-spacing:6.237000px;}
.ws2{word-spacing:6.255000px;}
.ws113{word-spacing:6.300000px;}
.ws155{word-spacing:6.324000px;}
.ws8c{word-spacing:6.363000px;}
.ws94{word-spacing:6.489000px;}
.ws67{word-spacing:6.552000px;}
.wsf2{word-spacing:6.615000px;}
.ws14f{word-spacing:6.732000px;}
.ws41{word-spacing:6.741000px;}
.ws122{word-spacing:6.804000px;}
.ws17b{word-spacing:6.885000px;}
.wse8{word-spacing:7.056000px;}
.wsa7{word-spacing:7.245000px;}
.ws2e{word-spacing:7.304302px;}
.ws83{word-spacing:7.308000px;}
.ws15c{word-spacing:7.344000px;}
.ws3f{word-spacing:7.371000px;}
.ws12b{word-spacing:7.434000px;}
.ws27{word-spacing:7.455428px;}
.ws3e{word-spacing:7.497000px;}
.ws66{word-spacing:7.560000px;}
.ws15b{word-spacing:7.599000px;}
.wsa6{word-spacing:7.623000px;}
.ws18f{word-spacing:7.650000px;}
.ws11c{word-spacing:7.686000px;}
.ws13a{word-spacing:7.776000px;}
.ws9d{word-spacing:7.875000px;}
.ws163{word-spacing:7.905000px;}
.wsed{word-spacing:7.938000px;}
.ws65{word-spacing:8.001000px;}
.ws57{word-spacing:8.064000px;}
.ws100{word-spacing:8.127000px;}
.ws56{word-spacing:8.190000px;}
.ws12e{word-spacing:8.316000px;}
.ws6d{word-spacing:8.379000px;}
.ws116{word-spacing:8.442000px;}
.ws169{word-spacing:8.466000px;}
.ws117{word-spacing:8.505000px;}
.ws5f{word-spacing:8.568000px;}
.ws5c{word-spacing:8.631000px;}
.ws162{word-spacing:8.670000px;}
.ws62{word-spacing:8.694000px;}
.ws198{word-spacing:8.721000px;}
.ws43{word-spacing:8.757000px;}
.ws60{word-spacing:8.820000px;}
.wsf1{word-spacing:8.946000px;}
.ws4{word-spacing:9.000000px;}
.ws82{word-spacing:9.072000px;}
.wsbf{word-spacing:9.135000px;}
.ws136{word-spacing:9.234000px;}
.ws63{word-spacing:9.261000px;}
.ws128{word-spacing:9.324000px;}
.ws16b{word-spacing:9.333000px;}
.ws168{word-spacing:9.384000px;}
.ws38{word-spacing:9.450000px;}
.ws166{word-spacing:9.486000px;}
.ws10c{word-spacing:9.513000px;}
.wsac{word-spacing:9.639000px;}
.ws92{word-spacing:9.702000px;}
.wse2{word-spacing:9.765000px;}
.ws14b{word-spacing:9.792000px;}
.wsc9{word-spacing:9.828000px;}
.ws165{word-spacing:9.894000px;}
.ws126{word-spacing:9.954000px;}
.ws199{word-spacing:9.996000px;}
.wsca{word-spacing:10.017000px;}
.wsfc{word-spacing:10.080000px;}
.ws37{word-spacing:10.143000px;}
.wsc7{word-spacing:10.269000px;}
.ws42{word-spacing:10.332000px;}
.ws8a{word-spacing:10.395000px;}
.ws84{word-spacing:10.458000px;}
.wsc2{word-spacing:10.584000px;}
.ws5b{word-spacing:10.647000px;}
.wsbe{word-spacing:10.710000px;}
.ws8d{word-spacing:10.836000px;}
.ws172{word-spacing:10.914000px;}
.wsde{word-spacing:11.025000px;}
.ws141{word-spacing:11.118000px;}
.wsff{word-spacing:11.277000px;}
.ws110{word-spacing:11.340000px;}
.ws103{word-spacing:11.466000px;}
.ws154{word-spacing:11.475000px;}
.ws5e{word-spacing:11.529000px;}
.wsf7{word-spacing:11.592000px;}
.ws9f{word-spacing:11.655000px;}
.ws10f{word-spacing:11.781000px;}
.ws102{word-spacing:11.844000px;}
.wsfe{word-spacing:11.907000px;}
.ws115{word-spacing:11.970000px;}
.ws76{word-spacing:12.033000px;}
.ws74{word-spacing:12.096000px;}
.ws196{word-spacing:12.189000px;}
.wsf0{word-spacing:12.348000px;}
.wsdb{word-spacing:12.411000px;}
.ws32{word-spacing:12.600000px;}
.ws75{word-spacing:12.663000px;}
.ws176{word-spacing:12.750000px;}
.ws125{word-spacing:12.789000px;}
.ws12f{word-spacing:12.852000px;}
.ws87{word-spacing:13.104000px;}
.ws187{word-spacing:13.362000px;}
.ws192{word-spacing:13.413000px;}
.wsf3{word-spacing:13.482000px;}
.ws93{word-spacing:13.608000px;}
.ws197{word-spacing:13.617000px;}
.ws17{word-spacing:13.716000px;}
.wsb2{word-spacing:13.797000px;}
.ws7f{word-spacing:14.049000px;}
.wsda{word-spacing:14.364000px;}
.ws137{word-spacing:15.174000px;}
.wse1{word-spacing:15.309000px;}
.ws81{word-spacing:15.435000px;}
.wsf5{word-spacing:15.687000px;}
.ws1{word-spacing:16.967758px;}
.ws11a{word-spacing:17.451000px;}
.ws7d{word-spacing:17.892000px;}
.ws7e{word-spacing:18.018000px;}
.ws1e{word-spacing:21.810971px;}
.ws91{word-spacing:21.861000px;}
.wse7{word-spacing:22.491000px;}
.wsef{word-spacing:27.090000px;}
.ws1b{word-spacing:674.770008px;}
._17{margin-left:-1448.612903px;}
._16{margin-left:-233.426700px;}
._10{margin-left:-97.362548px;}
._12{margin-left:-30.807000px;}
._18{margin-left:-29.091000px;}
._14{margin-left:-18.211200px;}
._13{margin-left:-15.895800px;}
._1b{margin-left:-12.750000px;}
._3{margin-left:-9.230400px;}
._5{margin-left:-7.956000px;}
._6{margin-left:-6.421200px;}
._1{margin-left:-5.148000px;}
._7{margin-left:-3.871200px;}
._2{margin-left:-2.508000px;}
._4{margin-left:-1.303200px;}
._9{width:1.327200px;}
._8{width:2.754000px;}
._c{width:3.847800px;}
._a{width:5.410800px;}
._b{width:6.928200px;}
._1a{width:8.669100px;}
._e{width:9.886800px;}
._15{width:11.295900px;}
._f{width:12.978000px;}
._19{width:20.845800px;}
._11{width:1284.526800px;}
._0{width:1397.430000px;}
._d{width:1692.414000px;}
.fc1{color:rgb(123,121,121);}
.fc5{color:rgb(254,254,254);}
.fc4{color:rgb(15,15,15);}
.fc3{color:rgb(57,57,57);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:30.642600px;}
.fs19{font-size:35.700000px;}
.fsb{font-size:36.191400px;}
.fs1b{font-size:37.800000px;}
.fs10{font-size:42.221400px;}
.fs1a{font-size:44.100000px;}
.fs0{font-size:45.000000px;}
.fs18{font-size:47.882400px;}
.fs9{font-size:48.253800px;}
.fsc{font-size:48.254361px;}
.fs14{font-size:48.254954px;}
.fs11{font-size:48.255241px;}
.fs12{font-size:48.255694px;}
.fs15{font-size:51.000000px;}
.fs17{font-size:53.866800px;}
.fs3{font-size:54.000000px;}
.fsa{font-size:54.285600px;}
.fsf{font-size:54.286558px;}
.fse{font-size:54.286892px;}
.fs13{font-size:54.286970px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.fs16{font-size:78.406800px;}
.fs7{font-size:79.014600px;}
.fs4{font-size:83.998800px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:110.587800px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:19.489350px;}
.y1{bottom:47.935650px;}
.y20e{bottom:88.986600px;}
.yd3{bottom:89.096850px;}
.y1d8{bottom:89.127900px;}
.y1a1{bottom:89.206650px;}
.y106{bottom:89.252250px;}
.y243{bottom:89.263050px;}
.y15f{bottom:89.291850px;}
.y277{bottom:89.324400px;}
.y2ba{bottom:89.362650px;}
.y151{bottom:89.389500px;}
.y11b{bottom:89.426700px;}
.y130{bottom:89.568450px;}
.y9c{bottom:91.251600px;}
.y2b9{bottom:104.522400px;}
.y276{bottom:104.547900px;}
.y9b{bottom:106.997850px;}
.yd2{bottom:107.146350px;}
.y105{bottom:107.270250px;}
.y242{bottom:107.375550px;}
.y1d7{bottom:107.397900px;}
.y15e{bottom:107.420100px;}
.y1a0{bottom:107.476650px;}
.y150{bottom:107.675250px;}
.y11a{bottom:108.043200px;}
.y12f{bottom:108.184950px;}
.y2b8{bottom:119.682150px;}
.y275{bottom:119.771400px;}
.y30{bottom:122.145000px;}
.y9a{bottom:122.744100px;}
.y104{bottom:125.288250px;}
.y20d{bottom:125.306100px;}
.y241{bottom:125.488050px;}
.y15d{bottom:125.549700px;}
.y1d6{bottom:125.667900px;}
.y19f{bottom:125.746650px;}
.y14f{bottom:125.961000px;}
.y119{bottom:126.659700px;}
.y12e{bottom:126.801450px;}
.y2b7{bottom:134.841900px;}
.y274{bottom:134.994900px;}
.yd1{bottom:137.197350px;}
.y99{bottom:138.490350px;}
.y2f{bottom:138.642000px;}
.y103{bottom:143.306250px;}
.y20c{bottom:143.465850px;}
.y240{bottom:143.600550px;}
.y15c{bottom:143.677950px;}
.y1d5{bottom:143.937900px;}
.y19e{bottom:144.016650px;}
.y14e{bottom:144.246750px;}
.y118{bottom:145.276200px;}
.y12d{bottom:145.417950px;}
.y2b6{bottom:150.001650px;}
.y273{bottom:150.218400px;}
.y2e{bottom:155.139000px;}
.yd0{bottom:155.246850px;}
.y102{bottom:161.324250px;}
.y20b{bottom:161.625600px;}
.y23f{bottom:161.713050px;}
.y15b{bottom:161.806200px;}
.y1d4{bottom:162.207900px;}
.y19d{bottom:162.286650px;}
.y14d{bottom:162.532500px;}
.y117{bottom:163.892700px;}
.y12c{bottom:164.034450px;}
.y2b5{bottom:165.161400px;}
.y272{bottom:165.441900px;}
.ycf{bottom:173.296350px;}
.y101{bottom:179.342250px;}
.y20a{bottom:179.785350px;}
.y15a{bottom:179.934450px;}
.y2b4{bottom:180.321150px;}
.y1d3{bottom:180.477900px;}
.y19c{bottom:180.556650px;}
.y271{bottom:180.665400px;}
.y14c{bottom:180.818250px;}
.y116{bottom:182.509200px;}
.y12b{bottom:182.650950px;}
.y2d{bottom:183.637500px;}
.y90{bottom:188.834294px;}
.yce{bottom:191.345850px;}
.y4d{bottom:193.212450px;}
.y23e{bottom:194.818350px;}
.y2b3{bottom:195.480900px;}
.y270{bottom:195.888900px;}
.y100{bottom:197.360250px;}
.y209{bottom:197.945100px;}
.y159{bottom:198.062700px;}
.y1d2{bottom:198.747900px;}
.y19b{bottom:198.826650px;}
.y14b{bottom:199.104000px;}
.y115{bottom:201.125700px;}
.y12a{bottom:201.267450px;}
.y2b2{bottom:210.640650px;}
.y26f{bottom:211.112400px;}
.y2c{bottom:212.136000px;}
.yff{bottom:215.378250px;}
.y208{bottom:216.104850px;}
.y158{bottom:216.190950px;}
.y1d1{bottom:217.017900px;}
.y19a{bottom:217.096650px;}
.y14a{bottom:217.389750px;}
.y114{bottom:219.742200px;}
.y129{bottom:219.883950px;}
.ycd{bottom:221.396850px;}
.y2b1{bottom:225.800400px;}
.y26e{bottom:226.335900px;}
.y2b{bottom:228.633000px;}
.yfe{bottom:233.396250px;}
.y207{bottom:234.264600px;}
.y157{bottom:234.319200px;}
.y1d0{bottom:235.287900px;}
.y199{bottom:235.366650px;}
.y149{bottom:235.675500px;}
.y98{bottom:236.427300px;}
.y113{bottom:238.358700px;}
.y128{bottom:238.500450px;}
.ycc{bottom:239.446350px;}
.y2b0{bottom:240.960150px;}
.y26d{bottom:241.559400px;}
.y2a{bottom:245.130000px;}
.yfd{bottom:251.414250px;}
.y206{bottom:252.424350px;}
.y156{bottom:252.447450px;}
.y1cf{bottom:253.557900px;}
.y198{bottom:253.636650px;}
.y148{bottom:253.961250px;}
.y23d{bottom:254.298600px;}
.y68{bottom:256.100291px;}
.y2af{bottom:256.119900px;}
.y26c{bottom:256.782900px;}
.y112{bottom:256.975200px;}
.y127{bottom:257.116950px;}
.ycb{bottom:257.495850px;}
.y29{bottom:265.879500px;}
.y205{bottom:270.584100px;}
.y2ae{bottom:271.279650px;}
.y1ce{bottom:271.827900px;}
.y197{bottom:271.906650px;}
.y26b{bottom:272.006400px;}
.y147{bottom:272.247000px;}
.y23c{bottom:272.411100px;}
.y81{bottom:273.245967px;}
.y67{bottom:274.195991px;}
.yca{bottom:275.545350px;}
.y111{bottom:275.591700px;}
.y126{bottom:275.733450px;}
.y7f{bottom:276.222710px;}
.y28{bottom:282.376500px;}
.y80{bottom:282.438583px;}
.yfc{bottom:284.427900px;}
.y7e{bottom:285.415325px;}
.y155{bottom:285.576000px;}
.y2ad{bottom:286.439400px;}
.y26a{bottom:287.229900px;}
.y204{bottom:288.743850px;}
.y1cd{bottom:290.097900px;}
.y196{bottom:290.176650px;}
.y23b{bottom:290.523600px;}
.y146{bottom:290.532750px;}
.yc9{bottom:293.594850px;}
.y110{bottom:294.208200px;}
.y125{bottom:294.349950px;}
.y27{bottom:298.873500px;}
.y78{bottom:300.271895px;}
.y92{bottom:301.431150px;}
.y2ac{bottom:301.599150px;}
.y269{bottom:302.453400px;}
.y203{bottom:306.903600px;}
.y1cc{bottom:308.367900px;}
.y195{bottom:308.446650px;}
.y23a{bottom:308.636100px;}
.y145{bottom:308.818500px;}
.y77{bottom:309.464511px;}
.yc8{bottom:311.644350px;}
.y94{bottom:311.654400px;}
.y10f{bottom:312.824700px;}
.y124{bottom:312.966450px;}
.y2ab{bottom:316.758900px;}
.y268{bottom:317.676900px;}
.y26{bottom:319.623000px;}
.y202{bottom:325.063350px;}
.y1cb{bottom:326.637900px;}
.y194{bottom:326.716650px;}
.y239{bottom:326.748600px;}
.y144{bottom:327.104250px;}
.yc7{bottom:329.693850px;}
.y10e{bottom:331.441200px;}
.y123{bottom:331.582950px;}
.y2aa{bottom:331.918650px;}
.y267{bottom:332.900400px;}
.y25{bottom:336.120000px;}
.y201{bottom:343.223100px;}
.yfb{bottom:344.272200px;}
.y238{bottom:344.861100px;}
.y1ca{bottom:344.907900px;}
.y193{bottom:344.986650px;}
.y143{bottom:345.390000px;}
.y154{bottom:345.705000px;}
.y2a9{bottom:347.078400px;}
.yc6{bottom:347.743350px;}
.y266{bottom:348.123900px;}
.y10d{bottom:350.057700px;}
.y122{bottom:350.199450px;}
.y24{bottom:356.869500px;}
.y97{bottom:361.260750px;}
.y200{bottom:361.382850px;}
.y2a8{bottom:362.238150px;}
.yfa{bottom:362.290200px;}
.y237{bottom:362.973600px;}
.y1c9{bottom:363.177900px;}
.y192{bottom:363.256650px;}
.y265{bottom:363.347400px;}
.y142{bottom:363.675750px;}
.y153{bottom:363.833250px;}
.yc5{bottom:365.792850px;}
.y10c{bottom:368.674200px;}
.y121{bottom:368.815950px;}
.y23{bottom:373.366500px;}
.y87{bottom:373.878300px;}
.y76{bottom:375.495720px;}
.y2a7{bottom:377.397900px;}
.y1ff{bottom:379.542600px;}
.yf9{bottom:380.308200px;}
.y236{bottom:381.086100px;}
.y1c8{bottom:381.447900px;}
.y191{bottom:381.526650px;}
.y152{bottom:381.957750px;}
.y141{bottom:381.961500px;}
.yc4{bottom:383.842350px;}
.y86{bottom:386.997053px;}
.y4e{bottom:387.002400px;}
.y10b{bottom:387.290700px;}
.y120{bottom:387.432450px;}
.y22{bottom:389.863500px;}
.y2a6{bottom:392.557650px;}
.y264{bottom:393.572850px;}
.y1fe{bottom:397.702350px;}
.yf8{bottom:398.326200px;}
.y235{bottom:399.198600px;}
.y1c7{bottom:399.717900px;}
.y190{bottom:399.796650px;}
.y2e9{bottom:400.144350px;}
.y5f{bottom:400.351784px;}
.y318{bottom:400.424850px;}
.y79{bottom:401.399714px;}
.yc3{bottom:401.891850px;}
.y10a{bottom:405.907200px;}
.y11f{bottom:406.048950px;}
.y2a5{bottom:407.717400px;}
.y16a{bottom:408.677250px;}
.y5e{bottom:409.544400px;}
.y21{bottom:410.613000px;}
.y2e8{bottom:415.138350px;}
.y317{bottom:415.418850px;}
.y1fd{bottom:415.862100px;}
.yf7{bottom:416.344200px;}
.y234{bottom:417.311100px;}
.y1c6{bottom:417.987900px;}
.y18f{bottom:418.066650px;}
.y75{bottom:419.739706px;}
.yc2{bottom:419.941350px;}
.y2a4{bottom:422.877150px;}
.y169{bottom:424.427250px;}
.y66{bottom:424.507923px;}
.y109{bottom:424.523700px;}
.y11e{bottom:424.665450px;}
.y20{bottom:427.110000px;}
.y2e7{bottom:430.132350px;}
.y316{bottom:430.412850px;}
.y1fc{bottom:434.021850px;}
.yf6{bottom:434.362200px;}
.y65{bottom:434.985334px;}
.y233{bottom:435.423600px;}
.y1c5{bottom:436.257900px;}
.y18e{bottom:436.336650px;}
.y83{bottom:436.877850px;}
.yc1{bottom:437.990850px;}
.y2a3{bottom:438.036900px;}
.y168{bottom:440.177250px;}
.y108{bottom:443.140200px;}
.y11d{bottom:443.281950px;}
.y88{bottom:443.445296px;}
.y1f{bottom:443.607000px;}
.y64{bottom:444.603198px;}
.y2e6{bottom:445.126350px;}
.y315{bottom:445.406850px;}
.y74{bottom:447.489462px;}
.y1fb{bottom:452.181600px;}
.yf5{bottom:452.380200px;}
.y2a2{bottom:453.196650px;}
.y232{bottom:453.536100px;}
.y263{bottom:453.851400px;}
.y1c4{bottom:454.527900px;}
.y18d{bottom:454.606650px;}
.y73{bottom:454.727742px;}
.y91{bottom:455.339550px;}
.y167{bottom:455.923500px;}
.yc0{bottom:456.040350px;}
.y54{bottom:457.831284px;}
.y1e{bottom:460.104000px;}
.y2e5{bottom:460.120350px;}
.y314{bottom:460.400850px;}
.y107{bottom:461.756700px;}
.y11c{bottom:461.898450px;}
.y72{bottom:465.069435px;}
.y2a1{bottom:468.356400px;}
.y262{bottom:469.821900px;}
.y1fa{bottom:470.341350px;}
.yf4{bottom:470.398200px;}
.y231{bottom:471.648600px;}
.y1c3{bottom:472.797900px;}
.y18c{bottom:472.876650px;}
.ybf{bottom:474.089850px;}
.y2e4{bottom:475.114350px;}
.y71{bottom:475.374936px;}
.y313{bottom:475.394850px;}
.y1d{bottom:476.601000px;}
.y2a0{bottom:483.516150px;}
.y8f{bottom:483.740218px;}
.y8d{bottom:483.803550px;}
.y70{bottom:484.567552px;}
.y261{bottom:485.792400px;}
.yf3{bottom:488.416200px;}
.y1f9{bottom:488.501100px;}
.y230{bottom:489.761100px;}
.y2e3{bottom:490.108350px;}
.y312{bottom:490.388850px;}
.y140{bottom:490.928550px;}
.y1c2{bottom:491.067900px;}
.y18b{bottom:491.146650px;}
.y164{bottom:491.761650px;}
.y161{bottom:491.851500px;}
.ybe{bottom:492.139350px;}
.y50{bottom:497.196150px;}
.y6f{bottom:498.121231px;}
.y29f{bottom:498.675900px;}
.y260{bottom:501.762900px;}
.y2e2{bottom:505.102350px;}
.y311{bottom:505.382850px;}
.yf2{bottom:506.434200px;}
.y1f8{bottom:506.660850px;}
.y13f{bottom:506.678550px;}
.y22f{bottom:507.873600px;}
.y6e{bottom:508.164344px;}
.y1c1{bottom:509.337900px;}
.y1c{bottom:509.352000px;}
.y18a{bottom:509.416650px;}
.ybd{bottom:510.188850px;}
.y29e{bottom:513.835650px;}
.y25f{bottom:517.733400px;}
.y2e1{bottom:520.096350px;}
.y310{bottom:520.376850px;}
.y13e{bottom:522.428550px;}
.y6d{bottom:523.020914px;}
.yf1{bottom:524.452200px;}
.y1f7{bottom:524.820600px;}
.y1b{bottom:525.849000px;}
.y22e{bottom:525.986100px;}
.y1c0{bottom:527.607900px;}
.y189{bottom:527.686650px;}
.ybc{bottom:528.238350px;}
.y29d{bottom:528.995400px;}
.y25e{bottom:533.703900px;}
.y61{bottom:533.802270px;}
.y2e0{bottom:535.090350px;}
.y30f{bottom:535.370850px;}
.y13d{bottom:538.182300px;}
.y4f{bottom:540.114935px;}
.yf0{bottom:542.470200px;}
.y7c{bottom:542.482839px;}
.y1f6{bottom:542.980350px;}
.y60{bottom:542.995050px;}
.y22d{bottom:544.098600px;}
.y29c{bottom:544.155150px;}
.y1bf{bottom:545.877900px;}
.y188{bottom:545.956650px;}
.ybb{bottom:546.287850px;}
.y25d{bottom:549.674400px;}
.y2df{bottom:550.084350px;}
.y30e{bottom:550.364850px;}
.y1a{bottom:550.851000px;}
.y13c{bottom:553.928550px;}
.y7b{bottom:555.339834px;}
.y29b{bottom:559.314900px;}
.yef{bottom:560.488200px;}
.y1f5{bottom:561.140100px;}
.y22c{bottom:562.211100px;}
.y1be{bottom:564.147900px;}
.yba{bottom:564.337350px;}
.y7a{bottom:564.532450px;}
.y2de{bottom:565.078350px;}
.y30d{bottom:565.358850px;}
.y25c{bottom:565.644900px;}
.y63{bottom:566.070584px;}
.y19{bottom:567.348000px;}
.y13b{bottom:569.674800px;}
.y29a{bottom:574.474650px;}
.y62{bottom:575.263200px;}
.y187{bottom:576.228150px;}
.y6c{bottom:576.620378px;}
.yee{bottom:578.506200px;}
.y1f4{bottom:579.299850px;}
.y2dd{bottom:580.072350px;}
.y22b{bottom:580.323600px;}
.y30c{bottom:580.352850px;}
.y25b{bottom:581.615400px;}
.yb9{bottom:582.386850px;}
.y1bd{bottom:582.417900px;}
.y18{bottom:583.845000px;}
.y95{bottom:586.400100px;}
.y55{bottom:588.487350px;}
.y299{bottom:589.634400px;}
.y186{bottom:594.498150px;}
.y2dc{bottom:595.066350px;}
.y30b{bottom:595.346850px;}
.yed{bottom:596.524200px;}
.y1f3{bottom:597.459600px;}
.y25a{bottom:597.585900px;}
.y6b{bottom:598.136165px;}
.y22a{bottom:598.436100px;}
.y17{bottom:600.342000px;}
.yb8{bottom:600.436350px;}
.y1bc{bottom:600.687900px;}
.y298{bottom:604.794150px;}
.y84{bottom:608.370799px;}
.y56{bottom:608.973000px;}
.y2db{bottom:610.060350px;}
.y30a{bottom:610.340850px;}
.y185{bottom:612.768150px;}
.y259{bottom:613.556400px;}
.yec{bottom:614.542200px;}
.y1f2{bottom:615.619350px;}
.y229{bottom:616.548600px;}
.y16{bottom:616.839000px;}
.yb7{bottom:618.485850px;}
.y1bb{bottom:618.957900px;}
.y7d{bottom:619.072890px;}
.y13a{bottom:619.766850px;}
.y297{bottom:619.953900px;}
.y82{bottom:620.401950px;}
.y2da{bottom:625.054350px;}
.y309{bottom:625.334850px;}
.y258{bottom:629.541450px;}
.y184{bottom:631.038150px;}
.yeb{bottom:632.560200px;}
.y15{bottom:633.336000px;}
.y6a{bottom:633.422780px;}
.y51{bottom:633.445200px;}
.y1f1{bottom:633.779100px;}
.y228{bottom:634.661100px;}
.y296{bottom:635.113650px;}
.yb6{bottom:636.535350px;}
.y1ba{bottom:637.227900px;}
.y2d9{bottom:640.048350px;}
.y308{bottom:640.328850px;}
.y4a{bottom:643.605608px;}
.y257{bottom:645.511950px;}
.y5d{bottom:646.041763px;}
.y183{bottom:649.308150px;}
.y14{bottom:649.833000px;}
.y295{bottom:650.273400px;}
.yea{bottom:650.578200px;}
.y1f0{bottom:651.938850px;}
.y227{bottom:652.773600px;}
.y85{bottom:653.392900px;}
.yb5{bottom:654.584850px;}
.y2d8{bottom:655.042350px;}
.y307{bottom:655.322850px;}
.y49{bottom:655.391598px;}
.y1b9{bottom:655.497900px;}
.y5c{bottom:657.827754px;}
.y256{bottom:661.482450px;}
.y294{bottom:665.433150px;}
.y13{bottom:666.330000px;}
.y182{bottom:667.578150px;}
.ye9{bottom:668.596200px;}
.y2d7{bottom:670.036350px;}
.y1ef{bottom:670.098600px;}
.y306{bottom:670.316850px;}
.y226{bottom:670.886100px;}
.yb4{bottom:672.634350px;}
.y1b8{bottom:673.767900px;}
.y69{bottom:675.603856px;}
.y255{bottom:677.452950px;}
.y293{bottom:680.592900px;}
.y12{bottom:682.827000px;}
.y165{bottom:683.300700px;}
.y2d6{bottom:685.030350px;}
.y305{bottom:685.310850px;}
.y181{bottom:685.848150px;}
.ye8{bottom:686.614200px;}
.y166{bottom:687.542250px;}
.y1ee{bottom:688.258350px;}
.y225{bottom:688.998600px;}
.y5b{bottom:690.157800px;}
.yb3{bottom:690.683850px;}
.y1b7{bottom:692.037900px;}
.y292{bottom:695.752650px;}
.y11{bottom:699.324000px;}
.y2d5{bottom:700.024350px;}
.y304{bottom:700.304850px;}
.y180{bottom:704.118150px;}
.ye7{bottom:704.632200px;}
.y1ed{bottom:706.418100px;}
.y224{bottom:707.111100px;}
.y254{bottom:708.428250px;}
.yb2{bottom:708.733350px;}
.y1b6{bottom:710.307900px;}
.y291{bottom:710.912400px;}
.y48{bottom:712.041559px;}
.y2d4{bottom:715.018350px;}
.y303{bottom:715.298850px;}
.y10{bottom:715.821000px;}
.y17f{bottom:722.388150px;}
.ye6{bottom:722.650200px;}
.y93{bottom:723.153900px;}
.y47{bottom:723.827550px;}
.y1ec{bottom:724.577850px;}
.y223{bottom:725.223600px;}
.y290{bottom:726.072150px;}
.yb1{bottom:726.782850px;}
.y1b5{bottom:728.577900px;}
.y2d3{bottom:730.012350px;}
.y302{bottom:730.292850px;}
.yf{bottom:732.318000px;}
.y17e{bottom:740.658150px;}
.ye5{bottom:740.668200px;}
.y28f{bottom:741.231900px;}
.y1eb{bottom:742.737600px;}
.y222{bottom:743.336100px;}
.yb0{bottom:744.832350px;}
.y2d2{bottom:745.006350px;}
.y301{bottom:745.286850px;}
.y1b4{bottom:746.847900px;}
.ye{bottom:748.815000px;}
.y5a{bottom:754.031622px;}
.y28e{bottom:756.391650px;}
.ye4{bottom:758.686200px;}
.y17d{bottom:758.928150px;}
.y2d1{bottom:760.000350px;}
.y300{bottom:760.280850px;}
.y1ea{bottom:760.897350px;}
.y221{bottom:761.448600px;}
.y8b{bottom:762.064500px;}
.yaf{bottom:762.881850px;}
.y160{bottom:764.136600px;}
.y59{bottom:765.093805px;}
.y1b3{bottom:765.117900px;}
.yd{bottom:765.312000px;}
.y253{bottom:768.653550px;}
.y28d{bottom:771.551400px;}
.y2d0{bottom:774.994350px;}
.y2ff{bottom:775.274850px;}
.ye3{bottom:776.704200px;}
.y17c{bottom:777.198150px;}
.y1e9{bottom:779.057100px;}
.y220{bottom:779.561100px;}
.yae{bottom:780.931350px;}
.yc{bottom:781.809000px;}
.y1b2{bottom:783.387900px;}
.y46{bottom:784.977150px;}
.y28c{bottom:786.711150px;}
.y2cf{bottom:789.988350px;}
.y2fe{bottom:790.268850px;}
.ye2{bottom:794.722200px;}
.y17b{bottom:795.468150px;}
.y1e8{bottom:797.216850px;}
.y21f{bottom:797.673600px;}
.yb{bottom:798.306000px;}
.yad{bottom:798.980850px;}
.y1b1{bottom:801.657900px;}
.y28b{bottom:801.870900px;}
.y2ce{bottom:804.982350px;}
.y2fd{bottom:805.262850px;}
.y138{bottom:807.965250px;}
.y133{bottom:809.160150px;}
.y139{bottom:812.206950px;}
.ye1{bottom:812.740200px;}
.y134{bottom:813.401850px;}
.y135{bottom:813.582150px;}
.y17a{bottom:813.738150px;}
.y252{bottom:814.431600px;}
.ya{bottom:814.803000px;}
.y1e7{bottom:815.376600px;}
.y21e{bottom:815.786100px;}
.y53{bottom:815.899102px;}
.yac{bottom:817.030350px;}
.y28a{bottom:817.030650px;}
.y1b0{bottom:819.927900px;}
.y2cd{bottom:819.976350px;}
.y2fc{bottom:820.256850px;}
.y8c{bottom:829.113150px;}
.y52{bottom:829.158359px;}
.ye0{bottom:830.758200px;}
.y179{bottom:832.008150px;}
.y289{bottom:832.190400px;}
.y251{bottom:832.654350px;}
.y1e6{bottom:833.536350px;}
.y21d{bottom:833.898600px;}
.y2cc{bottom:834.970350px;}
.yab{bottom:835.079850px;}
.y2fb{bottom:835.250850px;}
.y1af{bottom:838.197900px;}
.y9{bottom:843.301500px;}
.y288{bottom:847.350150px;}
.ydf{bottom:848.776200px;}
.y2cb{bottom:849.964350px;}
.y2fa{bottom:850.244850px;}
.y178{bottom:850.278150px;}
.y250{bottom:850.877100px;}
.y8e{bottom:851.456946px;}
.y1e5{bottom:851.696100px;}
.y21c{bottom:852.011100px;}
.yaa{bottom:853.129350px;}
.y1ae{bottom:856.467900px;}
.y8{bottom:859.798500px;}
.y287{bottom:862.509900px;}
.y2ca{bottom:864.958350px;}
.y8a{bottom:865.094850px;}
.y2f9{bottom:865.238850px;}
.yde{bottom:866.794200px;}
.y177{bottom:868.548150px;}
.y24f{bottom:869.099850px;}
.y1e4{bottom:869.855850px;}
.y21b{bottom:870.123600px;}
.ya9{bottom:871.178850px;}
.y58{bottom:872.941048px;}
.y1ad{bottom:874.737900px;}
.y7{bottom:876.295500px;}
.y286{bottom:877.669650px;}
.y4c{bottom:879.080571px;}
.y2c9{bottom:879.952350px;}
.y2f8{bottom:880.232850px;}
.y57{bottom:883.436250px;}
.ydd{bottom:884.812200px;}
.y176{bottom:886.818150px;}
.y24e{bottom:887.322600px;}
.y1e3{bottom:888.015600px;}
.y96{bottom:888.180150px;}
.y21a{bottom:888.236100px;}
.y89{bottom:888.427950px;}
.y4b{bottom:889.055550px;}
.y45{bottom:889.078650px;}
.ya8{bottom:889.228350px;}
.y285{bottom:892.829400px;}
.y1ac{bottom:893.007900px;}
.y2c8{bottom:894.946350px;}
.y2f7{bottom:895.226850px;}
.ydc{bottom:902.830200px;}
.y175{bottom:905.088150px;}
.y24d{bottom:905.545350px;}
.y1e2{bottom:906.175350px;}
.y219{bottom:906.348600px;}
.ya7{bottom:907.277850px;}
.y284{bottom:907.989150px;}
.y2c7{bottom:909.940350px;}
.y2f6{bottom:910.220850px;}
.y1ab{bottom:911.277900px;}
.y6{bottom:919.795500px;}
.ydb{bottom:920.848200px;}
.y283{bottom:923.148900px;}
.y174{bottom:923.358150px;}
.y24c{bottom:923.768100px;}
.y1e1{bottom:924.335100px;}
.y218{bottom:924.461100px;}
.y2c6{bottom:924.934350px;}
.y2f5{bottom:925.214850px;}
.ya6{bottom:925.327350px;}
.y1aa{bottom:929.547900px;}
.y3b{bottom:935.377950px;}
.y44{bottom:935.425200px;}
.y282{bottom:938.308650px;}
.yda{bottom:938.866200px;}
.y2c5{bottom:939.928350px;}
.y2f4{bottom:940.208850px;}
.y173{bottom:941.628150px;}
.y24b{bottom:941.990850px;}
.y1e0{bottom:942.494850px;}
.y217{bottom:942.573600px;}
.ya5{bottom:943.376850px;}
.y5{bottom:946.795500px;}
.y1a9{bottom:947.817900px;}
.y281{bottom:953.468400px;}
.y3a{bottom:954.214950px;}
.y43{bottom:954.466950px;}
.y2c4{bottom:954.922350px;}
.y2f3{bottom:955.202850px;}
.yd9{bottom:956.884200px;}
.y172{bottom:959.898150px;}
.y24a{bottom:960.213600px;}
.y1df{bottom:960.654600px;}
.y216{bottom:960.686100px;}
.ya4{bottom:961.426350px;}
.y280{bottom:968.628150px;}
.y2c3{bottom:969.916350px;}
.y2f2{bottom:970.196850px;}
.y39{bottom:973.051950px;}
.y42{bottom:973.508700px;}
.yd8{bottom:974.902200px;}
.y1a8{bottom:978.089400px;}
.y171{bottom:978.168150px;}
.y249{bottom:978.436350px;}
.y215{bottom:978.798600px;}
.y1de{bottom:978.814350px;}
.ya3{bottom:979.475850px;}
.y27f{bottom:983.787900px;}
.y2c2{bottom:984.910350px;}
.y2f1{bottom:985.190850px;}
.y38{bottom:991.888950px;}
.y41{bottom:992.550450px;}
.yd7{bottom:992.920200px;}
.y1a7{bottom:996.359400px;}
.y170{bottom:996.438150px;}
.y248{bottom:996.659100px;}
.y214{bottom:996.911100px;}
.y1dd{bottom:996.974100px;}
.ya2{bottom:997.525350px;}
.y27e{bottom:998.947650px;}
.y2c1{bottom:999.904350px;}
.y2f0{bottom:1000.184850px;}
.y4{bottom:1000.819500px;}
.y37{bottom:1010.725950px;}
.yd6{bottom:1010.938200px;}
.y40{bottom:1011.592200px;}
.y27d{bottom:1014.107400px;}
.y1a6{bottom:1014.629400px;}
.y16f{bottom:1014.708150px;}
.y247{bottom:1014.881850px;}
.y2c0{bottom:1014.898350px;}
.y213{bottom:1015.023600px;}
.y1dc{bottom:1015.133850px;}
.y2ef{bottom:1015.178850px;}
.ya1{bottom:1015.574850px;}
.yd5{bottom:1028.956200px;}
.y27c{bottom:1029.267150px;}
.y36{bottom:1029.562950px;}
.y2bf{bottom:1029.892350px;}
.y2ee{bottom:1030.172850px;}
.y3f{bottom:1030.633950px;}
.y1a5{bottom:1032.899400px;}
.y16e{bottom:1032.978150px;}
.y246{bottom:1033.104600px;}
.y212{bottom:1033.136100px;}
.y1db{bottom:1033.293600px;}
.ya0{bottom:1033.624350px;}
.y3{bottom:1038.307500px;}
.y27b{bottom:1044.426900px;}
.y2be{bottom:1044.886350px;}
.y2ed{bottom:1045.166850px;}
.yd4{bottom:1046.974200px;}
.y35{bottom:1048.399950px;}
.y3e{bottom:1049.675700px;}
.y1a4{bottom:1051.169400px;}
.y16d{bottom:1051.248150px;}
.y211{bottom:1051.248600px;}
.y245{bottom:1051.327350px;}
.y1da{bottom:1051.453350px;}
.y9f{bottom:1051.673850px;}
.y27a{bottom:1059.586650px;}
.y2bd{bottom:1059.880350px;}
.y2ec{bottom:1060.160850px;}
.y136{bottom:1061.962800px;}
.y137{bottom:1066.204350px;}
.y3d{bottom:1068.717450px;}
.y132{bottom:1068.741150px;}
.y210{bottom:1069.361100px;}
.y1a3{bottom:1069.439400px;}
.y16c{bottom:1069.518150px;}
.y244{bottom:1069.550100px;}
.y1d9{bottom:1069.613100px;}
.y9e{bottom:1069.723350px;}
.y163{bottom:1070.435400px;}
.y162{bottom:1070.472150px;}
.y131{bottom:1070.506950px;}
.y279{bottom:1074.746400px;}
.y2bc{bottom:1074.874350px;}
.y2eb{bottom:1075.154850px;}
.y2{bottom:1075.795500px;}
.y34{bottom:1079.987850px;}
.y20f{bottom:1087.473600px;}
.y1a2{bottom:1087.709400px;}
.y3c{bottom:1087.759200px;}
.y9d{bottom:1087.772850px;}
.y16b{bottom:1087.788150px;}
.y2bb{bottom:1089.868350px;}
.y278{bottom:1089.906150px;}
.y2ea{bottom:1090.148850px;}
.y31{bottom:1098.708000px;}
.y33{bottom:1123.364100px;}
.h11{height:22.307813px;}
.hf{height:24.754918px;}
.h15{height:30.737179px;}
.h20{height:32.751562px;}
.h1{height:32.761230px;}
.h14{height:32.812584px;}
.h10{height:32.812965px;}
.h16{height:32.813564px;}
.h17{height:32.813872px;}
.hc{height:33.005599px;}
.h19{height:33.006388px;}
.h1b{height:33.632899px;}
.h22{height:35.411133px;}
.h1c{height:35.436035px;}
.he{height:37.131350px;}
.h13{height:37.132005px;}
.h12{height:37.132234px;}
.h18{height:37.132287px;}
.h5{height:37.494141px;}
.h4{height:37.520508px;}
.h1f{height:37.545160px;}
.h6{height:40.713000px;}
.h1d{height:43.743164px;}
.h9{height:43.773926px;}
.h21{height:43.788926px;}
.h3{height:50.027344px;}
.hd{height:50.268466px;}
.ha{height:53.887957px;}
.h1e{height:54.649540px;}
.h1a{height:55.073176px;}
.h7{height:63.503093px;}
.h8{height:75.041016px;}
.hb{height:80.507918px;}
.h2{height:91.716797px;}
.h0{height:1188.000000px;}
.w1{width:150.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:8.269950px;}
.x4{left:54.850500px;}
.x45{left:56.995800px;}
.x4c{left:63.331950px;}
.x4a{left:76.097100px;}
.x4d{left:80.652300px;}
.x1{left:85.039350px;}
.x53{left:92.128500px;}
.x47{left:106.301850px;}
.x3e{left:115.450506px;}
.x6{left:123.917850px;}
.x37{left:127.464750px;}
.x3b{left:133.771800px;}
.x3a{left:140.121600px;}
.x2{left:153.070800px;}
.x1b{left:161.926500px;}
.x46{left:203.257800px;}
.xb{left:204.892350px;}
.x1c{left:239.301468px;}
.x1d{left:245.152242px;}
.x39{left:254.620650px;}
.x51{left:294.264600px;}
.x3f{left:305.330698px;}
.x25{left:318.419675px;}
.x10{left:320.938200px;}
.x22{left:325.694146px;}
.x23{left:328.480884px;}
.x24{left:331.973354px;}
.xf{left:345.075075px;}
.x26{left:355.027276px;}
.xa{left:378.321101px;}
.x9{left:383.689337px;}
.x8{left:404.197202px;}
.x41{left:407.871000px;}
.x7{left:411.954000px;}
.x57{left:437.578350px;}
.xd{left:439.990350px;}
.xc{left:451.104689px;}
.x56{left:453.383250px;}
.x5{left:454.522350px;}
.x1f{left:469.605600px;}
.x20{left:474.148365px;}
.x4b{left:475.832100px;}
.x48{left:484.724400px;}
.xe{left:489.271200px;}
.x54{left:499.780650px;}
.x49{left:506.018400px;}
.x21{left:507.266400px;}
.x11{left:513.282300px;}
.x40{left:518.762700px;}
.x3c{left:535.193700px;}
.x1e{left:552.427500px;}
.x52{left:562.787250px;}
.x27{left:567.063641px;}
.x28{left:580.671607px;}
.x34{left:583.277388px;}
.x36{left:585.584590px;}
.x29{left:589.303256px;}
.x15{left:591.948150px;}
.x2a{left:595.871995px;}
.x2b{left:600.269250px;}
.x4e{left:601.881450px;}
.x50{left:603.934950px;}
.x2c{left:607.842301px;}
.x2d{left:616.021557px;}
.x4f{left:618.891600px;}
.x2e{left:624.734637px;}
.x2f{left:632.018156px;}
.x30{left:638.161646px;}
.x35{left:647.091874px;}
.x32{left:648.403812px;}
.x38{left:656.360589px;}
.x33{left:663.007042px;}
.x31{left:665.440914px;}
.x44{left:670.020750px;}
.x18{left:673.777654px;}
.x17{left:677.855100px;}
.x19{left:685.768723px;}
.x1a{left:694.092504px;}
.x43{left:726.113850px;}
.x14{left:727.343992px;}
.x16{left:736.044600px;}
.x42{left:774.089550px;}
.x12{left:778.508170px;}
.x13{left:782.498162px;}
.x3d{left:787.330200px;}
.x55{left:802.491150px;}
@media print{
.v2{vertical-align:-16.020726pt;}
.v3{vertical-align:-15.081067pt;}
.v6{vertical-align:-11.549333pt;}
.v5{vertical-align:-9.093333pt;}
.v4{vertical-align:-6.272490pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.677436pt;}
.ls3f{letter-spacing:-4.760000pt;}
.ls44{letter-spacing:-4.424000pt;}
.ls3e{letter-spacing:-3.136000pt;}
.ls3c{letter-spacing:-2.184000pt;}
.ls1f{letter-spacing:-1.994548pt;}
.ls8{letter-spacing:-1.288000pt;}
.ls18{letter-spacing:-1.222465pt;}
.ls22{letter-spacing:-1.158093pt;}
.ls3a{letter-spacing:-1.064000pt;}
.ls2b{letter-spacing:-1.008000pt;}
.ls25{letter-spacing:-0.896000pt;}
.ls13{letter-spacing:-0.814953pt;}
.ls26{letter-spacing:-0.728000pt;}
.ls1c{letter-spacing:-0.707743pt;}
.ls15{letter-spacing:-0.686276pt;}
.ls19{letter-spacing:-0.675573pt;}
.ls31{letter-spacing:-0.672000pt;}
.ls3b{letter-spacing:-0.616000pt;}
.ls2f{letter-spacing:-0.560000pt;}
.ls21{letter-spacing:-0.514722pt;}
.ls11{letter-spacing:-0.514707pt;}
.ls30{letter-spacing:-0.504000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.471815pt;}
.ls46{letter-spacing:-0.453333pt;}
.ls1a{letter-spacing:-0.450382pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.428923pt;}
.ls17{letter-spacing:-0.418212pt;}
.lsd{letter-spacing:-0.392000pt;}
.ls10{letter-spacing:-0.386031pt;}
.ls3d{letter-spacing:-0.336000pt;}
.ls1b{letter-spacing:-0.321701pt;}
.ls12{letter-spacing:-0.289531pt;}
.ls5{letter-spacing:-0.280000pt;}
.ls35{letter-spacing:-0.224000pt;}
.lsf{letter-spacing:-0.168000pt;}
.ls1d{letter-spacing:-0.160851pt;}
.lsc{letter-spacing:-0.112000pt;}
.ls1e{letter-spacing:-0.064340pt;}
.lsb{letter-spacing:-0.056000pt;}
.ls23{letter-spacing:-0.037530pt;}
.ls1{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.056000pt;}
.lse{letter-spacing:0.112000pt;}
.ls20{letter-spacing:0.160851pt;}
.ls6{letter-spacing:0.168000pt;}
.ls27{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.280000pt;}
.ls2e{letter-spacing:0.336000pt;}
.ls2c{letter-spacing:0.392000pt;}
.ls43{letter-spacing:0.448000pt;}
.ls45{letter-spacing:0.453333pt;}
.ls0{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.504000pt;}
.ls28{letter-spacing:0.560000pt;}
.ls2a{letter-spacing:0.616000pt;}
.ls9{letter-spacing:0.672000pt;}
.ls41{letter-spacing:0.896000pt;}
.ls42{letter-spacing:1.008000pt;}
.ls3{letter-spacing:1.680000pt;}
.ls39{letter-spacing:2.744000pt;}
.ls32{letter-spacing:3.316353pt;}
.ls4{letter-spacing:5.264000pt;}
.ls40{letter-spacing:6.720000pt;}
.ls24{letter-spacing:7.352800pt;}
.ls38{letter-spacing:11.424000pt;}
.ls37{letter-spacing:86.741628pt;}
.ls33{letter-spacing:925.359802pt;}
.ls34{letter-spacing:964.070486pt;}
.ls36{letter-spacing:1420.455546pt;}
.wsb9{word-spacing:-96.360670pt;}
.ws106{word-spacing:-15.008000pt;}
.ws105{word-spacing:-14.896000pt;}
.wsd7{word-spacing:-14.672000pt;}
.wsd1{word-spacing:-14.616000pt;}
.ws130{word-spacing:-14.448000pt;}
.wsd2{word-spacing:-14.392000pt;}
.wsd3{word-spacing:-14.336000pt;}
.ws50{word-spacing:-14.168000pt;}
.wsd5{word-spacing:-14.056000pt;}
.wsd4{word-spacing:-14.000000pt;}
.ws4f{word-spacing:-13.888000pt;}
.ws108{word-spacing:-13.832000pt;}
.ws131{word-spacing:-13.552000pt;}
.ws109{word-spacing:-13.496000pt;}
.wsd6{word-spacing:-13.384000pt;}
.ws4e{word-spacing:-13.272000pt;}
.ws0{word-spacing:-12.480000pt;}
.wsbb{word-spacing:-11.333333pt;}
.ws2c{word-spacing:-10.905633pt;}
.ws1c{word-spacing:-10.905374pt;}
.wsb8{word-spacing:-9.800000pt;}
.ws2d{word-spacing:-9.747281pt;}
.ws1a{word-spacing:-9.693652pt;}
.ws107{word-spacing:-9.576000pt;}
.ws21{word-spacing:-9.178945pt;}
.ws20{word-spacing:-9.007376pt;}
.ws1f{word-spacing:-8.878699pt;}
.ws2f{word-spacing:-8.444280pt;}
.ws132{word-spacing:-8.400000pt;}
.ws9e{word-spacing:-7.933333pt;}
.ws2a{word-spacing:-7.431301pt;}
.ws1d{word-spacing:-7.270450pt;}
.ws24{word-spacing:-6.980919pt;}
.ws28{word-spacing:-6.948749pt;}
.ws26{word-spacing:-6.820068pt;}
.ws2b{word-spacing:-6.755728pt;}
.ws25{word-spacing:-6.594877pt;}
.ws29{word-spacing:-6.562707pt;}
.ws23{word-spacing:-6.047985pt;}
.ws129{word-spacing:-5.544000pt;}
.wse0{word-spacing:-4.984000pt;}
.ws12a{word-spacing:-4.872000pt;}
.wsdf{word-spacing:-4.368000pt;}
.ws98{word-spacing:-3.976000pt;}
.wscf{word-spacing:-3.808000pt;}
.ws19a{word-spacing:-3.672000pt;}
.wsd{word-spacing:-3.648000pt;}
.ws138{word-spacing:-3.552000pt;}
.wsea{word-spacing:-3.192000pt;}
.wsc5{word-spacing:-3.080000pt;}
.ws8{word-spacing:-2.928000pt;}
.ws120{word-spacing:-2.912000pt;}
.ws7b{word-spacing:-2.856000pt;}
.ws79{word-spacing:-2.744000pt;}
.ws6c{word-spacing:-2.688000pt;}
.ws134{word-spacing:-2.640000pt;}
.ws68{word-spacing:-2.576000pt;}
.ws13f{word-spacing:-2.544000pt;}
.ws146{word-spacing:-2.493333pt;}
.wsbc{word-spacing:-2.408000pt;}
.wsf{word-spacing:-2.352000pt;}
.ws152{word-spacing:-2.312000pt;}
.wsc0{word-spacing:-2.296000pt;}
.ws16d{word-spacing:-2.266667pt;}
.wsf9{word-spacing:-2.240000pt;}
.ws77{word-spacing:-2.184000pt;}
.ws19b{word-spacing:-2.176000pt;}
.ws13{word-spacing:-2.160000pt;}
.ws9b{word-spacing:-2.128000pt;}
.ws133{word-spacing:-2.072000pt;}
.ws111{word-spacing:-2.016000pt;}
.wsd8{word-spacing:-1.960000pt;}
.ws53{word-spacing:-1.904000pt;}
.wse5{word-spacing:-1.848000pt;}
.ws19{word-spacing:-1.824000pt;}
.ws52{word-spacing:-1.792000pt;}
.ws15a{word-spacing:-1.768000pt;}
.wsa2{word-spacing:-1.736000pt;}
.wscc{word-spacing:-1.722667pt;}
.wsa0{word-spacing:-1.680000pt;}
.ws159{word-spacing:-1.677333pt;}
.wsaa{word-spacing:-1.624000pt;}
.ws11e{word-spacing:-1.568000pt;}
.ws17e{word-spacing:-1.541333pt;}
.ws71{word-spacing:-1.512000pt;}
.ws11b{word-spacing:-1.456000pt;}
.ws151{word-spacing:-1.450667pt;}
.wscd{word-spacing:-1.405333pt;}
.ws5a{word-spacing:-1.400000pt;}
.wsab{word-spacing:-1.344000pt;}
.wsd0{word-spacing:-1.314667pt;}
.ws112{word-spacing:-1.288000pt;}
.ws13b{word-spacing:-1.248000pt;}
.ws124{word-spacing:-1.232000pt;}
.wsc{word-spacing:-1.152000pt;}
.ws16e{word-spacing:-1.088000pt;}
.ws9a{word-spacing:-1.064000pt;}
.ws123{word-spacing:-1.008000pt;}
.ws19c{word-spacing:-0.997333pt;}
.wsa4{word-spacing:-0.952000pt;}
.wsee{word-spacing:-0.896000pt;}
.ws72{word-spacing:-0.840000pt;}
.ws64{word-spacing:-0.728000pt;}
.ws158{word-spacing:-0.725333pt;}
.ws194{word-spacing:-0.680000pt;}
.ws183{word-spacing:-0.634667pt;}
.wsec{word-spacing:-0.616000pt;}
.ws18c{word-spacing:-0.589333pt;}
.ws143{word-spacing:-0.544000pt;}
.ws8b{word-spacing:-0.504000pt;}
.wsb7{word-spacing:-0.498667pt;}
.wsa{word-spacing:-0.480000pt;}
.ws156{word-spacing:-0.453333pt;}
.wse4{word-spacing:-0.448000pt;}
.ws16a{word-spacing:-0.408000pt;}
.ws7c{word-spacing:-0.392000pt;}
.ws173{word-spacing:-0.362667pt;}
.ws6{word-spacing:-0.336000pt;}
.ws3c{word-spacing:-0.280000pt;}
.ws14c{word-spacing:-0.272000pt;}
.ws14e{word-spacing:-0.226667pt;}
.ws104{word-spacing:-0.224000pt;}
.ws34{word-spacing:-0.168000pt;}
.ws149{word-spacing:-0.136000pt;}
.ws69{word-spacing:-0.112000pt;}
.wsba{word-spacing:-0.069695pt;}
.ws6b{word-spacing:-0.056000pt;}
.wsb5{word-spacing:-0.045333pt;}
.ws22{word-spacing:-0.027238pt;}
.ws3{word-spacing:0.000000pt;}
.ws16f{word-spacing:0.045333pt;}
.ws13d{word-spacing:0.048000pt;}
.wsa5{word-spacing:0.056000pt;}
.ws4a{word-spacing:0.064340pt;}
.ws58{word-spacing:0.112000pt;}
.ws7a{word-spacing:0.168000pt;}
.ws16{word-spacing:0.192000pt;}
.ws121{word-spacing:0.224000pt;}
.ws13e{word-spacing:0.240000pt;}
.ws189{word-spacing:0.272000pt;}
.ws36{word-spacing:0.280000pt;}
.ws3d{word-spacing:0.336000pt;}
.ws185{word-spacing:0.362667pt;}
.ws45{word-spacing:0.386031pt;}
.ws61{word-spacing:0.392000pt;}
.ws49{word-spacing:0.418212pt;}
.ws47{word-spacing:0.428923pt;}
.ws35{word-spacing:0.448000pt;}
.ws144{word-spacing:0.453333pt;}
.ws48{word-spacing:0.471815pt;}
.ws18{word-spacing:0.480000pt;}
.ws46{word-spacing:0.514707pt;}
.ws86{word-spacing:0.560000pt;}
.ws157{word-spacing:0.589333pt;}
.ws12d{word-spacing:0.616000pt;}
.ws10{word-spacing:0.624000pt;}
.wsb4{word-spacing:0.634667pt;}
.ws8e{word-spacing:0.672000pt;}
.ws19e{word-spacing:0.680000pt;}
.wse{word-spacing:0.720000pt;}
.wse9{word-spacing:0.728000pt;}
.ws182{word-spacing:0.770667pt;}
.ws85{word-spacing:0.784000pt;}
.ws171{word-spacing:0.861333pt;}
.wsc1{word-spacing:0.896000pt;}
.ws95{word-spacing:0.952000pt;}
.ws150{word-spacing:0.997333pt;}
.ws78{word-spacing:1.008000pt;}
.ws7{word-spacing:1.056000pt;}
.ws119{word-spacing:1.064000pt;}
.ws167{word-spacing:1.088000pt;}
.wsce{word-spacing:1.133333pt;}
.wsc4{word-spacing:1.176000pt;}
.ws14{word-spacing:1.200000pt;}
.ws12{word-spacing:1.248000pt;}
.ws39{word-spacing:1.288000pt;}
.ws16c{word-spacing:1.314667pt;}
.ws9{word-spacing:1.344000pt;}
.ws14a{word-spacing:1.360000pt;}
.wsc6{word-spacing:1.400000pt;}
.wsb1{word-spacing:1.456000pt;}
.ws11{word-spacing:1.488000pt;}
.ws195{word-spacing:1.496000pt;}
.ws13c{word-spacing:1.536000pt;}
.wsf8{word-spacing:1.568000pt;}
.ws11d{word-spacing:1.624000pt;}
.ws153{word-spacing:1.632000pt;}
.ws127{word-spacing:1.680000pt;}
.wse3{word-spacing:1.736000pt;}
.wsf4{word-spacing:1.792000pt;}
.wsc8{word-spacing:1.848000pt;}
.wsf6{word-spacing:1.904000pt;}
.ws97{word-spacing:1.960000pt;}
.wsb{word-spacing:1.968000pt;}
.ws4b{word-spacing:1.994548pt;}
.ws191{word-spacing:1.994667pt;}
.ws88{word-spacing:2.016000pt;}
.ws4c{word-spacing:2.040000pt;}
.ws90{word-spacing:2.072000pt;}
.ws114{word-spacing:2.128000pt;}
.ws188{word-spacing:2.130667pt;}
.wsb0{word-spacing:2.184000pt;}
.ws19d{word-spacing:2.221333pt;}
.ws10e{word-spacing:2.240000pt;}
.ws14d{word-spacing:2.266667pt;}
.ws18a{word-spacing:2.312000pt;}
.ws12c{word-spacing:2.352000pt;}
.ws186{word-spacing:2.357333pt;}
.wsa8{word-spacing:2.408000pt;}
.ws15{word-spacing:2.448000pt;}
.ws11f{word-spacing:2.464000pt;}
.ws181{word-spacing:2.493333pt;}
.wsb6{word-spacing:2.538667pt;}
.wscb{word-spacing:2.576000pt;}
.ws175{word-spacing:2.584000pt;}
.ws18d{word-spacing:2.629333pt;}
.ws9c{word-spacing:2.632000pt;}
.wsb3{word-spacing:2.765333pt;}
.wsfd{word-spacing:2.856000pt;}
.wsc3{word-spacing:2.968000pt;}
.ws180{word-spacing:2.992000pt;}
.ws96{word-spacing:3.024000pt;}
.ws178{word-spacing:3.037333pt;}
.ws33{word-spacing:3.080000pt;}
.ws17d{word-spacing:3.082667pt;}
.wsbd{word-spacing:3.136000pt;}
.ws15d{word-spacing:3.173333pt;}
.ws135{word-spacing:3.216000pt;}
.ws170{word-spacing:3.218667pt;}
.ws59{word-spacing:3.248000pt;}
.ws10d{word-spacing:3.304000pt;}
.ws15f{word-spacing:3.309333pt;}
.wse6{word-spacing:3.360000pt;}
.ws179{word-spacing:3.400000pt;}
.ws6e{word-spacing:3.416000pt;}
.ws184{word-spacing:3.445333pt;}
.wsae{word-spacing:3.472000pt;}
.ws139{word-spacing:3.504000pt;}
.ws118{word-spacing:3.528000pt;}
.ws147{word-spacing:3.581333pt;}
.wsdd{word-spacing:3.584000pt;}
.ws19f{word-spacing:3.626667pt;}
.wsd9{word-spacing:3.640000pt;}
.ws18b{word-spacing:3.672000pt;}
.ws161{word-spacing:3.717333pt;}
.ws10a{word-spacing:3.752000pt;}
.ws101{word-spacing:3.808000pt;}
.ws177{word-spacing:3.853333pt;}
.ws193{word-spacing:3.898667pt;}
.ws6a{word-spacing:3.920000pt;}
.ws4d{word-spacing:3.944000pt;}
.wseb{word-spacing:3.976000pt;}
.ws15e{word-spacing:3.989333pt;}
.ws8f{word-spacing:4.032000pt;}
.ws160{word-spacing:4.080000pt;}
.ws10b{word-spacing:4.088000pt;}
.wsdc{word-spacing:4.144000pt;}
.wsa1{word-spacing:4.200000pt;}
.ws140{word-spacing:4.216000pt;}
.ws54{word-spacing:4.256000pt;}
.ws30{word-spacing:4.320000pt;}
.ws190{word-spacing:4.352000pt;}
.ws55{word-spacing:4.368000pt;}
.ws17c{word-spacing:4.442667pt;}
.ws73{word-spacing:4.480000pt;}
.ws145{word-spacing:4.488000pt;}
.ws142{word-spacing:4.533333pt;}
.wsad{word-spacing:4.536000pt;}
.ws148{word-spacing:4.578667pt;}
.ws3b{word-spacing:4.592000pt;}
.ws17a{word-spacing:4.624000pt;}
.wsfa{word-spacing:4.648000pt;}
.wsa3{word-spacing:4.704000pt;}
.ws5{word-spacing:4.752000pt;}
.ws70{word-spacing:4.760000pt;}
.ws99{word-spacing:4.816000pt;}
.ws44{word-spacing:4.872000pt;}
.ws5d{word-spacing:4.928000pt;}
.ws40{word-spacing:4.984000pt;}
.ws174{word-spacing:5.032000pt;}
.wsfb{word-spacing:5.040000pt;}
.ws89{word-spacing:5.096000pt;}
.ws17f{word-spacing:5.122667pt;}
.ws31{word-spacing:5.152000pt;}
.ws51{word-spacing:5.184000pt;}
.ws6f{word-spacing:5.264000pt;}
.wsa9{word-spacing:5.320000pt;}
.wsaf{word-spacing:5.376000pt;}
.ws164{word-spacing:5.485333pt;}
.ws80{word-spacing:5.488000pt;}
.ws18e{word-spacing:5.530667pt;}
.ws3a{word-spacing:5.544000pt;}
.ws2{word-spacing:5.560000pt;}
.ws113{word-spacing:5.600000pt;}
.ws155{word-spacing:5.621333pt;}
.ws8c{word-spacing:5.656000pt;}
.ws94{word-spacing:5.768000pt;}
.ws67{word-spacing:5.824000pt;}
.wsf2{word-spacing:5.880000pt;}
.ws14f{word-spacing:5.984000pt;}
.ws41{word-spacing:5.992000pt;}
.ws122{word-spacing:6.048000pt;}
.ws17b{word-spacing:6.120000pt;}
.wse8{word-spacing:6.272000pt;}
.wsa7{word-spacing:6.440000pt;}
.ws2e{word-spacing:6.492713pt;}
.ws83{word-spacing:6.496000pt;}
.ws15c{word-spacing:6.528000pt;}
.ws3f{word-spacing:6.552000pt;}
.ws12b{word-spacing:6.608000pt;}
.ws27{word-spacing:6.627047pt;}
.ws3e{word-spacing:6.664000pt;}
.ws66{word-spacing:6.720000pt;}
.ws15b{word-spacing:6.754667pt;}
.wsa6{word-spacing:6.776000pt;}
.ws18f{word-spacing:6.800000pt;}
.ws11c{word-spacing:6.832000pt;}
.ws13a{word-spacing:6.912000pt;}
.ws9d{word-spacing:7.000000pt;}
.ws163{word-spacing:7.026667pt;}
.wsed{word-spacing:7.056000pt;}
.ws65{word-spacing:7.112000pt;}
.ws57{word-spacing:7.168000pt;}
.ws100{word-spacing:7.224000pt;}
.ws56{word-spacing:7.280000pt;}
.ws12e{word-spacing:7.392000pt;}
.ws6d{word-spacing:7.448000pt;}
.ws116{word-spacing:7.504000pt;}
.ws169{word-spacing:7.525333pt;}
.ws117{word-spacing:7.560000pt;}
.ws5f{word-spacing:7.616000pt;}
.ws5c{word-spacing:7.672000pt;}
.ws162{word-spacing:7.706667pt;}
.ws62{word-spacing:7.728000pt;}
.ws198{word-spacing:7.752000pt;}
.ws43{word-spacing:7.784000pt;}
.ws60{word-spacing:7.840000pt;}
.wsf1{word-spacing:7.952000pt;}
.ws4{word-spacing:8.000000pt;}
.ws82{word-spacing:8.064000pt;}
.wsbf{word-spacing:8.120000pt;}
.ws136{word-spacing:8.208000pt;}
.ws63{word-spacing:8.232000pt;}
.ws128{word-spacing:8.288000pt;}
.ws16b{word-spacing:8.296000pt;}
.ws168{word-spacing:8.341333pt;}
.ws38{word-spacing:8.400000pt;}
.ws166{word-spacing:8.432000pt;}
.ws10c{word-spacing:8.456000pt;}
.wsac{word-spacing:8.568000pt;}
.ws92{word-spacing:8.624000pt;}
.wse2{word-spacing:8.680000pt;}
.ws14b{word-spacing:8.704000pt;}
.wsc9{word-spacing:8.736000pt;}
.ws165{word-spacing:8.794667pt;}
.ws126{word-spacing:8.848000pt;}
.ws199{word-spacing:8.885333pt;}
.wsca{word-spacing:8.904000pt;}
.wsfc{word-spacing:8.960000pt;}
.ws37{word-spacing:9.016000pt;}
.wsc7{word-spacing:9.128000pt;}
.ws42{word-spacing:9.184000pt;}
.ws8a{word-spacing:9.240000pt;}
.ws84{word-spacing:9.296000pt;}
.wsc2{word-spacing:9.408000pt;}
.ws5b{word-spacing:9.464000pt;}
.wsbe{word-spacing:9.520000pt;}
.ws8d{word-spacing:9.632000pt;}
.ws172{word-spacing:9.701333pt;}
.wsde{word-spacing:9.800000pt;}
.ws141{word-spacing:9.882667pt;}
.wsff{word-spacing:10.024000pt;}
.ws110{word-spacing:10.080000pt;}
.ws103{word-spacing:10.192000pt;}
.ws154{word-spacing:10.200000pt;}
.ws5e{word-spacing:10.248000pt;}
.wsf7{word-spacing:10.304000pt;}
.ws9f{word-spacing:10.360000pt;}
.ws10f{word-spacing:10.472000pt;}
.ws102{word-spacing:10.528000pt;}
.wsfe{word-spacing:10.584000pt;}
.ws115{word-spacing:10.640000pt;}
.ws76{word-spacing:10.696000pt;}
.ws74{word-spacing:10.752000pt;}
.ws196{word-spacing:10.834667pt;}
.wsf0{word-spacing:10.976000pt;}
.wsdb{word-spacing:11.032000pt;}
.ws32{word-spacing:11.200000pt;}
.ws75{word-spacing:11.256000pt;}
.ws176{word-spacing:11.333333pt;}
.ws125{word-spacing:11.368000pt;}
.ws12f{word-spacing:11.424000pt;}
.ws87{word-spacing:11.648000pt;}
.ws187{word-spacing:11.877333pt;}
.ws192{word-spacing:11.922667pt;}
.wsf3{word-spacing:11.984000pt;}
.ws93{word-spacing:12.096000pt;}
.ws197{word-spacing:12.104000pt;}
.ws17{word-spacing:12.192000pt;}
.wsb2{word-spacing:12.264000pt;}
.ws7f{word-spacing:12.488000pt;}
.wsda{word-spacing:12.768000pt;}
.ws137{word-spacing:13.488000pt;}
.wse1{word-spacing:13.608000pt;}
.ws81{word-spacing:13.720000pt;}
.wsf5{word-spacing:13.944000pt;}
.ws1{word-spacing:15.082451pt;}
.ws11a{word-spacing:15.512000pt;}
.ws7d{word-spacing:15.904000pt;}
.ws7e{word-spacing:16.016000pt;}
.ws1e{word-spacing:19.387530pt;}
.ws91{word-spacing:19.432000pt;}
.wse7{word-spacing:19.992000pt;}
.wsef{word-spacing:24.080000pt;}
.ws1b{word-spacing:599.795563pt;}
._17{margin-left:-1287.655914pt;}
._16{margin-left:-207.490400pt;}
._10{margin-left:-86.544487pt;}
._12{margin-left:-27.384000pt;}
._18{margin-left:-25.858667pt;}
._14{margin-left:-16.187733pt;}
._13{margin-left:-14.129600pt;}
._1b{margin-left:-11.333333pt;}
._3{margin-left:-8.204800pt;}
._5{margin-left:-7.072000pt;}
._6{margin-left:-5.707733pt;}
._1{margin-left:-4.576000pt;}
._7{margin-left:-3.441067pt;}
._2{margin-left:-2.229333pt;}
._4{margin-left:-1.158400pt;}
._9{width:1.179733pt;}
._8{width:2.448000pt;}
._c{width:3.420267pt;}
._a{width:4.809600pt;}
._b{width:6.158400pt;}
._1a{width:7.705867pt;}
._e{width:8.788267pt;}
._15{width:10.040800pt;}
._f{width:11.536000pt;}
._19{width:18.529600pt;}
._11{width:1141.801600pt;}
._0{width:1242.160000pt;}
._d{width:1504.368000pt;}
.fsd{font-size:27.237867pt;}
.fs19{font-size:31.733333pt;}
.fsb{font-size:32.170133pt;}
.fs1b{font-size:33.600000pt;}
.fs10{font-size:37.530133pt;}
.fs1a{font-size:39.200000pt;}
.fs0{font-size:40.000000pt;}
.fs18{font-size:42.562133pt;}
.fs9{font-size:42.892267pt;}
.fsc{font-size:42.892765pt;}
.fs14{font-size:42.893292pt;}
.fs11{font-size:42.893548pt;}
.fs12{font-size:42.893950pt;}
.fs15{font-size:45.333333pt;}
.fs17{font-size:47.881600pt;}
.fs3{font-size:48.000000pt;}
.fsa{font-size:48.253867pt;}
.fsf{font-size:48.254718pt;}
.fse{font-size:48.255015pt;}
.fs13{font-size:48.255084pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.fs16{font-size:69.694933pt;}
.fs7{font-size:70.235200pt;}
.fs4{font-size:74.665600pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:98.300267pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:17.323867pt;}
.y1{bottom:42.609467pt;}
.y20e{bottom:79.099200pt;}
.yd3{bottom:79.197200pt;}
.y1d8{bottom:79.224800pt;}
.y1a1{bottom:79.294800pt;}
.y106{bottom:79.335333pt;}
.y243{bottom:79.344933pt;}
.y15f{bottom:79.370533pt;}
.y277{bottom:79.399467pt;}
.y2ba{bottom:79.433467pt;}
.y151{bottom:79.457333pt;}
.y11b{bottom:79.490400pt;}
.y130{bottom:79.616400pt;}
.y9c{bottom:81.112533pt;}
.y2b9{bottom:92.908800pt;}
.y276{bottom:92.931467pt;}
.y9b{bottom:95.109200pt;}
.yd2{bottom:95.241200pt;}
.y105{bottom:95.351333pt;}
.y242{bottom:95.444933pt;}
.y1d7{bottom:95.464800pt;}
.y15e{bottom:95.484533pt;}
.y1a0{bottom:95.534800pt;}
.y150{bottom:95.711333pt;}
.y11a{bottom:96.038400pt;}
.y12f{bottom:96.164400pt;}
.y2b8{bottom:106.384133pt;}
.y275{bottom:106.463467pt;}
.y30{bottom:108.573333pt;}
.y9a{bottom:109.105867pt;}
.y104{bottom:111.367333pt;}
.y20d{bottom:111.383200pt;}
.y241{bottom:111.544933pt;}
.y15d{bottom:111.599733pt;}
.y1d6{bottom:111.704800pt;}
.y19f{bottom:111.774800pt;}
.y14f{bottom:111.965333pt;}
.y119{bottom:112.586400pt;}
.y12e{bottom:112.712400pt;}
.y2b7{bottom:119.859467pt;}
.y274{bottom:119.995467pt;}
.yd1{bottom:121.953200pt;}
.y99{bottom:123.102533pt;}
.y2f{bottom:123.237333pt;}
.y103{bottom:127.383333pt;}
.y20c{bottom:127.525200pt;}
.y240{bottom:127.644933pt;}
.y15c{bottom:127.713733pt;}
.y1d5{bottom:127.944800pt;}
.y19e{bottom:128.014800pt;}
.y14e{bottom:128.219333pt;}
.y118{bottom:129.134400pt;}
.y12d{bottom:129.260400pt;}
.y2b6{bottom:133.334800pt;}
.y273{bottom:133.527467pt;}
.y2e{bottom:137.901333pt;}
.yd0{bottom:137.997200pt;}
.y102{bottom:143.399333pt;}
.y20b{bottom:143.667200pt;}
.y23f{bottom:143.744933pt;}
.y15b{bottom:143.827733pt;}
.y1d4{bottom:144.184800pt;}
.y19d{bottom:144.254800pt;}
.y14d{bottom:144.473333pt;}
.y117{bottom:145.682400pt;}
.y12c{bottom:145.808400pt;}
.y2b5{bottom:146.810133pt;}
.y272{bottom:147.059467pt;}
.ycf{bottom:154.041200pt;}
.y101{bottom:159.415333pt;}
.y20a{bottom:159.809200pt;}
.y15a{bottom:159.941733pt;}
.y2b4{bottom:160.285467pt;}
.y1d3{bottom:160.424800pt;}
.y19c{bottom:160.494800pt;}
.y271{bottom:160.591467pt;}
.y14c{bottom:160.727333pt;}
.y116{bottom:162.230400pt;}
.y12b{bottom:162.356400pt;}
.y2d{bottom:163.233333pt;}
.y90{bottom:167.852706pt;}
.yce{bottom:170.085200pt;}
.y4d{bottom:171.744400pt;}
.y23e{bottom:173.171867pt;}
.y2b3{bottom:173.760800pt;}
.y270{bottom:174.123467pt;}
.y100{bottom:175.431333pt;}
.y209{bottom:175.951200pt;}
.y159{bottom:176.055733pt;}
.y1d2{bottom:176.664800pt;}
.y19b{bottom:176.734800pt;}
.y14b{bottom:176.981333pt;}
.y115{bottom:178.778400pt;}
.y12a{bottom:178.904400pt;}
.y2b2{bottom:187.236133pt;}
.y26f{bottom:187.655467pt;}
.y2c{bottom:188.565333pt;}
.yff{bottom:191.447333pt;}
.y208{bottom:192.093200pt;}
.y158{bottom:192.169733pt;}
.y1d1{bottom:192.904800pt;}
.y19a{bottom:192.974800pt;}
.y14a{bottom:193.235333pt;}
.y114{bottom:195.326400pt;}
.y129{bottom:195.452400pt;}
.ycd{bottom:196.797200pt;}
.y2b1{bottom:200.711467pt;}
.y26e{bottom:201.187467pt;}
.y2b{bottom:203.229333pt;}
.yfe{bottom:207.463333pt;}
.y207{bottom:208.235200pt;}
.y157{bottom:208.283733pt;}
.y1d0{bottom:209.144800pt;}
.y199{bottom:209.214800pt;}
.y149{bottom:209.489333pt;}
.y98{bottom:210.157600pt;}
.y113{bottom:211.874400pt;}
.y128{bottom:212.000400pt;}
.ycc{bottom:212.841200pt;}
.y2b0{bottom:214.186800pt;}
.y26d{bottom:214.719467pt;}
.y2a{bottom:217.893333pt;}
.yfd{bottom:223.479333pt;}
.y206{bottom:224.377200pt;}
.y156{bottom:224.397733pt;}
.y1cf{bottom:225.384800pt;}
.y198{bottom:225.454800pt;}
.y148{bottom:225.743333pt;}
.y23d{bottom:226.043200pt;}
.y68{bottom:227.644703pt;}
.y2af{bottom:227.662133pt;}
.y26c{bottom:228.251467pt;}
.y112{bottom:228.422400pt;}
.y127{bottom:228.548400pt;}
.ycb{bottom:228.885200pt;}
.y29{bottom:236.337333pt;}
.y205{bottom:240.519200pt;}
.y2ae{bottom:241.137467pt;}
.y1ce{bottom:241.624800pt;}
.y197{bottom:241.694800pt;}
.y26b{bottom:241.783467pt;}
.y147{bottom:241.997333pt;}
.y23c{bottom:242.143200pt;}
.y81{bottom:242.885304pt;}
.y67{bottom:243.729770pt;}
.yca{bottom:244.929200pt;}
.y111{bottom:244.970400pt;}
.y126{bottom:245.096400pt;}
.y7f{bottom:245.531297pt;}
.y28{bottom:251.001333pt;}
.y80{bottom:251.056518pt;}
.yfc{bottom:252.824800pt;}
.y7e{bottom:253.702511pt;}
.y155{bottom:253.845333pt;}
.y2ad{bottom:254.612800pt;}
.y26a{bottom:255.315467pt;}
.y204{bottom:256.661200pt;}
.y1cd{bottom:257.864800pt;}
.y196{bottom:257.934800pt;}
.y23b{bottom:258.243200pt;}
.y146{bottom:258.251333pt;}
.yc9{bottom:260.973200pt;}
.y110{bottom:261.518400pt;}
.y125{bottom:261.644400pt;}
.y27{bottom:265.665333pt;}
.y78{bottom:266.908351pt;}
.y92{bottom:267.938800pt;}
.y2ac{bottom:268.088133pt;}
.y269{bottom:268.847467pt;}
.y203{bottom:272.803200pt;}
.y1cc{bottom:274.104800pt;}
.y195{bottom:274.174800pt;}
.y23a{bottom:274.343200pt;}
.y145{bottom:274.505333pt;}
.y77{bottom:275.079565pt;}
.yc8{bottom:277.017200pt;}
.y94{bottom:277.026133pt;}
.y10f{bottom:278.066400pt;}
.y124{bottom:278.192400pt;}
.y2ab{bottom:281.563467pt;}
.y268{bottom:282.379467pt;}
.y26{bottom:284.109333pt;}
.y202{bottom:288.945200pt;}
.y1cb{bottom:290.344800pt;}
.y194{bottom:290.414800pt;}
.y239{bottom:290.443200pt;}
.y144{bottom:290.759333pt;}
.yc7{bottom:293.061200pt;}
.y10e{bottom:294.614400pt;}
.y123{bottom:294.740400pt;}
.y2aa{bottom:295.038800pt;}
.y267{bottom:295.911467pt;}
.y25{bottom:298.773333pt;}
.y201{bottom:305.087200pt;}
.yfb{bottom:306.019733pt;}
.y238{bottom:306.543200pt;}
.y1ca{bottom:306.584800pt;}
.y193{bottom:306.654800pt;}
.y143{bottom:307.013333pt;}
.y154{bottom:307.293333pt;}
.y2a9{bottom:308.514133pt;}
.yc6{bottom:309.105200pt;}
.y266{bottom:309.443467pt;}
.y10d{bottom:311.162400pt;}
.y122{bottom:311.288400pt;}
.y24{bottom:317.217333pt;}
.y97{bottom:321.120667pt;}
.y200{bottom:321.229200pt;}
.y2a8{bottom:321.989467pt;}
.yfa{bottom:322.035733pt;}
.y237{bottom:322.643200pt;}
.y1c9{bottom:322.824800pt;}
.y192{bottom:322.894800pt;}
.y265{bottom:322.975467pt;}
.y142{bottom:323.267333pt;}
.y153{bottom:323.407333pt;}
.yc5{bottom:325.149200pt;}
.y10c{bottom:327.710400pt;}
.y121{bottom:327.836400pt;}
.y23{bottom:331.881333pt;}
.y87{bottom:332.336267pt;}
.y76{bottom:333.773973pt;}
.y2a7{bottom:335.464800pt;}
.y1ff{bottom:337.371200pt;}
.yf9{bottom:338.051733pt;}
.y236{bottom:338.743200pt;}
.y1c8{bottom:339.064800pt;}
.y191{bottom:339.134800pt;}
.y152{bottom:339.518000pt;}
.y141{bottom:339.521333pt;}
.yc4{bottom:341.193200pt;}
.y86{bottom:343.997380pt;}
.y4e{bottom:344.002133pt;}
.y10b{bottom:344.258400pt;}
.y120{bottom:344.384400pt;}
.y22{bottom:346.545333pt;}
.y2a6{bottom:348.940133pt;}
.y264{bottom:349.842533pt;}
.y1fe{bottom:353.513200pt;}
.yf8{bottom:354.067733pt;}
.y235{bottom:354.843200pt;}
.y1c7{bottom:355.304800pt;}
.y190{bottom:355.374800pt;}
.y2e9{bottom:355.683867pt;}
.y5f{bottom:355.868253pt;}
.y318{bottom:355.933200pt;}
.y79{bottom:356.799746pt;}
.yc3{bottom:357.237200pt;}
.y10a{bottom:360.806400pt;}
.y11f{bottom:360.932400pt;}
.y2a5{bottom:362.415467pt;}
.y16a{bottom:363.268667pt;}
.y5e{bottom:364.039467pt;}
.y21{bottom:364.989333pt;}
.y2e8{bottom:369.011867pt;}
.y317{bottom:369.261200pt;}
.y1fd{bottom:369.655200pt;}
.yf7{bottom:370.083733pt;}
.y234{bottom:370.943200pt;}
.y1c6{bottom:371.544800pt;}
.y18f{bottom:371.614800pt;}
.y75{bottom:373.101961pt;}
.yc2{bottom:373.281200pt;}
.y2a4{bottom:375.890800pt;}
.y169{bottom:377.268667pt;}
.y66{bottom:377.340376pt;}
.y109{bottom:377.354400pt;}
.y11e{bottom:377.480400pt;}
.y20{bottom:379.653333pt;}
.y2e7{bottom:382.339867pt;}
.y316{bottom:382.589200pt;}
.y1fc{bottom:385.797200pt;}
.yf6{bottom:386.099733pt;}
.y65{bottom:386.653630pt;}
.y233{bottom:387.043200pt;}
.y1c5{bottom:387.784800pt;}
.y18e{bottom:387.854800pt;}
.y83{bottom:388.335867pt;}
.yc1{bottom:389.325200pt;}
.y2a3{bottom:389.366133pt;}
.y168{bottom:391.268667pt;}
.y108{bottom:393.902400pt;}
.y11d{bottom:394.028400pt;}
.y88{bottom:394.173597pt;}
.y1f{bottom:394.317333pt;}
.y64{bottom:395.202843pt;}
.y2e6{bottom:395.667867pt;}
.y315{bottom:395.917200pt;}
.y74{bottom:397.768411pt;}
.y1fb{bottom:401.939200pt;}
.yf5{bottom:402.115733pt;}
.y2a2{bottom:402.841467pt;}
.y232{bottom:403.143200pt;}
.y263{bottom:403.423467pt;}
.y1c4{bottom:404.024800pt;}
.y18d{bottom:404.094800pt;}
.y73{bottom:404.202438pt;}
.y91{bottom:404.746267pt;}
.y167{bottom:405.265333pt;}
.yc0{bottom:405.369200pt;}
.y54{bottom:406.961141pt;}
.y1e{bottom:408.981333pt;}
.y2e5{bottom:408.995867pt;}
.y314{bottom:409.245200pt;}
.y107{bottom:410.450400pt;}
.y11c{bottom:410.576400pt;}
.y72{bottom:413.395053pt;}
.y2a1{bottom:416.316800pt;}
.y262{bottom:417.619467pt;}
.y1fa{bottom:418.081200pt;}
.yf4{bottom:418.131733pt;}
.y231{bottom:419.243200pt;}
.y1c3{bottom:420.264800pt;}
.y18c{bottom:420.334800pt;}
.ybf{bottom:421.413200pt;}
.y2e4{bottom:422.323867pt;}
.y71{bottom:422.555499pt;}
.y313{bottom:422.573200pt;}
.y1d{bottom:423.645333pt;}
.y2a0{bottom:429.792133pt;}
.y8f{bottom:429.991305pt;}
.y8d{bottom:430.047600pt;}
.y70{bottom:430.726713pt;}
.y261{bottom:431.815467pt;}
.yf3{bottom:434.147733pt;}
.y1f9{bottom:434.223200pt;}
.y230{bottom:435.343200pt;}
.y2e3{bottom:435.651867pt;}
.y312{bottom:435.901200pt;}
.y140{bottom:436.380933pt;}
.y1c2{bottom:436.504800pt;}
.y18b{bottom:436.574800pt;}
.y164{bottom:437.121467pt;}
.y161{bottom:437.201333pt;}
.ybe{bottom:437.457200pt;}
.y50{bottom:441.952133pt;}
.y6f{bottom:442.774427pt;}
.y29f{bottom:443.267467pt;}
.y260{bottom:446.011467pt;}
.y2e2{bottom:448.979867pt;}
.y311{bottom:449.229200pt;}
.yf2{bottom:450.163733pt;}
.y1f8{bottom:450.365200pt;}
.y13f{bottom:450.380933pt;}
.y22f{bottom:451.443200pt;}
.y6e{bottom:451.701639pt;}
.y1c1{bottom:452.744800pt;}
.y1c{bottom:452.757333pt;}
.y18a{bottom:452.814800pt;}
.ybd{bottom:453.501200pt;}
.y29e{bottom:456.742800pt;}
.y25f{bottom:460.207467pt;}
.y2e1{bottom:462.307867pt;}
.y310{bottom:462.557200pt;}
.y13e{bottom:464.380933pt;}
.y6d{bottom:464.907479pt;}
.yf1{bottom:466.179733pt;}
.y1f7{bottom:466.507200pt;}
.y1b{bottom:467.421333pt;}
.y22e{bottom:467.543200pt;}
.y1c0{bottom:468.984800pt;}
.y189{bottom:469.054800pt;}
.ybc{bottom:469.545200pt;}
.y29d{bottom:470.218133pt;}
.y25e{bottom:474.403467pt;}
.y61{bottom:474.490907pt;}
.y2e0{bottom:475.635867pt;}
.y30f{bottom:475.885200pt;}
.y13d{bottom:478.384267pt;}
.y4f{bottom:480.102164pt;}
.yf0{bottom:482.195733pt;}
.y7c{bottom:482.206968pt;}
.y1f6{bottom:482.649200pt;}
.y60{bottom:482.662267pt;}
.y22d{bottom:483.643200pt;}
.y29c{bottom:483.693467pt;}
.y1bf{bottom:485.224800pt;}
.y188{bottom:485.294800pt;}
.ybb{bottom:485.589200pt;}
.y25d{bottom:488.599467pt;}
.y2df{bottom:488.963867pt;}
.y30e{bottom:489.213200pt;}
.y1a{bottom:489.645333pt;}
.y13c{bottom:492.380933pt;}
.y7b{bottom:493.635408pt;}
.y29b{bottom:497.168800pt;}
.yef{bottom:498.211733pt;}
.y1f5{bottom:498.791200pt;}
.y22c{bottom:499.743200pt;}
.y1be{bottom:501.464800pt;}
.yba{bottom:501.633200pt;}
.y7a{bottom:501.806622pt;}
.y2de{bottom:502.291867pt;}
.y30d{bottom:502.541200pt;}
.y25c{bottom:502.795467pt;}
.y63{bottom:503.173853pt;}
.y19{bottom:504.309333pt;}
.y13b{bottom:506.377600pt;}
.y29a{bottom:510.644133pt;}
.y62{bottom:511.345067pt;}
.y187{bottom:512.202800pt;}
.y6c{bottom:512.551447pt;}
.yee{bottom:514.227733pt;}
.y1f4{bottom:514.933200pt;}
.y2dd{bottom:515.619867pt;}
.y22b{bottom:515.843200pt;}
.y30c{bottom:515.869200pt;}
.y25b{bottom:516.991467pt;}
.yb9{bottom:517.677200pt;}
.y1bd{bottom:517.704800pt;}
.y18{bottom:518.973333pt;}
.y95{bottom:521.244533pt;}
.y55{bottom:523.099867pt;}
.y299{bottom:524.119467pt;}
.y186{bottom:528.442800pt;}
.y2dc{bottom:528.947867pt;}
.y30b{bottom:529.197200pt;}
.yed{bottom:530.243733pt;}
.y1f3{bottom:531.075200pt;}
.y25a{bottom:531.187467pt;}
.y6b{bottom:531.676591pt;}
.y22a{bottom:531.943200pt;}
.y17{bottom:533.637333pt;}
.yb8{bottom:533.721200pt;}
.y1bc{bottom:533.944800pt;}
.y298{bottom:537.594800pt;}
.y84{bottom:540.774043pt;}
.y56{bottom:541.309333pt;}
.y2db{bottom:542.275867pt;}
.y30a{bottom:542.525200pt;}
.y185{bottom:544.682800pt;}
.y259{bottom:545.383467pt;}
.yec{bottom:546.259733pt;}
.y1f2{bottom:547.217200pt;}
.y229{bottom:548.043200pt;}
.y16{bottom:548.301333pt;}
.yb7{bottom:549.765200pt;}
.y1bb{bottom:550.184800pt;}
.y7d{bottom:550.287013pt;}
.y13a{bottom:550.903867pt;}
.y297{bottom:551.070133pt;}
.y82{bottom:551.468400pt;}
.y2da{bottom:555.603867pt;}
.y309{bottom:555.853200pt;}
.y258{bottom:559.592400pt;}
.y184{bottom:560.922800pt;}
.yeb{bottom:562.275733pt;}
.y15{bottom:562.965333pt;}
.y6a{bottom:563.042471pt;}
.y51{bottom:563.062400pt;}
.y1f1{bottom:563.359200pt;}
.y228{bottom:564.143200pt;}
.y296{bottom:564.545467pt;}
.yb6{bottom:565.809200pt;}
.y1ba{bottom:566.424800pt;}
.y2d9{bottom:568.931867pt;}
.y308{bottom:569.181200pt;}
.y4a{bottom:572.093873pt;}
.y257{bottom:573.788400pt;}
.y5d{bottom:574.259345pt;}
.y183{bottom:577.162800pt;}
.y14{bottom:577.629333pt;}
.y295{bottom:578.020800pt;}
.yea{bottom:578.291733pt;}
.y1f0{bottom:579.501200pt;}
.y227{bottom:580.243200pt;}
.y85{bottom:580.793689pt;}
.yb5{bottom:581.853200pt;}
.y2d8{bottom:582.259867pt;}
.y307{bottom:582.509200pt;}
.y49{bottom:582.570309pt;}
.y1b9{bottom:582.664800pt;}
.y5c{bottom:584.735781pt;}
.y256{bottom:587.984400pt;}
.y294{bottom:591.496133pt;}
.y13{bottom:592.293333pt;}
.y182{bottom:593.402800pt;}
.ye9{bottom:594.307733pt;}
.y2d7{bottom:595.587867pt;}
.y1ef{bottom:595.643200pt;}
.y306{bottom:595.837200pt;}
.y226{bottom:596.343200pt;}
.yb4{bottom:597.897200pt;}
.y1b8{bottom:598.904800pt;}
.y69{bottom:600.536761pt;}
.y255{bottom:602.180400pt;}
.y293{bottom:604.971467pt;}
.y12{bottom:606.957333pt;}
.y165{bottom:607.378400pt;}
.y2d6{bottom:608.915867pt;}
.y305{bottom:609.165200pt;}
.y181{bottom:609.642800pt;}
.ye8{bottom:610.323733pt;}
.y166{bottom:611.148667pt;}
.y1ee{bottom:611.785200pt;}
.y225{bottom:612.443200pt;}
.y5b{bottom:613.473600pt;}
.yb3{bottom:613.941200pt;}
.y1b7{bottom:615.144800pt;}
.y292{bottom:618.446800pt;}
.y11{bottom:621.621333pt;}
.y2d5{bottom:622.243867pt;}
.y304{bottom:622.493200pt;}
.y180{bottom:625.882800pt;}
.ye7{bottom:626.339733pt;}
.y1ed{bottom:627.927200pt;}
.y224{bottom:628.543200pt;}
.y254{bottom:629.714000pt;}
.yb2{bottom:629.985200pt;}
.y1b6{bottom:631.384800pt;}
.y291{bottom:631.922133pt;}
.y48{bottom:632.925831pt;}
.y2d4{bottom:635.571867pt;}
.y303{bottom:635.821200pt;}
.y10{bottom:636.285333pt;}
.y17f{bottom:642.122800pt;}
.ye6{bottom:642.355733pt;}
.y93{bottom:642.803467pt;}
.y47{bottom:643.402267pt;}
.y1ec{bottom:644.069200pt;}
.y223{bottom:644.643200pt;}
.y290{bottom:645.397467pt;}
.yb1{bottom:646.029200pt;}
.y1b5{bottom:647.624800pt;}
.y2d3{bottom:648.899867pt;}
.y302{bottom:649.149200pt;}
.yf{bottom:650.949333pt;}
.y17e{bottom:658.362800pt;}
.ye5{bottom:658.371733pt;}
.y28f{bottom:658.872800pt;}
.y1eb{bottom:660.211200pt;}
.y222{bottom:660.743200pt;}
.yb0{bottom:662.073200pt;}
.y2d2{bottom:662.227867pt;}
.y301{bottom:662.477200pt;}
.y1b4{bottom:663.864800pt;}
.ye{bottom:665.613333pt;}
.y5a{bottom:670.250331pt;}
.y28e{bottom:672.348133pt;}
.ye4{bottom:674.387733pt;}
.y17d{bottom:674.602800pt;}
.y2d1{bottom:675.555867pt;}
.y300{bottom:675.805200pt;}
.y1ea{bottom:676.353200pt;}
.y221{bottom:676.843200pt;}
.y8b{bottom:677.390667pt;}
.yaf{bottom:678.117200pt;}
.y160{bottom:679.232533pt;}
.y59{bottom:680.083383pt;}
.y1b3{bottom:680.104800pt;}
.yd{bottom:680.277333pt;}
.y253{bottom:683.247600pt;}
.y28d{bottom:685.823467pt;}
.y2d0{bottom:688.883867pt;}
.y2ff{bottom:689.133200pt;}
.ye3{bottom:690.403733pt;}
.y17c{bottom:690.842800pt;}
.y1e9{bottom:692.495200pt;}
.y220{bottom:692.943200pt;}
.yae{bottom:694.161200pt;}
.yc{bottom:694.941333pt;}
.y1b2{bottom:696.344800pt;}
.y46{bottom:697.757467pt;}
.y28c{bottom:699.298800pt;}
.y2cf{bottom:702.211867pt;}
.y2fe{bottom:702.461200pt;}
.ye2{bottom:706.419733pt;}
.y17b{bottom:707.082800pt;}
.y1e8{bottom:708.637200pt;}
.y21f{bottom:709.043200pt;}
.yb{bottom:709.605333pt;}
.yad{bottom:710.205200pt;}
.y1b1{bottom:712.584800pt;}
.y28b{bottom:712.774133pt;}
.y2ce{bottom:715.539867pt;}
.y2fd{bottom:715.789200pt;}
.y138{bottom:718.191333pt;}
.y133{bottom:719.253467pt;}
.y139{bottom:721.961733pt;}
.ye1{bottom:722.435733pt;}
.y134{bottom:723.023867pt;}
.y135{bottom:723.184133pt;}
.y17a{bottom:723.322800pt;}
.y252{bottom:723.939200pt;}
.ya{bottom:724.269333pt;}
.y1e7{bottom:724.779200pt;}
.y21e{bottom:725.143200pt;}
.y53{bottom:725.243646pt;}
.yac{bottom:726.249200pt;}
.y28a{bottom:726.249467pt;}
.y1b0{bottom:728.824800pt;}
.y2cd{bottom:728.867867pt;}
.y2fc{bottom:729.117200pt;}
.y8c{bottom:736.989467pt;}
.y52{bottom:737.029653pt;}
.ye0{bottom:738.451733pt;}
.y179{bottom:739.562800pt;}
.y289{bottom:739.724800pt;}
.y251{bottom:740.137200pt;}
.y1e6{bottom:740.921200pt;}
.y21d{bottom:741.243200pt;}
.y2cc{bottom:742.195867pt;}
.yab{bottom:742.293200pt;}
.y2fb{bottom:742.445200pt;}
.y1af{bottom:745.064800pt;}
.y9{bottom:749.601333pt;}
.y288{bottom:753.200133pt;}
.ydf{bottom:754.467733pt;}
.y2cb{bottom:755.523867pt;}
.y2fa{bottom:755.773200pt;}
.y178{bottom:755.802800pt;}
.y250{bottom:756.335200pt;}
.y8e{bottom:756.850619pt;}
.y1e5{bottom:757.063200pt;}
.y21c{bottom:757.343200pt;}
.yaa{bottom:758.337200pt;}
.y1ae{bottom:761.304800pt;}
.y8{bottom:764.265333pt;}
.y287{bottom:766.675467pt;}
.y2ca{bottom:768.851867pt;}
.y8a{bottom:768.973200pt;}
.y2f9{bottom:769.101200pt;}
.yde{bottom:770.483733pt;}
.y177{bottom:772.042800pt;}
.y24f{bottom:772.533200pt;}
.y1e4{bottom:773.205200pt;}
.y21b{bottom:773.443200pt;}
.ya9{bottom:774.381200pt;}
.y58{bottom:775.947599pt;}
.y1ad{bottom:777.544800pt;}
.y7{bottom:778.929333pt;}
.y286{bottom:780.150800pt;}
.y4c{bottom:781.404952pt;}
.y2c9{bottom:782.179867pt;}
.y2f8{bottom:782.429200pt;}
.y57{bottom:785.276667pt;}
.ydd{bottom:786.499733pt;}
.y176{bottom:788.282800pt;}
.y24e{bottom:788.731200pt;}
.y1e3{bottom:789.347200pt;}
.y96{bottom:789.493467pt;}
.y21a{bottom:789.543200pt;}
.y89{bottom:789.713733pt;}
.y4b{bottom:790.271600pt;}
.y45{bottom:790.292133pt;}
.ya8{bottom:790.425200pt;}
.y285{bottom:793.626133pt;}
.y1ac{bottom:793.784800pt;}
.y2c8{bottom:795.507867pt;}
.y2f7{bottom:795.757200pt;}
.ydc{bottom:802.515733pt;}
.y175{bottom:804.522800pt;}
.y24d{bottom:804.929200pt;}
.y1e2{bottom:805.489200pt;}
.y219{bottom:805.643200pt;}
.ya7{bottom:806.469200pt;}
.y284{bottom:807.101467pt;}
.y2c7{bottom:808.835867pt;}
.y2f6{bottom:809.085200pt;}
.y1ab{bottom:810.024800pt;}
.y6{bottom:817.596000pt;}
.ydb{bottom:818.531733pt;}
.y283{bottom:820.576800pt;}
.y174{bottom:820.762800pt;}
.y24c{bottom:821.127200pt;}
.y1e1{bottom:821.631200pt;}
.y218{bottom:821.743200pt;}
.y2c6{bottom:822.163867pt;}
.y2f5{bottom:822.413200pt;}
.ya6{bottom:822.513200pt;}
.y1aa{bottom:826.264800pt;}
.y3b{bottom:831.447067pt;}
.y44{bottom:831.489067pt;}
.y282{bottom:834.052133pt;}
.yda{bottom:834.547733pt;}
.y2c5{bottom:835.491867pt;}
.y2f4{bottom:835.741200pt;}
.y173{bottom:837.002800pt;}
.y24b{bottom:837.325200pt;}
.y1e0{bottom:837.773200pt;}
.y217{bottom:837.843200pt;}
.ya5{bottom:838.557200pt;}
.y5{bottom:841.596000pt;}
.y1a9{bottom:842.504800pt;}
.y281{bottom:847.527467pt;}
.y3a{bottom:848.191067pt;}
.y43{bottom:848.415067pt;}
.y2c4{bottom:848.819867pt;}
.y2f3{bottom:849.069200pt;}
.yd9{bottom:850.563733pt;}
.y172{bottom:853.242800pt;}
.y24a{bottom:853.523200pt;}
.y1df{bottom:853.915200pt;}
.y216{bottom:853.943200pt;}
.ya4{bottom:854.601200pt;}
.y280{bottom:861.002800pt;}
.y2c3{bottom:862.147867pt;}
.y2f2{bottom:862.397200pt;}
.y39{bottom:864.935067pt;}
.y42{bottom:865.341067pt;}
.yd8{bottom:866.579733pt;}
.y1a8{bottom:869.412800pt;}
.y171{bottom:869.482800pt;}
.y249{bottom:869.721200pt;}
.y215{bottom:870.043200pt;}
.y1de{bottom:870.057200pt;}
.ya3{bottom:870.645200pt;}
.y27f{bottom:874.478133pt;}
.y2c2{bottom:875.475867pt;}
.y2f1{bottom:875.725200pt;}
.y38{bottom:881.679067pt;}
.y41{bottom:882.267067pt;}
.yd7{bottom:882.595733pt;}
.y1a7{bottom:885.652800pt;}
.y170{bottom:885.722800pt;}
.y248{bottom:885.919200pt;}
.y214{bottom:886.143200pt;}
.y1dd{bottom:886.199200pt;}
.ya2{bottom:886.689200pt;}
.y27e{bottom:887.953467pt;}
.y2c1{bottom:888.803867pt;}
.y2f0{bottom:889.053200pt;}
.y4{bottom:889.617333pt;}
.y37{bottom:898.423067pt;}
.yd6{bottom:898.611733pt;}
.y40{bottom:899.193067pt;}
.y27d{bottom:901.428800pt;}
.y1a6{bottom:901.892800pt;}
.y16f{bottom:901.962800pt;}
.y247{bottom:902.117200pt;}
.y2c0{bottom:902.131867pt;}
.y213{bottom:902.243200pt;}
.y1dc{bottom:902.341200pt;}
.y2ef{bottom:902.381200pt;}
.ya1{bottom:902.733200pt;}
.yd5{bottom:914.627733pt;}
.y27c{bottom:914.904133pt;}
.y36{bottom:915.167067pt;}
.y2bf{bottom:915.459867pt;}
.y2ee{bottom:915.709200pt;}
.y3f{bottom:916.119067pt;}
.y1a5{bottom:918.132800pt;}
.y16e{bottom:918.202800pt;}
.y246{bottom:918.315200pt;}
.y212{bottom:918.343200pt;}
.y1db{bottom:918.483200pt;}
.ya0{bottom:918.777200pt;}
.y3{bottom:922.940000pt;}
.y27b{bottom:928.379467pt;}
.y2be{bottom:928.787867pt;}
.y2ed{bottom:929.037200pt;}
.yd4{bottom:930.643733pt;}
.y35{bottom:931.911067pt;}
.y3e{bottom:933.045067pt;}
.y1a4{bottom:934.372800pt;}
.y16d{bottom:934.442800pt;}
.y211{bottom:934.443200pt;}
.y245{bottom:934.513200pt;}
.y1da{bottom:934.625200pt;}
.y9f{bottom:934.821200pt;}
.y27a{bottom:941.854800pt;}
.y2bd{bottom:942.115867pt;}
.y2ec{bottom:942.365200pt;}
.y136{bottom:943.966933pt;}
.y137{bottom:947.737200pt;}
.y3d{bottom:949.971067pt;}
.y132{bottom:949.992133pt;}
.y210{bottom:950.543200pt;}
.y1a3{bottom:950.612800pt;}
.y16c{bottom:950.682800pt;}
.y244{bottom:950.711200pt;}
.y1d9{bottom:950.767200pt;}
.y9e{bottom:950.865200pt;}
.y163{bottom:951.498133pt;}
.y162{bottom:951.530800pt;}
.y131{bottom:951.561733pt;}
.y279{bottom:955.330133pt;}
.y2bc{bottom:955.443867pt;}
.y2eb{bottom:955.693200pt;}
.y2{bottom:956.262667pt;}
.y34{bottom:959.989200pt;}
.y20f{bottom:966.643200pt;}
.y1a2{bottom:966.852800pt;}
.y3c{bottom:966.897067pt;}
.y9d{bottom:966.909200pt;}
.y16b{bottom:966.922800pt;}
.y2bb{bottom:968.771867pt;}
.y278{bottom:968.805467pt;}
.y2ea{bottom:969.021200pt;}
.y31{bottom:976.629333pt;}
.y33{bottom:998.545867pt;}
.h11{height:19.829167pt;}
.hf{height:22.004371pt;}
.h15{height:27.321937pt;}
.h20{height:29.112499pt;}
.h1{height:29.121094pt;}
.h14{height:29.166741pt;}
.h10{height:29.167080pt;}
.h16{height:29.167612pt;}
.h17{height:29.167886pt;}
.hc{height:29.338310pt;}
.h19{height:29.339012pt;}
.h1b{height:29.895910pt;}
.h22{height:31.476562pt;}
.h1c{height:31.498698pt;}
.he{height:33.005645pt;}
.h13{height:33.006227pt;}
.h12{height:33.006430pt;}
.h18{height:33.006478pt;}
.h5{height:33.328125pt;}
.h4{height:33.351562pt;}
.h1f{height:33.373475pt;}
.h6{height:36.189333pt;}
.h1d{height:38.882812pt;}
.h9{height:38.910156pt;}
.h21{height:38.923490pt;}
.h3{height:44.468750pt;}
.hd{height:44.683081pt;}
.ha{height:47.900406pt;}
.h1e{height:48.577369pt;}
.h1a{height:48.953934pt;}
.h7{height:56.447194pt;}
.h8{height:66.703125pt;}
.hb{height:71.562594pt;}
.h2{height:81.526042pt;}
.h0{height:1056.000000pt;}
.w1{width:133.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.351067pt;}
.x4{left:48.756000pt;}
.x45{left:50.662933pt;}
.x4c{left:56.295067pt;}
.x4a{left:67.641867pt;}
.x4d{left:71.690933pt;}
.x1{left:75.590533pt;}
.x53{left:81.892000pt;}
.x47{left:94.490533pt;}
.x3e{left:102.622672pt;}
.x6{left:110.149200pt;}
.x37{left:113.302000pt;}
.x3b{left:118.908267pt;}
.x3a{left:124.552533pt;}
.x2{left:136.062933pt;}
.x1b{left:143.934667pt;}
.x46{left:180.673600pt;}
.xb{left:182.126533pt;}
.x1c{left:212.712416pt;}
.x1d{left:217.913104pt;}
.x39{left:226.329467pt;}
.x51{left:261.568533pt;}
.x3f{left:271.405065pt;}
.x25{left:283.039711pt;}
.x10{left:285.278400pt;}
.x22{left:289.505908pt;}
.x23{left:291.983008pt;}
.x24{left:295.087426pt;}
.xf{left:306.733400pt;}
.x26{left:315.579801pt;}
.xa{left:336.285423pt;}
.x9{left:341.057188pt;}
.x8{left:359.286401pt;}
.x41{left:362.552000pt;}
.x7{left:366.181333pt;}
.x57{left:388.958533pt;}
.xd{left:391.102533pt;}
.xc{left:400.981946pt;}
.x56{left:403.007333pt;}
.x5{left:404.019867pt;}
.x1f{left:417.427200pt;}
.x20{left:421.465214pt;}
.x4b{left:422.961867pt;}
.x48{left:430.866133pt;}
.xe{left:434.907733pt;}
.x54{left:444.249467pt;}
.x49{left:449.794133pt;}
.x21{left:450.903467pt;}
.x11{left:456.250933pt;}
.x40{left:461.122400pt;}
.x3c{left:475.727733pt;}
.x1e{left:491.046667pt;}
.x52{left:500.255333pt;}
.x27{left:504.056569pt;}
.x28{left:516.152540pt;}
.x34{left:518.468789pt;}
.x36{left:520.519635pt;}
.x29{left:523.825116pt;}
.x15{left:526.176133pt;}
.x2a{left:529.663996pt;}
.x2b{left:533.572667pt;}
.x4e{left:535.005733pt;}
.x50{left:536.831067pt;}
.x2c{left:540.304267pt;}
.x2d{left:547.574717pt;}
.x4f{left:550.125867pt;}
.x2e{left:555.319677pt;}
.x2f{left:561.793916pt;}
.x30{left:567.254796pt;}
.x35{left:575.192777pt;}
.x32{left:576.358944pt;}
.x38{left:583.431635pt;}
.x33{left:589.339593pt;}
.x31{left:591.503034pt;}
.x44{left:595.574000pt;}
.x18{left:598.913470pt;}
.x17{left:602.537867pt;}
.x19{left:609.572198pt;}
.x1a{left:616.971114pt;}
.x43{left:645.434533pt;}
.x14{left:646.527993pt;}
.x16{left:654.261867pt;}
.x42{left:688.079600pt;}
.x12{left:692.007262pt;}
.x13{left:695.553922pt;}
.x3d{left:699.849067pt;}
.x55{left:713.325467pt;}
}




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