
    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_c679cebf65b08e2b45074adb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5525bf38f11298044988764c.woff2')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_b1c1b96f4479a8b493e8bf24.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.896973;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_4806d2c686ab0d60f7199f1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938497;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_8670c360ee92e0ad89e9ca4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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_3db82588bb3e2d673bda98a2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c170ca5a607cd1a5785790d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_bbf67aeea5b8fa7fa00f7ab3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.886719;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_03bc9a9c6bc9274abf4876f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_7f72e511bfdd251303fcd80f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675293;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_ba1fab372750e61e8a057e1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_18bc82339081908d046111bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5ddd58524ed078d38fe7ae30.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958008;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_8f5a62a5f3427e39c6535f18.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717285;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_d1f7fb3a538470cbb2764ad3.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e41e91b6ff3434f81b5abf07.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_00e66904b348a8232d411c97.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914551;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_4b236e388719e50ddb967013.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.715820;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_ea13db1bf84cd246689e1067.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.943359;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_2bc159194123c7457d4c37ac.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0602bda06cb2b1c50fa6c40e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f1e8871ff9f7a8e73b2c35b1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_71d8ed132e5c2cfedca4fe0e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_dc52a6d9496b0c91b3136a64.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.730957;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:ff19;src:url('chunks/assets/font_78cddf43ecc09bf1b089f528.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_d6c42450483f3e7d0c013267.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.730957;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:ff1b;src:url('chunks/assets/font_8024d75698708ed6c7aeaf9e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.715820;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:ff1c;src:url('chunks/assets/font_25cdee049e16d3eee66ca201.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.710449;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-15.840000px;}
.v3{vertical-align:-14.400000px;}
.v5{vertical-align:-12.960000px;}
.v2{vertical-align:-5.760000px;}
.ve{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.988000px;}
.vd{vertical-align:5.760000px;}
.v6{vertical-align:12.960000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.v9{vertical-align:33.120000px;}
.v8{vertical-align:47.520000px;}
.v7{vertical-align:54.720000px;}
.vb{vertical-align:63.360000px;}
.vc{vertical-align:102.240000px;}
.ls5c{letter-spacing:-0.508896px;}
.ls5b{letter-spacing:-0.448704px;}
.ls6d{letter-spacing:-0.399168px;}
.ls5d{letter-spacing:-0.393984px;}
.ls38{letter-spacing:-0.381024px;}
.ls3b{letter-spacing:-0.338688px;}
.ls42{letter-spacing:-0.320544px;}
.ls37{letter-spacing:-0.302400px;}
.ls3a{letter-spacing:-0.260064px;}
.ls3c{letter-spacing:-0.241920px;}
.ls5e{letter-spacing:-0.240768px;}
.lsb{letter-spacing:-0.238464px;}
.lsc{letter-spacing:-0.198720px;}
.lsd{letter-spacing:-0.158976px;}
.ls54{letter-spacing:-0.157248px;}
.ls35{letter-spacing:-0.152352px;}
.ls39{letter-spacing:-0.145152px;}
.ls69{letter-spacing:-0.139104px;}
.lse{letter-spacing:-0.125856px;}
.ls7{letter-spacing:-0.119232px;}
.ls49{letter-spacing:-0.096768px;}
.ls9{letter-spacing:-0.079488px;}
.ls10{letter-spacing:-0.039744px;}
.ls34{letter-spacing:-0.028800px;}
.ls1f{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.025920px;}
.ls6f{letter-spacing:0.040320px;}
.ls25{letter-spacing:0.058464px;}
.ls4a{letter-spacing:0.059616px;}
.ls26{letter-spacing:0.060336px;}
.ls12{letter-spacing:0.060480px;}
.ls32{letter-spacing:0.080208px;}
.ls8{letter-spacing:0.100224px;}
.ls56{letter-spacing:0.114048px;}
.ls14{letter-spacing:0.116928px;}
.ls44{letter-spacing:0.123552px;}
.ls5a{letter-spacing:0.125280px;}
.ls57{letter-spacing:0.128304px;}
.lsa{letter-spacing:0.137808px;}
.ls2{letter-spacing:0.138240px;}
.ls4{letter-spacing:0.139680px;}
.ls3{letter-spacing:0.139824px;}
.ls6b{letter-spacing:0.139968px;}
.ls40{letter-spacing:0.159840px;}
.ls58{letter-spacing:0.160128px;}
.ls59{letter-spacing:0.160272px;}
.ls1{letter-spacing:0.160560px;}
.ls41{letter-spacing:0.161280px;}
.ls46{letter-spacing:0.161568px;}
.ls5f{letter-spacing:0.194832px;}
.ls60{letter-spacing:0.242352px;}
.ls55{letter-spacing:0.256608px;}
.ls3e{letter-spacing:0.261360px;}
.ls3f{letter-spacing:0.266112px;}
.ls3d{letter-spacing:0.270864px;}
.ls0{letter-spacing:0.275616px;}
.ls43{letter-spacing:0.285120px;}
.ls21{letter-spacing:0.289872px;}
.ls53{letter-spacing:0.303264px;}
.ls6{letter-spacing:0.317376px;}
.ls45{letter-spacing:0.318384px;}
.ls19{letter-spacing:0.327312px;}
.ls47{letter-spacing:0.356400px;}
.ls11{letter-spacing:0.359136px;}
.ls20{letter-spacing:0.362880px;}
.ls61{letter-spacing:0.365904px;}
.ls65{letter-spacing:0.374688px;}
.ls48{letter-spacing:0.399168px;}
.ls1e{letter-spacing:0.400896px;}
.ls18{letter-spacing:0.413280px;}
.lsf{letter-spacing:0.609408px;}
.ls1a{letter-spacing:0.776304px;}
.ls2f{letter-spacing:0.848160px;}
.ls2c{letter-spacing:1.009440px;}
.ls2b{letter-spacing:1.010592px;}
.ls2d{letter-spacing:1.010880px;}
.ls6a{letter-spacing:1.209888px;}
.ls31{letter-spacing:1.521792px;}
.ls1b{letter-spacing:1.788192px;}
.ls4d{letter-spacing:1.816560px;}
.ls4f{letter-spacing:1.818720px;}
.ls33{letter-spacing:2.188800px;}
.ls51{letter-spacing:2.859840px;}
.ls50{letter-spacing:3.398400px;}
.ls67{letter-spacing:3.499344px;}
.ls2a{letter-spacing:4.434912px;}
.ls2e{letter-spacing:4.435056px;}
.ls27{letter-spacing:4.844160px;}
.ls23{letter-spacing:4.921056px;}
.ls24{letter-spacing:5.024160px;}
.ls4b{letter-spacing:5.123952px;}
.ls4c{letter-spacing:5.124960px;}
.ls36{letter-spacing:5.772960px;}
.ls62{letter-spacing:5.827680px;}
.ls1c{letter-spacing:7.874928px;}
.ls30{letter-spacing:8.003520px;}
.ls64{letter-spacing:9.843840px;}
.ls22{letter-spacing:10.788480px;}
.ls68{letter-spacing:13.642560px;}
.ls17{letter-spacing:20.004480px;}
.ls29{letter-spacing:20.005920px;}
.ls16{letter-spacing:23.401440px;}
.ls63{letter-spacing:25.156800px;}
.ls13{letter-spacing:34.542432px;}
.ls66{letter-spacing:40.205376px;}
.ls1d{letter-spacing:62.831520px;}
.ls28{letter-spacing:66.431520px;}
.ls15{letter-spacing:845.585280px;}
.ls6c{letter-spacing:845.585424px;}
.ls52{letter-spacing:845.585568px;}
.ls6e{letter-spacing:845.586000px;}
.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;}
}
.wsf{word-spacing:-23.619456px;}
.ws9{word-spacing:-23.577696px;}
.ws0{word-spacing:-23.494176px;}
.wsc{word-spacing:-23.335488px;}
.ws7{word-spacing:-19.024128px;}
.ws3{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.374976px;}
.wsd{word-spacing:-18.335232px;}
.wse{word-spacing:-18.295488px;}
.wsa{word-spacing:-18.288864px;}
.ws37{word-spacing:-18.262368px;}
.ws6{word-spacing:-18.255744px;}
.ws5{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.176256px;}
.ws1a{word-spacing:-16.813440px;}
.ws29{word-spacing:-16.716672px;}
.ws1c{word-spacing:-16.553376px;}
.ws1b{word-spacing:-16.474752px;}
.ws38{word-spacing:-16.414272px;}
.ws2b{word-spacing:-15.637732px;}
.ws35{word-spacing:-13.609728px;}
.ws23{word-spacing:-13.528944px;}
.ws32{word-spacing:-13.500432px;}
.ws30{word-spacing:-13.495680px;}
.ws22{word-spacing:-13.486176px;}
.ws1f{word-spacing:-13.481424px;}
.ws2f{word-spacing:-13.476672px;}
.ws36{word-spacing:-13.471920px;}
.ws33{word-spacing:-13.452912px;}
.ws31{word-spacing:-13.405392px;}
.ws21{word-spacing:-13.372128px;}
.ws20{word-spacing:-13.334112px;}
.ws2{word-spacing:-11.747088px;}
.ws1{word-spacing:-11.709504px;}
.ws34{word-spacing:-0.403920px;}
.ws14{word-spacing:-0.337392px;}
.ws11{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.066240px;}
.ws10{word-spacing:-0.064800px;}
.ws25{word-spacing:-0.060480px;}
.ws16{word-spacing:-0.050400px;}
.wsb{word-spacing:0.000000px;}
.ws24{word-spacing:0.260064px;}
.ws12{word-spacing:20.103840px;}
.ws2c{word-spacing:20.459232px;}
.ws15{word-spacing:21.126240px;}
.ws2d{word-spacing:21.222637px;}
.ws2a{word-spacing:51.324869px;}
.ws18{word-spacing:58.745376px;}
.ws17{word-spacing:64.687680px;}
.ws19{word-spacing:69.537600px;}
.ws2e{word-spacing:79.522609px;}
.ws1e{word-spacing:100.065652px;}
.ws27{word-spacing:106.804390px;}
.ws28{word-spacing:195.304204px;}
.ws1d{word-spacing:238.664455px;}
.ws26{word-spacing:279.942373px;}
._9b{margin-left:-4605.765840px;}
._89{margin-left:-3994.122816px;}
._a4{margin-left:-3945.414528px;}
._9c{margin-left:-3869.788032px;}
._80{margin-left:-3827.970432px;}
._10b{margin-left:-3598.278624px;}
._10c{margin-left:-3596.677344px;}
._f1{margin-left:-3593.355408px;}
._112{margin-left:-3558.952800px;}
._76{margin-left:-3298.726080px;}
._a2{margin-left:-3142.767744px;}
._88{margin-left:-3134.101104px;}
._47{margin-left:-3132.490320px;}
._42{margin-left:-3131.481312px;}
._44{margin-left:-3130.454592px;}
._77{margin-left:-3128.652000px;}
._10a{margin-left:-3125.613888px;}
._a8{margin-left:-3123.331488px;}
._4d{margin-left:-3121.730784px;}
._50{margin-left:-3114.828576px;}
._72{margin-left:-3113.279712px;}
._d7{margin-left:-3111.326352px;}
._118{margin-left:-3109.964544px;}
._d4{margin-left:-3108.358800px;}
._eb{margin-left:-3104.489664px;}
._f4{margin-left:-3099.798720px;}
._b9{margin-left:-3096.602784px;}
._10{margin-left:-3094.736832px;}
._14{margin-left:-3093.187968px;}
._25{margin-left:-3090.523968px;}
._5d{margin-left:-3088.868544px;}
._26{margin-left:-3087.496800px;}
._ca{margin-left:-3084.976080px;}
._4a{margin-left:-3081.529728px;}
._bd{margin-left:-3078.638496px;}
._d2{margin-left:-3077.260704px;}
._4f{margin-left:-3073.662144px;}
._fc{margin-left:-3069.992448px;}
._f3{margin-left:-3067.506720px;}
._ef{margin-left:-3065.206176px;}
._be{margin-left:-3063.527568px;}
._114{margin-left:-3061.871712px;}
._4c{margin-left:-3059.158896px;}
._e8{margin-left:-3057.790464px;}
._4{margin-left:-3056.585472px;}
._113{margin-left:-3054.975552px;}
._c8{margin-left:-3051.988560px;}
._22{margin-left:-3048.315840px;}
._cb{margin-left:-3045.854736px;}
._4e{margin-left:-3041.256384px;}
._7f{margin-left:-3033.691200px;}
._aa{margin-left:-3026.952288px;}
._8{margin-left:-3024.474912px;}
._cf{margin-left:-3022.154064px;}
._110{margin-left:-3020.755392px;}
._2d{margin-left:-3019.607424px;}
._f6{margin-left:-3008.678976px;}
._e7{margin-left:-3007.367424px;}
._b8{margin-left:-3005.159328px;}
._fb{margin-left:-3002.084352px;}
._fd{margin-left:-3000.955392px;}
._c6{margin-left:-2999.846016px;}
._67{margin-left:-2996.421552px;}
._c7{margin-left:-2993.228640px;}
._7d{margin-left:-2991.575808px;}
._1d{margin-left:-2988.766080px;}
._cd{margin-left:-2986.384464px;}
._e6{margin-left:-2985.143904px;}
._5f{margin-left:-2982.951360px;}
._c5{margin-left:-2971.268496px;}
._af{margin-left:-2968.237152px;}
._100{margin-left:-2964.458304px;}
._2e{margin-left:-2959.607232px;}
._102{margin-left:-2952.975168px;}
._24{margin-left:-2949.247296px;}
._dc{margin-left:-2946.280608px;}
._f9{margin-left:-2943.379584px;}
._2c{margin-left:-2940.384384px;}
._9e{margin-left:-2938.796928px;}
._b5{margin-left:-2934.362016px;}
._115{margin-left:-2927.628864px;}
._23{margin-left:-2923.400448px;}
._21{margin-left:-2920.022208px;}
._20{margin-left:-2915.478144px;}
._bb{margin-left:-2913.156144px;}
._111{margin-left:-2911.099104px;}
._d5{margin-left:-2909.752992px;}
._e9{margin-left:-2908.292256px;}
._ac{margin-left:-2905.248672px;}
._2a{margin-left:-2893.711680px;}
._df{margin-left:-2891.754000px;}
._fa{margin-left:-2883.273408px;}
._56{margin-left:-2878.664832px;}
._78{margin-left:-2872.731744px;}
._e4{margin-left:-2861.361360px;}
._1{margin-left:-2858.402880px;}
._b0{margin-left:-2850.630048px;}
._ab{margin-left:-2847.116448px;}
._28{margin-left:-2842.720128px;}
._10f{margin-left:-2831.151744px;}
._a6{margin-left:-2822.389920px;}
._ec{margin-left:-2809.840320px;}
._a0{margin-left:-2806.468128px;}
._7e{margin-left:-2778.150816px;}
._1b{margin-left:-2755.005120px;}
._c3{margin-left:-2751.386400px;}
._e1{margin-left:-2733.708096px;}
._ce{margin-left:-2729.725920px;}
._104{margin-left:-2725.301088px;}
._74{margin-left:-2714.468544px;}
._1f{margin-left:-2692.156608px;}
._dd{margin-left:-2674.627488px;}
._58{margin-left:-2668.046400px;}
._da{margin-left:-2649.032352px;}
._b3{margin-left:-2615.726880px;}
._ad{margin-left:-2601.644256px;}
._35{margin-left:-2556.397728px;}
._6f{margin-left:-2524.021344px;}
._103{margin-left:-2479.876128px;}
._5e{margin-left:-2466.734400px;}
._ed{margin-left:-2400.463296px;}
._86{margin-left:-2392.435008px;}
._9f{margin-left:-2362.666752px;}
._a3{margin-left:-2334.090816px;}
._e0{margin-left:-2315.831904px;}
._b1{margin-left:-2289.812832px;}
._cc{margin-left:-2262.879648px;}
._84{margin-left:-2241.434304px;}
._a7{margin-left:-2212.875072px;}
._116{margin-left:-2191.279824px;}
._63{margin-left:-2182.796640px;}
._81{margin-left:-2179.338912px;}
._b4{margin-left:-2146.072032px;}
._d8{margin-left:-2143.289952px;}
._f2{margin-left:-2141.484768px;}
._107{margin-left:-2139.262560px;}
._27{margin-left:-2108.515968px;}
._3a{margin-left:-2105.800128px;}
._ae{margin-left:-2101.863456px;}
._117{margin-left:-2099.774592px;}
._b6{margin-left:-2087.966880px;}
._5c{margin-left:-2085.582240px;}
._61{margin-left:-2075.889744px;}
._d6{margin-left:-2069.525088px;}
._54{margin-left:-2050.017120px;}
._106{margin-left:-2036.267424px;}
._ff{margin-left:-2012.932800px;}
._c4{margin-left:-2005.828704px;}
._29{margin-left:-2002.929984px;}
._c0{margin-left:-1999.515024px;}
._46{margin-left:-1969.042752px;}
._d0{margin-left:-1959.129504px;}
._4b{margin-left:-1953.845856px;}
._30{margin-left:-1939.505760px;}
._6d{margin-left:-1929.900960px;}
._b7{margin-left:-1918.537632px;}
._64{margin-left:-1909.222560px;}
._ba{margin-left:-1900.401120px;}
._9{margin-left:-1869.719616px;}
._a{margin-left:-1834.797888px;}
._e5{margin-left:-1826.897760px;}
._c9{margin-left:-1787.781024px;}
._7c{margin-left:-1764.537696px;}
._1c{margin-left:-1746.263232px;}
._c1{margin-left:-1731.952800px;}
._33{margin-left:-1693.641600px;}
._53{margin-left:-1691.986752px;}
._51{margin-left:-1683.508032px;}
._d9{margin-left:-1668.991680px;}
._bc{margin-left:-1658.042208px;}
._d1{margin-left:-1632.215232px;}
._a9{margin-left:-1626.187392px;}
._59{margin-left:-1621.971072px;}
._d{margin-left:-1604.073024px;}
._f8{margin-left:-1591.626528px;}
._87{margin-left:-1588.632480px;}
._d3{margin-left:-1522.104480px;}
._f5{margin-left:-1519.259328px;}
._b{margin-left:-1455.416064px;}
._f7{margin-left:-1449.813312px;}
._10e{margin-left:-1434.111696px;}
._39{margin-left:-1423.075968px;}
._3d{margin-left:-1407.211200px;}
._bf{margin-left:-1375.806816px;}
._1a{margin-left:-1362.391200px;}
._a5{margin-left:-1341.163872px;}
._c2{margin-left:-1324.258848px;}
._70{margin-left:-1265.719104px;}
._2b{margin-left:-1242.971136px;}
._40{margin-left:-1229.234688px;}
._e3{margin-left:-1215.159552px;}
._66{margin-left:-1188.364032px;}
._45{margin-left:-1181.064384px;}
._b2{margin-left:-1119.895200px;}
._109{margin-left:-1107.537984px;}
._e2{margin-left:-1102.817664px;}
._6b{margin-left:-1100.516544px;}
._105{margin-left:-1096.896672px;}
._101{margin-left:-1088.951040px;}
._68{margin-left:-1086.248448px;}
._ea{margin-left:-1081.836864px;}
._65{margin-left:-1075.252608px;}
._3e{margin-left:-1070.097984px;}
._73{margin-left:-1045.259136px;}
._fe{margin-left:-1028.155968px;}
._108{margin-left:-1002.336192px;}
._db{margin-left:-983.440800px;}
._85{margin-left:-899.279424px;}
._48{margin-left:-877.261824px;}
._60{margin-left:-865.450656px;}
._e{margin-left:-824.552928px;}
._6c{margin-left:-814.108032px;}
._2{margin-left:-789.864912px;}
._f0{margin-left:-759.897216px;}
._57{margin-left:-733.944384px;}
._55{margin-left:-730.566144px;}
._6e{margin-left:-727.134912px;}
._9d{margin-left:-705.484224px;}
._3c{margin-left:-699.847488px;}
._31{margin-left:-695.998080px;}
._41{margin-left:-655.846272px;}
._71{margin-left:-601.914816px;}
._3f{margin-left:-565.865856px;}
._f{margin-left:-547.728192px;}
._a1{margin-left:-540.218880px;}
._90{margin-left:-489.517200px;}
._1e{margin-left:-469.632384px;}
._de{margin-left:-462.430080px;}
._10d{margin-left:-357.132816px;}
._49{margin-left:-238.734144px;}
._c{margin-left:-201.294144px;}
._7{margin-left:-163.854144px;}
._62{margin-left:-12.817440px;}
._5b{margin-left:-10.316160px;}
._8b{margin-left:-7.031353px;}
._8a{margin-left:-5.625083px;}
._15{margin-left:-4.438080px;}
._5{margin-left:-3.266496px;}
._6{margin-left:-2.115504px;}
._0{margin-left:-1.085760px;}
._3{width:1.324800px;}
._16{width:2.573424px;}
._12{width:3.576960px;}
._11{width:4.835520px;}
._17{width:6.226560px;}
._37{width:7.418880px;}
._13{width:8.544960px;}
._32{width:9.936000px;}
._52{width:11.128320px;}
._3b{width:12.768480px;}
._34{width:13.844160px;}
._38{width:15.235200px;}
._43{width:16.560000px;}
._18{width:19.600416px;}
._5a{width:20.656224px;}
._36{width:22.587840px;}
._6a{width:25.522128px;}
._69{width:26.694720px;}
._ee{width:34.592832px;}
._95{width:66.367950px;}
._99{width:68.999702px;}
._91{width:79.996723px;}
._98{width:86.995935px;}
._97{width:88.548930px;}
._93{width:92.886201px;}
._8f{width:94.561655px;}
._96{width:106.627476px;}
._9a{width:108.861438px;}
._7b{width:114.160990px;}
._83{width:117.220889px;}
._92{width:120.216071px;}
._94{width:133.450768px;}
._8d{width:215.762093px;}
._8c{width:217.134881px;}
._8e{width:264.225781px;}
._79{width:265.488992px;}
._7a{width:278.877153px;}
._82{width:352.990666px;}
._2f{width:841.199904px;}
._19{width:845.668800px;}
._75{width:847.930176px;}
.fc9{color:rgb(11,12,12);}
.fc7{color:rgb(204,121,167);}
.fc6{color:rgb(0,114,178);}
.fc5{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(17,85,204);}
.fc8{color:rgb(26,26,26);}
.fc4{color:rgb(77,77,77);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:33.482634px;}
.fsc{font-size:37.349996px;}
.fsb{font-size:38.880000px;}
.fs11{font-size:40.179161px;}
.fs2{font-size:41.760000px;}
.fs7{font-size:44.198609px;}
.fse{font-size:45.648418px;}
.fsd{font-size:45.649996px;}
.fsf{font-size:46.875688px;}
.fs5{font-size:47.520000px;}
.fs12{font-size:48.215002px;}
.fs8{font-size:48.216665px;}
.fs4{font-size:50.400000px;}
.fs14{font-size:54.720000px;}
.fs13{font-size:56.250835px;}
.fs6{font-size:60.480000px;}
.fsa{font-size:64.286669px;}
.fs9{font-size:64.288886px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y207{bottom:2.820000px;}
.y20d{bottom:3.000000px;}
.y237{bottom:3.120000px;}
.y22b{bottom:3.360000px;}
.y219{bottom:3.480000px;}
.y221{bottom:3.600000px;}
.y213{bottom:3.660000px;}
.y23d{bottom:3.780000px;}
.y241{bottom:4.080000px;}
.y2ee{bottom:4.320000px;}
.y2f7{bottom:4.380000px;}
.y305{bottom:4.440000px;}
.y22f{bottom:4.620000px;}
.y2ed{bottom:4.680000px;}
.y2f3{bottom:4.740000px;}
.y303{bottom:4.800000px;}
.y18f{bottom:4.955349px;}
.y2e9{bottom:5.040000px;}
.y300{bottom:5.160000px;}
.y2f0{bottom:5.460000px;}
.y2fc{bottom:5.520000px;}
.y152{bottom:5.571265px;}
.y14a{bottom:5.571343px;}
.y14c{bottom:5.571405px;}
.y148{bottom:5.571431px;}
.y14e{bottom:5.581667px;}
.y150{bottom:5.581729px;}
.y1d9{bottom:5.725519px;}
.y1fc{bottom:5.725578px;}
.y1ed{bottom:5.725623px;}
.y1ca{bottom:5.725639px;}
.y205{bottom:9.660000px;}
.y109{bottom:10.020000px;}
.y217{bottom:10.320000px;}
.y211{bottom:10.500000px;}
.y23b{bottom:10.620000px;}
.y21d{bottom:10.800000px;}
.y103{bottom:11.160000px;}
.yfd{bottom:11.280000px;}
.y193{bottom:11.283513px;}
.y191{bottom:11.283554px;}
.y18d{bottom:11.283566px;}
.y18b{bottom:11.283608px;}
.y189{bottom:11.283620px;}
.y111{bottom:11.340000px;}
.y10d{bottom:11.400000px;}
.y22d{bottom:11.460000px;}
.y118{bottom:11.580000px;}
.y105{bottom:12.060000px;}
.y101{bottom:12.120000px;}
.y116{bottom:12.180000px;}
.y1d7{bottom:12.234544px;}
.y1fa{bottom:12.234603px;}
.y1eb{bottom:12.234649px;}
.y1c8{bottom:12.234665px;}
.y113{bottom:12.240000px;}
.y10f{bottom:12.300000px;}
.y10b{bottom:12.360000px;}
.y11f{bottom:13.200000px;}
.y2f8{bottom:13.740000px;}
.y2f4{bottom:14.100000px;}
.y1fe{bottom:14.102888px;}
.y121{bottom:14.460000px;}
.y11d{bottom:14.580000px;}
.yf5{bottom:15.359017px;}
.y175{bottom:16.236873px;}
.y206{bottom:16.500000px;}
.y236{bottom:16.800000px;}
.y20c{bottom:17.040000px;}
.y215{bottom:17.160000px;}
.y22a{bottom:17.400000px;}
.y239{bottom:17.460000px;}
.y18e{bottom:17.611784px;}
.y220{bottom:17.640000px;}
.y20f{bottom:17.700000px;}
.y23f{bottom:18.120000px;}
.y22e{bottom:18.300000px;}
.y1d8{bottom:18.743570px;}
.y1fb{bottom:18.743628px;}
.y1ec{bottom:18.743674px;}
.y1c9{bottom:18.743690px;}
.y107{bottom:20.460000px;}
.yff{bottom:21.720000px;}
.y2f6{bottom:23.100000px;}
.y233{bottom:23.640000px;}
.y204{bottom:23.700000px;}
.y2f2{bottom:23.820000px;}
.y209{bottom:23.880000px;}
.y216{bottom:24.000000px;}
.y225{bottom:24.240000px;}
.y23a{bottom:24.300000px;}
.y21b{bottom:24.480000px;}
.y210{bottom:24.540000px;}
.y1ba{bottom:24.894338px;}
.y240{bottom:24.960000px;}
.y1fd{bottom:29.602002px;}
.y231{bottom:30.480000px;}
.y108{bottom:30.540000px;}
.y20b{bottom:30.720000px;}
.y229{bottom:31.080000px;}
.y23c{bottom:31.140000px;}
.y218{bottom:31.200000px;}
.y21f{bottom:31.320000px;}
.y212{bottom:31.380000px;}
.yfb{bottom:31.800000px;}
.y232{bottom:37.680000px;}
.y223{bottom:37.920000px;}
.y21c{bottom:38.160000px;}
.y1f2{bottom:38.883390px;}
.yfe{bottom:42.240000px;}
.y20a{bottom:44.400000px;}
.y235{bottom:44.520000px;}
.y228{bottom:44.760000px;}
.y21e{bottom:45.000000px;}
.yf3{bottom:48.417568px;}
.y173{bottom:48.866245px;}
.y224{bottom:51.600000px;}
.y1b9{bottom:51.864600px;}
.yfc{bottom:52.680000px;}
.y234{bottom:58.200000px;}
.y227{bottom:58.800000px;}
.y2{bottom:60.480000px;}
.y154{bottom:61.949119px;}
.y1f3{bottom:62.408293px;}
.yf2{bottom:65.353671px;}
.y1f7{bottom:70.253275px;}
.y143{bottom:72.261798px;}
.y140{bottom:72.261859px;}
.y146{bottom:72.261886px;}
.y13a{bottom:72.272183px;}
.y137{bottom:72.272245px;}
.y13d{bottom:72.272271px;}
.y226{bottom:72.480000px;}
.y1ff{bottom:72.784563px;}
.y16e{bottom:75.581868px;}
.y1b7{bottom:79.044128px;}
.y1{bottom:79.560000px;}
.y242{bottom:81.000000px;}
.y13f{bottom:85.012733px;}
.y142{bottom:85.023046px;}
.y139{bottom:85.023057px;}
.y136{bottom:85.023119px;}
.y145{bottom:85.023135px;}
.y13c{bottom:85.023145px;}
.y1f4{bottom:85.943240px;}
.ye7{bottom:89.030063px;}
.y195{bottom:91.591745px;}
.yb9{bottom:100.800000px;}
.y16f{bottom:101.394865px;}
.y1f8{bottom:101.633205px;}
.y1ad{bottom:102.046698px;}
.y134{bottom:102.600000px;}
.y23e{bottom:105.000000px;}
.y1f5{bottom:109.468143px;}
.y5a{bottom:111.600000px;}
.y28e{bottom:114.480000px;}
.y7b{bottom:117.000000px;}
.ye8{bottom:117.819429px;}
.y1ae{bottom:121.659151px;}
.y170{bottom:127.207863px;}
.y133{bottom:128.520000px;}
.yb8{bottom:129.240000px;}
.y1f6{bottom:133.003091px;}
.y28d{bottom:133.560000px;}
.y59{bottom:140.040000px;}
.y1af{bottom:141.271604px;}
.y259{bottom:141.840000px;}
.y7a{bottom:145.440000px;}
.ye9{bottom:146.608796px;}
.y28c{bottom:152.640000px;}
.y2b1{bottom:153.000000px;}
.y171{bottom:153.010485px;}
.y132{bottom:154.440000px;}
.yf4{bottom:155.408338px;}
.y238{bottom:157.500000px;}
.yb7{bottom:157.680000px;}
.y1b0{bottom:160.892427px;}
.y258{bottom:170.280000px;}
.y79{bottom:173.880000px;}
.yea{bottom:175.388118px;}
.y172{bottom:178.823483px;}
.y320{bottom:180.000000px;}
.y131{bottom:180.360000px;}
.y1b1{bottom:180.504880px;}
.y58{bottom:183.600000px;}
.y1f0{bottom:184.563008px;}
.yb6{bottom:186.120000px;}
.y28b{bottom:187.920000px;}
.y2b0{bottom:188.640000px;}
.y257{bottom:198.720000px;}
.y1ef{bottom:199.750734px;}
.y78{bottom:202.320000px;}
.yeb{bottom:204.177485px;}
.y130{bottom:206.280000px;}
.y28a{bottom:207.000000px;}
.y2af{bottom:207.720000px;}
.y230{bottom:210.000000px;}
.y31f{bottom:211.680000px;}
.y57{bottom:212.040000px;}
.y169{bottom:212.687480px;}
.yb5{bottom:214.560000px;}
.y1ee{bottom:215.249848px;}
.y2cb{bottom:218.520000px;}
.y97{bottom:221.040000px;}
.y1a8{bottom:223.923486px;}
.y1de{bottom:224.531236px;}
.y289{bottom:226.080000px;}
.y256{bottom:227.160000px;}
.y77{bottom:230.760000px;}
.y12f{bottom:231.840000px;}
.ye3{bottom:232.846344px;}
.yec{bottom:232.966852px;}
.y16a{bottom:238.500477px;}
.yb4{bottom:243.000000px;}
.y1df{bottom:243.355176px;}
.y1a9{bottom:243.544309px;}
.y2ca{bottom:246.960000px;}
.y1e4{bottom:248.307258px;}
.y96{bottom:249.480000px;}
.y1e7{bottom:251.421144px;}
.y56{bottom:255.600000px;}
.y12e{bottom:257.760000px;}
.y1f1{bottom:258.432409px;}
.y76{bottom:259.200000px;}
.y288{bottom:261.360000px;}
.yed{bottom:261.746174px;}
.y2ae{bottom:262.080000px;}
.y1e0{bottom:262.179116px;}
.y1aa{bottom:263.156762px;}
.y16b{bottom:264.313475px;}
.ye2{bottom:265.161555px;}
.ye5{bottom:265.282096px;}
.ye4{bottom:266.246430px;}
.yb3{bottom:271.440000px;}
.y1e5{bottom:272.083281px;}
.y95{bottom:277.920000px;}
.y1e8{bottom:278.311052px;}
.y12d{bottom:280.440000px;}
.y1e1{bottom:281.003056px;}
.y153{bottom:281.145150px;}
.y1b8{bottom:281.337832px;}
.y1ab{bottom:282.769215px;}
.y55{bottom:284.040000px;}
.y75{bottom:288.000000px;}
.ye1{bottom:289.109165px;}
.y22c{bottom:289.500000px;}
.y16c{bottom:290.116097px;}
.y2c9{bottom:290.520000px;}
.yee{bottom:290.535541px;}
.y1e6{bottom:295.869348px;}
.y2ad{bottom:297.360000px;}
.y1e2{bottom:299.826996px;}
.yb2{bottom:299.880000px;}
.y306{bottom:301.680000px;}
.y1ac{bottom:302.390038px;}
.y1bb{bottom:302.400000px;}
.y1e9{bottom:305.200960px;}
.y94{bottom:306.360000px;}
.y74{bottom:310.680000px;}
.y54{bottom:312.480000px;}
.y287{bottom:315.720000px;}
.y16d{bottom:315.929095px;}
.y2ac{bottom:316.440000px;}
.y325{bottom:317.520000px;}
.y21{bottom:318.600000px;}
.y1e3{bottom:318.650937px;}
.y2c8{bottom:318.960000px;}
.yef{bottom:319.324908px;}
.y73{bottom:322.560000px;}
.y255{bottom:327.600000px;}
.y187{bottom:328.320000px;}
.y222{bottom:330.000000px;}
.y31a{bottom:330.480000px;}
.y286{bottom:334.800000px;}
.y2ab{bottom:335.520000px;}
.y53{bottom:340.920000px;}
.y93{bottom:342.000000px;}
.yb1{bottom:343.440000px;}
.y2de{bottom:345.600000px;}
.y1a3{bottom:345.808644px;}
.y20{bottom:347.400000px;}
.yf0{bottom:348.114275px;}
.y268{bottom:348.480000px;}
.y124{bottom:349.200000px;}
.y324{bottom:349.560000px;}
.y164{bottom:349.793091px;}
.y319{bottom:350.280000px;}
.y186{bottom:353.880000px;}
.y144{bottom:354.921750px;}
.y254{bottom:356.040000px;}
.y72{bottom:365.040000px;}
.y1a4{bottom:365.421097px;}
.y304{bottom:366.000000px;}
.yda{bottom:367.920000px;}
.y52{bottom:369.360000px;}
.y318{bottom:370.080000px;}
.y1dc{bottom:370.210854px;}
.y2aa{bottom:370.800000px;}
.y123{bottom:372.000000px;}
.y2dd{bottom:374.040000px;}
.y165{bottom:375.606089px;}
.y1f{bottom:375.840000px;}
.yf1{bottom:376.893597px;}
.y267{bottom:377.280000px;}
.y185{bottom:379.800000px;}
.y174{bottom:383.096838px;}
.y253{bottom:384.480000px;}
.y1a5{bottom:385.033550px;}
.y1db{bottom:385.398579px;}
.yb0{bottom:387.000000px;}
.y285{bottom:389.160000px;}
.y2a9{bottom:389.880000px;}
.y317{bottom:390.240000px;}
.y2c7{bottom:390.960000px;}
.y92{bottom:392.040000px;}
.y311{bottom:394.920000px;}
.yd9{bottom:396.360000px;}
.y51{bottom:397.800000px;}
.y1da{bottom:400.897694px;}
.y166{bottom:401.408711px;}
.y302{bottom:402.000000px;}
.y2dc{bottom:402.480000px;}
.y1e{bottom:404.280000px;}
.y1a6{bottom:404.654373px;}
.yf6{bottom:404.658359px;}
.y184{bottom:405.720000px;}
.y284{bottom:408.240000px;}
.y2a8{bottom:408.960000px;}
.y122{bottom:409.500000px;}
.y316{bottom:410.040000px;}
.y1ce{bottom:410.179081px;}
.y71{bottom:411.480000px;}
.y252{bottom:412.920000px;}
.y91{bottom:414.000000px;}
.y310{bottom:414.720000px;}
.yaf{bottom:415.440000px;}
.y2c6{bottom:419.040000px;}
.y21a{bottom:423.000000px;}
.y1a7{bottom:424.266826px;}
.yd8{bottom:424.800000px;}
.y50{bottom:426.240000px;}
.y167{bottom:427.221709px;}
.y283{bottom:427.320000px;}
.y315{bottom:429.840000px;}
.y2db{bottom:430.920000px;}
.y183{bottom:431.640000px;}
.y1d{bottom:432.720000px;}
.y1cf{bottom:433.714029px;}
.y266{bottom:434.160000px;}
.y30f{bottom:434.520000px;}
.y1d3{bottom:437.591319px;}
.y301{bottom:438.000000px;}
.y251{bottom:441.360000px;}
.yae{bottom:443.880000px;}
.y1dd{bottom:444.080254px;}
.y2a7{bottom:444.240000px;}
.y282{bottom:446.040000px;}
.y120{bottom:448.500000px;}
.y314{bottom:449.640000px;}
.y168{bottom:453.034706px;}
.yd7{bottom:453.240000px;}
.y182{bottom:454.320000px;}
.y194{bottom:454.320150px;}
.y4f{bottom:454.680000px;}
.y1d0{bottom:457.238932px;}
.y90{bottom:457.560000px;}
.y70{bottom:457.920000px;}
.y1c{bottom:461.160000px;}
.y265{bottom:462.600000px;}
.y2c5{bottom:462.960000px;}
.y2a6{bottom:463.320000px;}
.y1d4{bottom:465.003556px;}
.y30e{bottom:466.200000px;}
.y19b{bottom:467.685432px;}
.y147{bottom:468.486450px;}
.y313{bottom:469.440000px;}
.y250{bottom:469.800000px;}
.yad{bottom:472.320000px;}
.y2ff{bottom:474.000000px;}
.y2da{bottom:474.480000px;}
.y19c{bottom:478.893743px;}
.y1d1{bottom:480.763835px;}
.y281{bottom:481.680000px;}
.y2a5{bottom:482.400000px;}
.y4e{bottom:483.120000px;}
.y8f{bottom:486.000000px;}
.y15f{bottom:486.898703px;}
.y1b3{bottom:487.038394px;}
.y11e{bottom:489.000000px;}
.y1b{bottom:489.600000px;}
.y19d{bottom:490.102055px;}
.y264{bottom:491.040000px;}
.y141{bottom:492.027450px;}
.y1d5{bottom:492.405749px;}
.yd6{bottom:496.800000px;}
.y24f{bottom:498.240000px;}
.yac{bottom:500.760000px;}
.y312{bottom:501.120000px;}
.y19e{bottom:501.310367px;}
.y1d2{bottom:504.298782px;}
.y6f{bottom:504.360000px;}
.y1b4{bottom:506.391357px;}
.y2c4{bottom:509.400000px;}
.y2fe{bottom:510.000000px;}
.y4d{bottom:511.560000px;}
.y19f{bottom:512.518679px;}
.y160{bottom:512.711701px;}
.y2a4{bottom:517.680000px;}
.y1a{bottom:518.040000px;}
.y263{bottom:519.480000px;}
.y2d9{bottom:520.920000px;}
.y1a0{bottom:523.735361px;}
.yd5{bottom:525.240000px;}
.y1b5{bottom:525.744319px;}
.y11c{bottom:526.500000px;}
.y24e{bottom:526.680000px;}
.y8e{bottom:529.560000px;}
.y181{bottom:532.800000px;}
.y6e{bottom:534.240000px;}
.y1a1{bottom:534.943673px;}
.y2a3{bottom:536.760000px;}
.y2c3{bottom:537.840000px;}
.y161{bottom:538.514323px;}
.y4c{bottom:540.000000px;}
.y214{bottom:541.500000px;}
.yab{bottom:544.320000px;}
.y31e{bottom:544.680000px;}
.y1b6{bottom:545.097282px;}
.y2fd{bottom:546.000000px;}
.y1a2{bottom:546.151984px;}
.y19{bottom:546.480000px;}
.y262{bottom:547.920000px;}
.y2d8{bottom:549.360000px;}
.yd4{bottom:553.680000px;}
.y24d{bottom:555.120000px;}
.y2a2{bottom:555.840000px;}
.y1cc{bottom:555.858700px;}
.y180{bottom:561.240000px;}
.y162{bottom:564.327321px;}
.y6d{bottom:564.480000px;}
.y11b{bottom:565.200000px;}
.y2c2{bottom:566.280000px;}
.y4b{bottom:568.440000px;}
.y1cb{bottom:571.357814px;}
.yaa{bottom:572.760000px;}
.y8d{bottom:573.120000px;}
.y280{bottom:574.200000px;}
.y18{bottom:574.920000px;}
.ydf{bottom:576.720000px;}
.y2d7{bottom:577.800000px;}
.y1bc{bottom:580.639202px;}
.yd3{bottom:581.760000px;}
.y2fb{bottom:582.000000px;}
.y24c{bottom:583.560000px;}
.y31d{bottom:584.280000px;}
.y11a{bottom:585.000000px;}
.y1b2{bottom:589.562219px;}
.y196{bottom:589.570590px;}
.y17f{bottom:589.680000px;}
.y163{bottom:590.140318px;}
.y261{bottom:591.480000px;}
.y1f9{bottom:591.652500px;}
.y20e{bottom:592.500000px;}
.y27f{bottom:592.920000px;}
.y2c1{bottom:594.720000px;}
.y4a{bottom:596.880000px;}
.y30d{bottom:599.040000px;}
.y30a{bottom:599.400000px;}
.y1bd{bottom:599.463142px;}
.ya9{bottom:601.200000px;}
.y8c{bottom:601.560000px;}
.yde{bottom:602.280000px;}
.y17{bottom:603.360000px;}
.y31c{bottom:604.080000px;}
.y6c{bottom:605.520000px;}
.y149{bottom:605.592150px;}
.y2d6{bottom:606.240000px;}
.y1c4{bottom:607.529110px;}
.y197{bottom:609.183043px;}
.y2a1{bottom:610.200000px;}
.y24b{bottom:612.000000px;}
.y1c2{bottom:612.009087px;}
.y1cd{bottom:614.540375px;}
.y17e{bottom:618.120000px;}
.y1be{bottom:618.287082px;}
.y30c{bottom:618.840000px;}
.y309{bottom:619.200000px;}
.y2fa{bottom:619.500000px;}
.y260{bottom:619.920000px;}
.y15a{bottom:624.004315px;}
.y49{bottom:625.320000px;}
.y119{bottom:627.480000px;}
.ydd{bottom:628.200000px;}
.y27e{bottom:628.560000px;}
.y198{bottom:628.795496px;}
.y13e{bottom:629.133000px;}
.y2a0{bottom:629.280000px;}
.ya8{bottom:629.640000px;}
.y8b{bottom:630.000000px;}
.y16{bottom:631.800000px;}
.y1c5{bottom:634.419018px;}
.y2d5{bottom:634.680000px;}
.y31b{bottom:635.760000px;}
.y1bf{bottom:637.111022px;}
.y30b{bottom:638.640000px;}
.y308{bottom:639.000000px;}
.y24a{bottom:640.440000px;}
.y2c0{bottom:641.160000px;}
.y188{bottom:642.358650px;}
.y1c3{bottom:643.389017px;}
.y208{bottom:645.000000px;}
.y117{bottom:646.500000px;}
.y17d{bottom:646.560000px;}
.y27d{bottom:647.640000px;}
.y25f{bottom:648.360000px;}
.y199{bottom:648.416319px;}
.y15b{bottom:649.806937px;}
.y6b{bottom:653.760000px;}
.y48{bottom:654.120000px;}
.y2f9{bottom:655.500000px;}
.y1c0{bottom:655.934962px;}
.ya7{bottom:658.080000px;}
.y8a{bottom:658.440000px;}
.y37{bottom:658.800000px;}
.y15{bottom:660.240000px;}
.y1c6{bottom:661.308926px;}
.y2d4{bottom:663.120000px;}
.y27c{bottom:666.360000px;}
.y29f{bottom:667.080000px;}
.y19a{bottom:668.028772px;}
.y249{bottom:668.880000px;}
.y2bf{bottom:669.600000px;}
.y307{bottom:670.680000px;}
.y1c1{bottom:674.758903px;}
.y15c{bottom:675.619935px;}
.y115{bottom:676.500000px;}
.y25e{bottom:676.800000px;}
.ydc{bottom:680.040000px;}
.y36{bottom:680.760000px;}
.y6a{bottom:682.200000px;}
.yd2{bottom:682.560000px;}
.y27b{bottom:685.440000px;}
.y29e{bottom:686.160000px;}
.ya6{bottom:686.520000px;}
.y89{bottom:686.880000px;}
.y14{bottom:688.680000px;}
.y17c{bottom:690.120000px;}
.y2f5{bottom:691.500000px;}
.y2d3{bottom:691.560000px;}
.y47{bottom:697.320000px;}
.y2be{bottom:698.040000px;}
.y15d{bottom:701.432932px;}
.y35{bottom:702.360000px;}
.y203{bottom:703.500000px;}
.yc5{bottom:703.800000px;}
.y25d{bottom:705.240000px;}
.ydb{bottom:705.960000px;}
.y114{bottom:708.000000px;}
.y69{bottom:710.640000px;}
.yd1{bottom:711.000000px;}
.ya5{bottom:714.960000px;}
.y88{bottom:715.320000px;}
.y13{bottom:717.120000px;}
.y17b{bottom:718.560000px;}
.y2d2{bottom:720.000000px;}
.y27a{bottom:720.720000px;}
.y29d{bottom:721.440000px;}
.y34{bottom:724.320000px;}
.y46{bottom:725.760000px;}
.y2bd{bottom:726.480000px;}
.y15e{bottom:727.245930px;}
.yc4{bottom:732.240000px;}
.y25c{bottom:733.680000px;}
.y112{bottom:738.000000px;}
.y68{bottom:739.080000px;}
.yd0{bottom:739.440000px;}
.y279{bottom:739.800000px;}
.y29c{bottom:740.520000px;}
.y14b{bottom:742.697700px;}
.ya4{bottom:743.400000px;}
.ye6{bottom:743.595150px;}
.y87{bottom:743.760000px;}
.y2f1{bottom:745.500000px;}
.y12{bottom:745.560000px;}
.y17a{bottom:747.000000px;}
.y202{bottom:749.520000px;}
.y45{bottom:754.200000px;}
.y2bc{bottom:754.920000px;}
.y33{bottom:755.280000px;}
.y278{bottom:758.880000px;}
.y29b{bottom:759.600000px;}
.yc3{bottom:760.320000px;}
.y155{bottom:761.109927px;}
.y25b{bottom:762.120000px;}
.y18a{bottom:764.235450px;}
.y201{bottom:765.000000px;}
.y13b{bottom:766.228200px;}
.y2d1{bottom:766.440000px;}
.ycf{bottom:767.880000px;}
.y110{bottom:769.500000px;}
.y11{bottom:774.000000px;}
.y179{bottom:775.440000px;}
.y32{bottom:776.880000px;}
.y1ea{bottom:777.300300px;}
.y277{bottom:777.960000px;}
.y200{bottom:780.480000px;}
.y44{bottom:782.640000px;}
.y2bb{bottom:783.360000px;}
.y67{bottom:785.520000px;}
.ya3{bottom:786.600000px;}
.y156{bottom:786.912549px;}
.y323{bottom:786.960000px;}
.y86{bottom:787.320000px;}
.y25a{bottom:790.560000px;}
.y29a{bottom:794.880000px;}
.yce{bottom:796.320000px;}
.y276{bottom:796.680000px;}
.y10e{bottom:799.500000px;}
.yc2{bottom:803.880000px;}
.y322{bottom:806.760000px;}
.y31{bottom:807.840000px;}
.y43{bottom:811.080000px;}
.y157{bottom:812.725547px;}
.y2d0{bottom:812.880000px;}
.y66{bottom:813.960000px;}
.y10{bottom:815.040000px;}
.y178{bottom:819.000000px;}
.ye0{bottom:822.559950px;}
.ycd{bottom:824.760000px;}
.y30{bottom:829.440000px;}
.y2ba{bottom:829.800000px;}
.ya2{bottom:830.160000px;}
.y10c{bottom:831.000000px;}
.y275{bottom:832.320000px;}
.y299{bottom:833.040000px;}
.y85{bottom:837.000000px;}
.y321{bottom:838.440000px;}
.y158{bottom:838.538544px;}
.y248{bottom:839.880000px;}
.y2cf{bottom:841.320000px;}
.y65{bottom:842.400000px;}
.yc1{bottom:847.440000px;}
.y274{bottom:851.400000px;}
.y298{bottom:852.120000px;}
.ycc{bottom:853.200000px;}
.y42{bottom:854.640000px;}
.ya1{bottom:858.960000px;}
.y2f{bottom:860.400000px;}
.y10a{bottom:861.000000px;}
.y159{bottom:864.341167px;}
.yf{bottom:867.240000px;}
.y247{bottom:868.320000px;}
.y2ce{bottom:869.760000px;}
.y64{bottom:870.840000px;}
.y2ef{bottom:873.000000px;}
.yc0{bottom:875.880000px;}
.y2b9{bottom:876.240000px;}
.y2e7{bottom:879.480000px;}
.y14d{bottom:879.793050px;}
.ycb{bottom:881.640000px;}
.y2e{bottom:882.360000px;}
.y41{bottom:883.080000px;}
.y18c{bottom:886.120650px;}
.y273{bottom:886.680000px;}
.ya0{bottom:887.400000px;}
.y84{bottom:887.760000px;}
.ye{bottom:888.120000px;}
.y12c{bottom:891.000000px;}
.y106{bottom:892.500000px;}
.y246{bottom:896.760000px;}
.y2cd{bottom:898.560000px;}
.y63{bottom:899.280000px;}
.y138{bottom:903.333900px;}
.y2d{bottom:903.960000px;}
.ybf{bottom:904.320000px;}
.y2b8{bottom:904.680000px;}
.y272{bottom:905.760000px;}
.y297{bottom:906.480000px;}
.yd{bottom:909.000000px;}
.yca{bottom:910.080000px;}
.y40{bottom:911.520000px;}
.y9f{bottom:915.840000px;}
.y83{bottom:916.560000px;}
.y12b{bottom:919.440000px;}
.y271{bottom:924.840000px;}
.y245{bottom:925.200000px;}
.y2c{bottom:925.920000px;}
.y2cc{bottom:927.000000px;}
.y62{bottom:927.720000px;}
.yc{bottom:929.880000px;}
.ybe{bottom:932.760000px;}
.y2b7{bottom:933.120000px;}
.y2e6{bottom:933.840000px;}
.y3f{bottom:939.960000px;}
.y104{bottom:940.500000px;}
.y296{bottom:941.760000px;}
.y270{bottom:943.560000px;}
.y9e{bottom:944.640000px;}
.y82{bottom:945.000000px;}
.y2b{bottom:947.520000px;}
.y12a{bottom:947.880000px;}
.yb{bottom:950.760000px;}
.y2e5{bottom:952.920000px;}
.yc9{bottom:953.640000px;}
.y61{bottom:956.160000px;}
.y295{bottom:960.840000px;}
.y177{bottom:961.200000px;}
.y2b6{bottom:961.560000px;}
.y1d6{bottom:962.948250px;}
.y3e{bottom:968.400000px;}
.y2a{bottom:969.480000px;}
.ya{bottom:971.640000px;}
.y102{bottom:972.000000px;}
.y81{bottom:973.440000px;}
.ybd{bottom:976.320000px;}
.y26f{bottom:978.840000px;}
.y2ec{bottom:981.000000px;}
.yc8{bottom:982.080000px;}
.y60{bottom:984.600000px;}
.y9d{bottom:985.320000px;}
.y2e4{bottom:988.200000px;}
.y176{bottom:989.640000px;}
.y2b5{bottom:990.000000px;}
.y29{bottom:991.440000px;}
.y9{bottom:992.520000px;}
.y294{bottom:996.120000px;}
.y3d{bottom:996.840000px;}
.y26e{bottom:997.920000px;}
.y80{bottom:1001.880000px;}
.y100{bottom:1002.000000px;}
.y129{bottom:1004.760000px;}
.y2e3{bottom:1007.280000px;}
.y190{bottom:1007.997450px;}
.yc7{bottom:1010.520000px;}
.y9c{bottom:1010.880000px;}
.y28{bottom:1013.040000px;}
.y8{bottom:1013.400000px;}
.y293{bottom:1015.200000px;}
.y14f{bottom:1016.898600px;}
.y2eb{bottom:1017.000000px;}
.y2b4{bottom:1018.440000px;}
.ybc{bottom:1019.880000px;}
.y3c{bottom:1025.640000px;}
.y2e2{bottom:1026.360000px;}
.y7f{bottom:1030.320000px;}
.yfa{bottom:1032.000000px;}
.y128{bottom:1033.200000px;}
.y26d{bottom:1033.560000px;}
.y7{bottom:1034.280000px;}
.y27{bottom:1035.000000px;}
.y9b{bottom:1035.720000px;}
.yc6{bottom:1038.960000px;}
.y135{bottom:1040.439450px;}
.ybb{bottom:1048.320000px;}
.y26c{bottom:1052.640000px;}
.y2ea{bottom:1053.000000px;}
.y3b{bottom:1054.080000px;}
.y6{bottom:1055.160000px;}
.y26{bottom:1056.960000px;}
.y7e{bottom:1058.760000px;}
.y5f{bottom:1059.480000px;}
.y9a{bottom:1061.280000px;}
.y127{bottom:1061.640000px;}
.y2b3{bottom:1065.240000px;}
.y244{bottom:1067.400000px;}
.y292{bottom:1069.560000px;}
.y26b{bottom:1071.360000px;}
.y5d{bottom:1072.440000px;}
.y5{bottom:1076.040000px;}
.yba{bottom:1076.760000px;}
.y99{bottom:1080.000000px;}
.y2e1{bottom:1080.720000px;}
.y3a{bottom:1082.520000px;}
.y7d{bottom:1087.200000px;}
.y25{bottom:1087.560000px;}
.y291{bottom:1088.640000px;}
.y2e8{bottom:1089.000000px;}
.y126{bottom:1090.080000px;}
.y243{bottom:1095.840000px;}
.y2e0{bottom:1099.800000px;}
.y5c{bottom:1105.200000px;}
.y98{bottom:1105.560000px;}
.y5e{bottom:1106.280000px;}
.y26a{bottom:1107.000000px;}
.y24{bottom:1109.520000px;}
.y39{bottom:1110.600000px;}
.yf9{bottom:1111.680000px;}
.y2b2{bottom:1114.920000px;}
.y7c{bottom:1115.640000px;}
.y4{bottom:1116.360000px;}
.y125{bottom:1118.520000px;}
.y2df{bottom:1118.880000px;}
.y290{bottom:1124.280000px;}
.y269{bottom:1126.080000px;}
.y192{bottom:1129.882650px;}
.y1c7{bottom:1133.408250px;}
.y5b{bottom:1133.640000px;}
.yf8{bottom:1137.600000px;}
.y23{bottom:1140.120000px;}
.y3{bottom:1142.640000px;}
.y28f{bottom:1143.360000px;}
.y151{bottom:1154.004300px;}
.y38{bottom:1157.760000px;}
.y22{bottom:1162.080000px;}
.yf7{bottom:1163.520000px;}
.h1a{height:17.855370px;}
.h2e{height:21.000000px;}
.h2f{height:22.500000px;}
.h13{height:24.000000px;}
.h21{height:24.670554px;}
.h12{height:25.500000px;}
.h19{height:27.228293px;}
.h22{height:29.604665px;}
.h16{height:30.000000px;}
.h1e{height:30.988185px;}
.h2c{height:31.500000px;}
.ha{height:32.566261px;}
.h24{height:33.127725px;}
.h1d{height:33.277875px;}
.h1c{height:33.279025px;}
.h1f{height:34.538776px;}
.h11{height:34.595859px;}
.h15{height:34.619063px;}
.h7{height:34.797656px;}
.h23{height:35.525604px;}
.hc{height:35.526830px;}
.h30{height:39.000000px;}
.h25{height:41.446538px;}
.h14{height:42.000000px;}
.h29{height:43.500000px;}
.h10{height:44.060625px;}
.he{height:47.367472px;}
.hd{height:47.369106px;}
.h17{height:48.224531px;}
.h28{height:55.500000px;}
.h2a{height:57.000000px;}
.h2{height:59.383125px;}
.h3{height:60.804844px;}
.hf{height:64.500000px;}
.h2d{height:70.500000px;}
.h2b{height:84.000000px;}
.h4{height:89.296875px;}
.h18{height:113.564745px;}
.h6{height:136.816875px;}
.h5{height:144.016875px;}
.h8{height:191.536875px;}
.h9{height:316.652850px;}
.hb{height:433.950000px;}
.h20{height:723.225000px;}
.h26{height:893.160000px;}
.h27{height:893.250000px;}
.h1b{height:896.400000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:46.500000px;}
.w12{width:54.000000px;}
.w19{width:61.500000px;}
.w17{width:79.500000px;}
.w18{width:81.000000px;}
.w15{width:84.000000px;}
.w13{width:93.000000px;}
.w14{width:96.000000px;}
.w4{width:97.500000px;}
.w6{width:111.000000px;}
.w7{width:136.500000px;}
.w5{width:139.500000px;}
.wf{width:139.612560px;}
.we{width:140.456325px;}
.wd{width:141.290040px;}
.w8{width:180.000000px;}
.w9{width:181.500000px;}
.w1c{width:199.500000px;}
.wa{width:274.440450px;}
.wc{width:299.962500px;}
.w1a{width:336.000000px;}
.w1b{width:409.500000px;}
.wb{width:597.579300px;}
.w2{width:665.638200px;}
.w3{width:723.225000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w11{width:1262.250000px;}
.w10{width:1262.520000px;}
.x0{left:0.000000px;}
.x6f{left:1.505484px;}
.x76{left:3.351120px;}
.x5e{left:4.459855px;}
.x29{left:5.973120px;}
.x26{left:7.493412px;}
.x71{left:8.636712px;}
.x33{left:10.179840px;}
.x7a{left:11.595480px;}
.x27{left:12.840096px;}
.x45{left:13.881269px;}
.x30{left:15.515040px;}
.x21{left:17.046012px;}
.x2e{left:18.851880px;}
.x61{left:21.104108px;}
.x7d{left:22.183236px;}
.x1d{left:23.334052px;}
.x7f{left:24.459600px;}
.x2a{left:25.637400px;}
.x24{left:27.092268px;}
.x2d{left:28.528680px;}
.x1e{left:30.375451px;}
.x32{left:32.837400px;}
.x79{left:35.834880px;}
.x65{left:38.069747px;}
.x2f{left:39.129648px;}
.x3a{left:41.604480px;}
.x4e{left:42.606627px;}
.x4d{left:43.853855px;}
.x5a{left:45.291976px;}
.x52{left:46.716645px;}
.x3{left:48.600000px;}
.x5f{left:50.113467px;}
.x23{left:52.082247px;}
.x31{left:53.145276px;}
.x4b{left:54.576669px;}
.x4a{left:58.385318px;}
.x34{left:60.428808px;}
.x4f{left:65.751523px;}
.x86{left:68.157600px;}
.x3b{left:69.887340px;}
.x8c{left:71.971440px;}
.x37{left:73.600320px;}
.x49{left:74.833662px;}
.x39{left:76.838160px;}
.x36{left:78.608628px;}
.x88{left:80.991960px;}
.x7c{left:82.148160px;}
.x89{left:83.288040px;}
.x2{left:84.959856px;}
.x84{left:87.876240px;}
.x83{left:92.649516px;}
.x7e{left:94.502640px;}
.x4c{left:95.902610px;}
.x1f{left:100.548368px;}
.x4{left:111.959856px;}
.x43{left:115.189633px;}
.x8b{left:116.210436px;}
.x80{left:117.959832px;}
.x41{left:120.345806px;}
.x7b{left:123.506400px;}
.x78{left:129.195840px;}
.x85{left:131.168328px;}
.x3f{left:132.349265px;}
.x3e{left:134.164827px;}
.x17{left:137.057130px;}
.x5{left:138.959856px;}
.x59{left:140.331720px;}
.x47{left:141.409860px;}
.x81{left:142.500000px;}
.x42{left:147.787320px;}
.x8a{left:152.888316px;}
.x46{left:162.549867px;}
.x87{left:166.173720px;}
.x1c{left:170.881998px;}
.x55{left:181.400540px;}
.x25{left:183.000000px;}
.x3d{left:185.115300px;}
.x22{left:188.822000px;}
.x6a{left:200.484004px;}
.x58{left:202.161484px;}
.x70{left:232.500000px;}
.x1b{left:235.751265px;}
.x54{left:263.993828px;}
.x35{left:265.500000px;}
.x6d{left:298.008889px;}
.x18{left:299.927441px;}
.x1a{left:301.494428px;}
.x44{left:302.555641px;}
.x5b{left:308.843100px;}
.x63{left:314.699250px;}
.xf{left:321.525144px;}
.x66{left:326.526054px;}
.x10{left:330.784416px;}
.x20{left:344.214932px;}
.x9{left:345.727656px;}
.xd{left:348.025284px;}
.xe{left:358.769880px;}
.x19{left:364.133751px;}
.x6{left:366.177600px;}
.x53{left:369.112557px;}
.x57{left:370.662870px;}
.x60{left:374.801324px;}
.x7{left:378.804240px;}
.x51{left:380.119973px;}
.x12{left:389.919240px;}
.x50{left:396.878031px;}
.x13{left:401.876640px;}
.xb{left:420.697440px;}
.xa{left:426.163320px;}
.x28{left:432.000000px;}
.x8{left:446.697360px;}
.x40{left:465.240900px;}
.xc{left:466.705440px;}
.x14{left:470.796120px;}
.x64{left:472.322100px;}
.x5c{left:477.344550px;}
.x6b{left:480.699450px;}
.x48{left:491.562900px;}
.x72{left:510.000000px;}
.x62{left:533.298097px;}
.x11{left:539.189640px;}
.x69{left:540.841736px;}
.x68{left:547.541612px;}
.x82{left:552.000000px;}
.x73{left:558.000000px;}
.x56{left:559.273929px;}
.x67{left:560.941364px;}
.x2b{left:571.500000px;}
.x38{left:627.000000px;}
.x74{left:637.500000px;}
.x5d{left:655.900800px;}
.x6c{left:657.578250px;}
.x2c{left:681.000000px;}
.x75{left:718.500000px;}
.x3c{left:745.372080px;}
.x8e{left:761.759640px;}
.x15{left:789.832080px;}
.x8d{left:791.759880px;}
.x1{left:799.008480px;}
.x16{left:807.839640px;}
.x77{left:861.000000px;}
.x6e{left:1159.207200px;}
@media print{
.va{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.800000pt;}
.v5{vertical-align:-11.520000pt;}
.v2{vertical-align:-5.120000pt;}
.ve{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:2.656000pt;}
.vd{vertical-align:5.120000pt;}
.v6{vertical-align:11.520000pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.v9{vertical-align:29.440000pt;}
.v8{vertical-align:42.240000pt;}
.v7{vertical-align:48.640000pt;}
.vb{vertical-align:56.320000pt;}
.vc{vertical-align:90.880000pt;}
.ls5c{letter-spacing:-0.452352pt;}
.ls5b{letter-spacing:-0.398848pt;}
.ls6d{letter-spacing:-0.354816pt;}
.ls5d{letter-spacing:-0.350208pt;}
.ls38{letter-spacing:-0.338688pt;}
.ls3b{letter-spacing:-0.301056pt;}
.ls42{letter-spacing:-0.284928pt;}
.ls37{letter-spacing:-0.268800pt;}
.ls3a{letter-spacing:-0.231168pt;}
.ls3c{letter-spacing:-0.215040pt;}
.ls5e{letter-spacing:-0.214016pt;}
.lsb{letter-spacing:-0.211968pt;}
.lsc{letter-spacing:-0.176640pt;}
.lsd{letter-spacing:-0.141312pt;}
.ls54{letter-spacing:-0.139776pt;}
.ls35{letter-spacing:-0.135424pt;}
.ls39{letter-spacing:-0.129024pt;}
.ls69{letter-spacing:-0.123648pt;}
.lse{letter-spacing:-0.111872pt;}
.ls7{letter-spacing:-0.105984pt;}
.ls49{letter-spacing:-0.086016pt;}
.ls9{letter-spacing:-0.070656pt;}
.ls10{letter-spacing:-0.035328pt;}
.ls34{letter-spacing:-0.025600pt;}
.ls1f{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.023040pt;}
.ls6f{letter-spacing:0.035840pt;}
.ls25{letter-spacing:0.051968pt;}
.ls4a{letter-spacing:0.052992pt;}
.ls26{letter-spacing:0.053632pt;}
.ls12{letter-spacing:0.053760pt;}
.ls32{letter-spacing:0.071296pt;}
.ls8{letter-spacing:0.089088pt;}
.ls56{letter-spacing:0.101376pt;}
.ls14{letter-spacing:0.103936pt;}
.ls44{letter-spacing:0.109824pt;}
.ls5a{letter-spacing:0.111360pt;}
.ls57{letter-spacing:0.114048pt;}
.lsa{letter-spacing:0.122496pt;}
.ls2{letter-spacing:0.122880pt;}
.ls4{letter-spacing:0.124160pt;}
.ls3{letter-spacing:0.124288pt;}
.ls6b{letter-spacing:0.124416pt;}
.ls40{letter-spacing:0.142080pt;}
.ls58{letter-spacing:0.142336pt;}
.ls59{letter-spacing:0.142464pt;}
.ls1{letter-spacing:0.142720pt;}
.ls41{letter-spacing:0.143360pt;}
.ls46{letter-spacing:0.143616pt;}
.ls5f{letter-spacing:0.173184pt;}
.ls60{letter-spacing:0.215424pt;}
.ls55{letter-spacing:0.228096pt;}
.ls3e{letter-spacing:0.232320pt;}
.ls3f{letter-spacing:0.236544pt;}
.ls3d{letter-spacing:0.240768pt;}
.ls0{letter-spacing:0.244992pt;}
.ls43{letter-spacing:0.253440pt;}
.ls21{letter-spacing:0.257664pt;}
.ls53{letter-spacing:0.269568pt;}
.ls6{letter-spacing:0.282112pt;}
.ls45{letter-spacing:0.283008pt;}
.ls19{letter-spacing:0.290944pt;}
.ls47{letter-spacing:0.316800pt;}
.ls11{letter-spacing:0.319232pt;}
.ls20{letter-spacing:0.322560pt;}
.ls61{letter-spacing:0.325248pt;}
.ls65{letter-spacing:0.333056pt;}
.ls48{letter-spacing:0.354816pt;}
.ls1e{letter-spacing:0.356352pt;}
.ls18{letter-spacing:0.367360pt;}
.lsf{letter-spacing:0.541696pt;}
.ls1a{letter-spacing:0.690048pt;}
.ls2f{letter-spacing:0.753920pt;}
.ls2c{letter-spacing:0.897280pt;}
.ls2b{letter-spacing:0.898304pt;}
.ls2d{letter-spacing:0.898560pt;}
.ls6a{letter-spacing:1.075456pt;}
.ls31{letter-spacing:1.352704pt;}
.ls1b{letter-spacing:1.589504pt;}
.ls4d{letter-spacing:1.614720pt;}
.ls4f{letter-spacing:1.616640pt;}
.ls33{letter-spacing:1.945600pt;}
.ls51{letter-spacing:2.542080pt;}
.ls50{letter-spacing:3.020800pt;}
.ls67{letter-spacing:3.110528pt;}
.ls2a{letter-spacing:3.942144pt;}
.ls2e{letter-spacing:3.942272pt;}
.ls27{letter-spacing:4.305920pt;}
.ls23{letter-spacing:4.374272pt;}
.ls24{letter-spacing:4.465920pt;}
.ls4b{letter-spacing:4.554624pt;}
.ls4c{letter-spacing:4.555520pt;}
.ls36{letter-spacing:5.131520pt;}
.ls62{letter-spacing:5.180160pt;}
.ls1c{letter-spacing:6.999936pt;}
.ls30{letter-spacing:7.114240pt;}
.ls64{letter-spacing:8.750080pt;}
.ls22{letter-spacing:9.589760pt;}
.ls68{letter-spacing:12.126720pt;}
.ls17{letter-spacing:17.781760pt;}
.ls29{letter-spacing:17.783040pt;}
.ls16{letter-spacing:20.801280pt;}
.ls63{letter-spacing:22.361600pt;}
.ls13{letter-spacing:30.704384pt;}
.ls66{letter-spacing:35.738112pt;}
.ls1d{letter-spacing:55.850240pt;}
.ls28{letter-spacing:59.050240pt;}
.ls15{letter-spacing:751.631360pt;}
.ls6c{letter-spacing:751.631488pt;}
.ls52{letter-spacing:751.631616pt;}
.ls6e{letter-spacing:751.632000pt;}
.wsf{word-spacing:-20.995072pt;}
.ws9{word-spacing:-20.957952pt;}
.ws0{word-spacing:-20.883712pt;}
.wsc{word-spacing:-20.742656pt;}
.ws7{word-spacing:-16.910336pt;}
.ws3{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.333312pt;}
.wsd{word-spacing:-16.297984pt;}
.wse{word-spacing:-16.262656pt;}
.wsa{word-spacing:-16.256768pt;}
.ws37{word-spacing:-16.233216pt;}
.ws6{word-spacing:-16.227328pt;}
.ws5{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.156672pt;}
.ws1a{word-spacing:-14.945280pt;}
.ws29{word-spacing:-14.859264pt;}
.ws1c{word-spacing:-14.714112pt;}
.ws1b{word-spacing:-14.644224pt;}
.ws38{word-spacing:-14.590464pt;}
.ws2b{word-spacing:-13.900206pt;}
.ws35{word-spacing:-12.097536pt;}
.ws23{word-spacing:-12.025728pt;}
.ws32{word-spacing:-12.000384pt;}
.ws30{word-spacing:-11.996160pt;}
.ws22{word-spacing:-11.987712pt;}
.ws1f{word-spacing:-11.983488pt;}
.ws2f{word-spacing:-11.979264pt;}
.ws36{word-spacing:-11.975040pt;}
.ws33{word-spacing:-11.958144pt;}
.ws31{word-spacing:-11.915904pt;}
.ws21{word-spacing:-11.886336pt;}
.ws20{word-spacing:-11.852544pt;}
.ws2{word-spacing:-10.441856pt;}
.ws1{word-spacing:-10.408448pt;}
.ws34{word-spacing:-0.359040pt;}
.ws14{word-spacing:-0.299904pt;}
.ws11{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.058880pt;}
.ws10{word-spacing:-0.057600pt;}
.ws25{word-spacing:-0.053760pt;}
.ws16{word-spacing:-0.044800pt;}
.wsb{word-spacing:0.000000pt;}
.ws24{word-spacing:0.231168pt;}
.ws12{word-spacing:17.870080pt;}
.ws2c{word-spacing:18.185984pt;}
.ws15{word-spacing:18.778880pt;}
.ws2d{word-spacing:18.864566pt;}
.ws2a{word-spacing:45.622106pt;}
.ws18{word-spacing:52.218112pt;}
.ws17{word-spacing:57.500160pt;}
.ws19{word-spacing:61.811200pt;}
.ws2e{word-spacing:70.686764pt;}
.ws1e{word-spacing:88.947246pt;}
.ws27{word-spacing:94.937235pt;}
.ws28{word-spacing:173.603737pt;}
.ws1d{word-spacing:212.146182pt;}
.ws26{word-spacing:248.837665pt;}
._9b{margin-left:-4094.014080pt;}
._89{margin-left:-3550.331392pt;}
._a4{margin-left:-3507.035136pt;}
._9c{margin-left:-3439.811584pt;}
._80{margin-left:-3402.640384pt;}
._10b{margin-left:-3198.469888pt;}
._10c{margin-left:-3197.046528pt;}
._f1{margin-left:-3194.093696pt;}
._112{margin-left:-3163.513600pt;}
._76{margin-left:-2932.200960pt;}
._a2{margin-left:-2793.571328pt;}
._88{margin-left:-2785.867648pt;}
._47{margin-left:-2784.435840pt;}
._42{margin-left:-2783.538944pt;}
._44{margin-left:-2782.626304pt;}
._77{margin-left:-2781.024000pt;}
._10a{margin-left:-2778.323456pt;}
._a8{margin-left:-2776.294656pt;}
._4d{margin-left:-2774.871808pt;}
._50{margin-left:-2768.736512pt;}
._72{margin-left:-2767.359744pt;}
._d7{margin-left:-2765.623424pt;}
._118{margin-left:-2764.412928pt;}
._d4{margin-left:-2762.985600pt;}
._eb{margin-left:-2759.546368pt;}
._f4{margin-left:-2755.376640pt;}
._b9{margin-left:-2752.535808pt;}
._10{margin-left:-2750.877184pt;}
._14{margin-left:-2749.500416pt;}
._25{margin-left:-2747.132416pt;}
._5d{margin-left:-2745.660928pt;}
._26{margin-left:-2744.441600pt;}
._ca{margin-left:-2742.200960pt;}
._4a{margin-left:-2739.137536pt;}
._bd{margin-left:-2736.567552pt;}
._d2{margin-left:-2735.342848pt;}
._4f{margin-left:-2732.144128pt;}
._fc{margin-left:-2728.882176pt;}
._f3{margin-left:-2726.672640pt;}
._ef{margin-left:-2724.627712pt;}
._be{margin-left:-2723.135616pt;}
._114{margin-left:-2721.663744pt;}
._4c{margin-left:-2719.252352pt;}
._e8{margin-left:-2718.035968pt;}
._4{margin-left:-2716.964864pt;}
._113{margin-left:-2715.533824pt;}
._c8{margin-left:-2712.878720pt;}
._22{margin-left:-2709.614080pt;}
._cb{margin-left:-2707.426432pt;}
._4e{margin-left:-2703.339008pt;}
._7f{margin-left:-2696.614400pt;}
._aa{margin-left:-2690.624256pt;}
._8{margin-left:-2688.422144pt;}
._cf{margin-left:-2686.359168pt;}
._110{margin-left:-2685.115904pt;}
._2d{margin-left:-2684.095488pt;}
._f6{margin-left:-2674.381312pt;}
._e7{margin-left:-2673.215488pt;}
._b8{margin-left:-2671.252736pt;}
._fb{margin-left:-2668.519424pt;}
._fd{margin-left:-2667.515904pt;}
._c6{margin-left:-2666.529792pt;}
._67{margin-left:-2663.485824pt;}
._c7{margin-left:-2660.647680pt;}
._7d{margin-left:-2659.178496pt;}
._1d{margin-left:-2656.680960pt;}
._cd{margin-left:-2654.563968pt;}
._e6{margin-left:-2653.461248pt;}
._5f{margin-left:-2651.512320pt;}
._c5{margin-left:-2641.127552pt;}
._af{margin-left:-2638.433024pt;}
._100{margin-left:-2635.074048pt;}
._2e{margin-left:-2630.761984pt;}
._102{margin-left:-2624.866816pt;}
._24{margin-left:-2621.553152pt;}
._dc{margin-left:-2618.916096pt;}
._f9{margin-left:-2616.337408pt;}
._2c{margin-left:-2613.675008pt;}
._9e{margin-left:-2612.263936pt;}
._b5{margin-left:-2608.321792pt;}
._115{margin-left:-2602.336768pt;}
._23{margin-left:-2598.578176pt;}
._21{margin-left:-2595.575296pt;}
._20{margin-left:-2591.536128pt;}
._bb{margin-left:-2589.472128pt;}
._111{margin-left:-2587.643648pt;}
._d5{margin-left:-2586.447104pt;}
._e9{margin-left:-2585.148672pt;}
._ac{margin-left:-2582.443264pt;}
._2a{margin-left:-2572.188160pt;}
._df{margin-left:-2570.448000pt;}
._fa{margin-left:-2562.909696pt;}
._56{margin-left:-2558.813184pt;}
._78{margin-left:-2553.539328pt;}
._e4{margin-left:-2543.432320pt;}
._1{margin-left:-2540.802560pt;}
._b0{margin-left:-2533.893376pt;}
._ab{margin-left:-2530.770176pt;}
._28{margin-left:-2526.862336pt;}
._10f{margin-left:-2516.579328pt;}
._a6{margin-left:-2508.791040pt;}
._ec{margin-left:-2497.635840pt;}
._a0{margin-left:-2494.638336pt;}
._7e{margin-left:-2469.467392pt;}
._1b{margin-left:-2448.893440pt;}
._c3{margin-left:-2445.676800pt;}
._e1{margin-left:-2429.962752pt;}
._ce{margin-left:-2426.423040pt;}
._104{margin-left:-2422.489856pt;}
._74{margin-left:-2412.860928pt;}
._1f{margin-left:-2393.028096pt;}
._dd{margin-left:-2377.446656pt;}
._58{margin-left:-2371.596800pt;}
._da{margin-left:-2354.695424pt;}
._b3{margin-left:-2325.090560pt;}
._ad{margin-left:-2312.572672pt;}
._35{margin-left:-2272.353536pt;}
._6f{margin-left:-2243.574528pt;}
._103{margin-left:-2204.334336pt;}
._5e{margin-left:-2192.652800pt;}
._ed{margin-left:-2133.745152pt;}
._86{margin-left:-2126.608896pt;}
._9f{margin-left:-2100.148224pt;}
._a3{margin-left:-2074.747392pt;}
._e0{margin-left:-2058.517248pt;}
._b1{margin-left:-2035.389184pt;}
._cc{margin-left:-2011.448576pt;}
._84{margin-left:-1992.386048pt;}
._a7{margin-left:-1967.000064pt;}
._116{margin-left:-1947.804288pt;}
._63{margin-left:-1940.263680pt;}
._81{margin-left:-1937.190144pt;}
._b4{margin-left:-1907.619584pt;}
._d8{margin-left:-1905.146624pt;}
._f2{margin-left:-1903.542016pt;}
._107{margin-left:-1901.566720pt;}
._27{margin-left:-1874.236416pt;}
._3a{margin-left:-1871.822336pt;}
._ae{margin-left:-1868.323072pt;}
._117{margin-left:-1866.466304pt;}
._b6{margin-left:-1855.970560pt;}
._5c{margin-left:-1853.850880pt;}
._61{margin-left:-1845.235328pt;}
._d6{margin-left:-1839.577856pt;}
._54{margin-left:-1822.237440pt;}
._106{margin-left:-1810.015488pt;}
._ff{margin-left:-1789.273600pt;}
._c4{margin-left:-1782.958848pt;}
._29{margin-left:-1780.382208pt;}
._c0{margin-left:-1777.346688pt;}
._46{margin-left:-1750.260224pt;}
._d0{margin-left:-1741.448448pt;}
._4b{margin-left:-1736.751872pt;}
._30{margin-left:-1724.005120pt;}
._6d{margin-left:-1715.467520pt;}
._b7{margin-left:-1705.366784pt;}
._64{margin-left:-1697.086720pt;}
._ba{margin-left:-1689.245440pt;}
._9{margin-left:-1661.972992pt;}
._a{margin-left:-1630.931456pt;}
._e5{margin-left:-1623.909120pt;}
._c9{margin-left:-1589.138688pt;}
._7c{margin-left:-1568.477952pt;}
._1c{margin-left:-1552.233984pt;}
._c1{margin-left:-1539.513600pt;}
._33{margin-left:-1505.459200pt;}
._53{margin-left:-1503.988224pt;}
._51{margin-left:-1496.451584pt;}
._d9{margin-left:-1483.548160pt;}
._bc{margin-left:-1473.815296pt;}
._d1{margin-left:-1450.857984pt;}
._a9{margin-left:-1445.499904pt;}
._59{margin-left:-1441.752064pt;}
._d{margin-left:-1425.842688pt;}
._f8{margin-left:-1414.779136pt;}
._87{margin-left:-1412.117760pt;}
._d3{margin-left:-1352.981760pt;}
._f5{margin-left:-1350.452736pt;}
._b{margin-left:-1293.703168pt;}
._f7{margin-left:-1288.722944pt;}
._10e{margin-left:-1274.765952pt;}
._39{margin-left:-1264.956416pt;}
._3d{margin-left:-1250.854400pt;}
._bf{margin-left:-1222.939392pt;}
._1a{margin-left:-1211.014400pt;}
._a5{margin-left:-1192.145664pt;}
._c2{margin-left:-1177.118976pt;}
._70{margin-left:-1125.083648pt;}
._2b{margin-left:-1104.863232pt;}
._40{margin-left:-1092.653056pt;}
._e3{margin-left:-1080.141824pt;}
._66{margin-left:-1056.323584pt;}
._45{margin-left:-1049.835008pt;}
._b2{margin-left:-995.462400pt;}
._109{margin-left:-984.478208pt;}
._e2{margin-left:-980.282368pt;}
._6b{margin-left:-978.236928pt;}
._105{margin-left:-975.019264pt;}
._101{margin-left:-967.956480pt;}
._68{margin-left:-965.554176pt;}
._ea{margin-left:-961.632768pt;}
._65{margin-left:-955.780096pt;}
._3e{margin-left:-951.198208pt;}
._73{margin-left:-929.119232pt;}
._fe{margin-left:-913.916416pt;}
._108{margin-left:-890.965504pt;}
._db{margin-left:-874.169600pt;}
._85{margin-left:-799.359488pt;}
._48{margin-left:-779.788288pt;}
._60{margin-left:-769.289472pt;}
._e{margin-left:-732.935936pt;}
._6c{margin-left:-723.651584pt;}
._2{margin-left:-702.102144pt;}
._f0{margin-left:-675.464192pt;}
._57{margin-left:-652.395008pt;}
._55{margin-left:-649.392128pt;}
._6e{margin-left:-646.342144pt;}
._9d{margin-left:-627.097088pt;}
._3c{margin-left:-622.086656pt;}
._31{margin-left:-618.664960pt;}
._41{margin-left:-582.974464pt;}
._71{margin-left:-535.035392pt;}
._3f{margin-left:-502.991872pt;}
._f{margin-left:-486.869504pt;}
._a1{margin-left:-480.194560pt;}
._90{margin-left:-435.126400pt;}
._1e{margin-left:-417.451008pt;}
._de{margin-left:-411.048960pt;}
._10d{margin-left:-317.451392pt;}
._49{margin-left:-212.208128pt;}
._c{margin-left:-178.928128pt;}
._7{margin-left:-145.648128pt;}
._62{margin-left:-11.393280pt;}
._5b{margin-left:-9.169920pt;}
._8b{margin-left:-6.250092pt;}
._8a{margin-left:-5.000073pt;}
._15{margin-left:-3.944960pt;}
._5{margin-left:-2.903552pt;}
._6{margin-left:-1.880448pt;}
._0{margin-left:-0.965120pt;}
._3{width:1.177600pt;}
._16{width:2.287488pt;}
._12{width:3.179520pt;}
._11{width:4.298240pt;}
._17{width:5.534720pt;}
._37{width:6.594560pt;}
._13{width:7.595520pt;}
._32{width:8.832000pt;}
._52{width:9.891840pt;}
._3b{width:11.349760pt;}
._34{width:12.305920pt;}
._38{width:13.542400pt;}
._43{width:14.720000pt;}
._18{width:17.422592pt;}
._5a{width:18.361088pt;}
._36{width:20.078080pt;}
._6a{width:22.686336pt;}
._69{width:23.728640pt;}
._ee{width:30.749184pt;}
._95{width:58.993733pt;}
._99{width:61.333069pt;}
._91{width:71.108199pt;}
._98{width:77.329720pt;}
._97{width:78.710160pt;}
._93{width:82.565512pt;}
._8f{width:84.054804pt;}
._96{width:94.779979pt;}
._9a{width:96.765722pt;}
._7b{width:101.476436pt;}
._83{width:104.196346pt;}
._92{width:106.858729pt;}
._94{width:118.622905pt;}
._8d{width:191.788528pt;}
._8c{width:193.008784pt;}
._8e{width:234.867361pt;}
._79{width:235.990216pt;}
._7a{width:247.890803pt;}
._82{width:313.769481pt;}
._2f{width:747.733248pt;}
._19{width:751.705600pt;}
._75{width:753.715712pt;}
.fs10{font-size:29.762341pt;}
.fsc{font-size:33.199997pt;}
.fsb{font-size:34.560000pt;}
.fs11{font-size:35.714810pt;}
.fs2{font-size:37.120000pt;}
.fs7{font-size:39.287653pt;}
.fse{font-size:40.576372pt;}
.fsd{font-size:40.577774pt;}
.fsf{font-size:41.667278pt;}
.fs5{font-size:42.240000pt;}
.fs12{font-size:42.857779pt;}
.fs8{font-size:42.859258pt;}
.fs4{font-size:44.800000pt;}
.fs14{font-size:48.640000pt;}
.fs13{font-size:50.000742pt;}
.fs6{font-size:53.760000pt;}
.fsa{font-size:57.143706pt;}
.fs9{font-size:57.145677pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y207{bottom:2.506667pt;}
.y20d{bottom:2.666667pt;}
.y237{bottom:2.773333pt;}
.y22b{bottom:2.986667pt;}
.y219{bottom:3.093333pt;}
.y221{bottom:3.200000pt;}
.y213{bottom:3.253333pt;}
.y23d{bottom:3.360000pt;}
.y241{bottom:3.626667pt;}
.y2ee{bottom:3.840000pt;}
.y2f7{bottom:3.893333pt;}
.y305{bottom:3.946667pt;}
.y22f{bottom:4.106667pt;}
.y2ed{bottom:4.160000pt;}
.y2f3{bottom:4.213333pt;}
.y303{bottom:4.266667pt;}
.y18f{bottom:4.404754pt;}
.y2e9{bottom:4.480000pt;}
.y300{bottom:4.586667pt;}
.y2f0{bottom:4.853333pt;}
.y2fc{bottom:4.906667pt;}
.y152{bottom:4.952236pt;}
.y14a{bottom:4.952305pt;}
.y14c{bottom:4.952360pt;}
.y148{bottom:4.952383pt;}
.y14e{bottom:4.961482pt;}
.y150{bottom:4.961536pt;}
.y1d9{bottom:5.089350pt;}
.y1fc{bottom:5.089402pt;}
.y1ed{bottom:5.089443pt;}
.y1ca{bottom:5.089457pt;}
.y205{bottom:8.586667pt;}
.y109{bottom:8.906667pt;}
.y217{bottom:9.173333pt;}
.y211{bottom:9.333333pt;}
.y23b{bottom:9.440000pt;}
.y21d{bottom:9.600000pt;}
.y103{bottom:9.920000pt;}
.yfd{bottom:10.026667pt;}
.y193{bottom:10.029789pt;}
.y191{bottom:10.029826pt;}
.y18d{bottom:10.029837pt;}
.y18b{bottom:10.029874pt;}
.y189{bottom:10.029885pt;}
.y111{bottom:10.080000pt;}
.y10d{bottom:10.133333pt;}
.y22d{bottom:10.186667pt;}
.y118{bottom:10.293333pt;}
.y105{bottom:10.720000pt;}
.y101{bottom:10.773333pt;}
.y116{bottom:10.826667pt;}
.y1d7{bottom:10.875151pt;}
.y1fa{bottom:10.875203pt;}
.y1eb{bottom:10.875243pt;}
.y1c8{bottom:10.875257pt;}
.y113{bottom:10.880000pt;}
.y10f{bottom:10.933333pt;}
.y10b{bottom:10.986667pt;}
.y11f{bottom:11.733333pt;}
.y2f8{bottom:12.213333pt;}
.y2f4{bottom:12.533333pt;}
.y1fe{bottom:12.535900pt;}
.y121{bottom:12.853333pt;}
.y11d{bottom:12.960000pt;}
.yf5{bottom:13.652459pt;}
.y175{bottom:14.432776pt;}
.y206{bottom:14.666667pt;}
.y236{bottom:14.933333pt;}
.y20c{bottom:15.146667pt;}
.y215{bottom:15.253333pt;}
.y22a{bottom:15.466667pt;}
.y239{bottom:15.520000pt;}
.y18e{bottom:15.654919pt;}
.y220{bottom:15.680000pt;}
.y20f{bottom:15.733333pt;}
.y23f{bottom:16.106667pt;}
.y22e{bottom:16.266667pt;}
.y1d8{bottom:16.660951pt;}
.y1fb{bottom:16.661003pt;}
.y1ec{bottom:16.661043pt;}
.y1c9{bottom:16.661058pt;}
.y107{bottom:18.186667pt;}
.yff{bottom:19.306667pt;}
.y2f6{bottom:20.533333pt;}
.y233{bottom:21.013333pt;}
.y204{bottom:21.066667pt;}
.y2f2{bottom:21.173333pt;}
.y209{bottom:21.226667pt;}
.y216{bottom:21.333333pt;}
.y225{bottom:21.546667pt;}
.y23a{bottom:21.600000pt;}
.y21b{bottom:21.760000pt;}
.y210{bottom:21.813333pt;}
.y1ba{bottom:22.128301pt;}
.y240{bottom:22.186667pt;}
.y1fd{bottom:26.312891pt;}
.y231{bottom:27.093333pt;}
.y108{bottom:27.146667pt;}
.y20b{bottom:27.306667pt;}
.y229{bottom:27.626667pt;}
.y23c{bottom:27.680000pt;}
.y218{bottom:27.733333pt;}
.y21f{bottom:27.840000pt;}
.y212{bottom:27.893333pt;}
.yfb{bottom:28.266667pt;}
.y232{bottom:33.493333pt;}
.y223{bottom:33.706667pt;}
.y21c{bottom:33.920000pt;}
.y1f2{bottom:34.563013pt;}
.yfe{bottom:37.546667pt;}
.y20a{bottom:39.466667pt;}
.y235{bottom:39.573333pt;}
.y228{bottom:39.786667pt;}
.y21e{bottom:40.000000pt;}
.yf3{bottom:43.037838pt;}
.y173{bottom:43.436662pt;}
.y224{bottom:45.866667pt;}
.y1b9{bottom:46.101867pt;}
.yfc{bottom:46.826667pt;}
.y234{bottom:51.733333pt;}
.y227{bottom:52.266667pt;}
.y2{bottom:53.760000pt;}
.y154{bottom:55.065884pt;}
.y1f3{bottom:55.474038pt;}
.yf2{bottom:58.092152pt;}
.y1f7{bottom:62.447356pt;}
.y143{bottom:64.232709pt;}
.y140{bottom:64.232764pt;}
.y146{bottom:64.232787pt;}
.y13a{bottom:64.241941pt;}
.y137{bottom:64.241995pt;}
.y13d{bottom:64.242019pt;}
.y226{bottom:64.426667pt;}
.y1ff{bottom:64.697389pt;}
.y16e{bottom:67.183882pt;}
.y1b7{bottom:70.261447pt;}
.y1{bottom:70.720000pt;}
.y242{bottom:72.000000pt;}
.y13f{bottom:75.566874pt;}
.y142{bottom:75.576041pt;}
.y139{bottom:75.576051pt;}
.y136{bottom:75.576105pt;}
.y145{bottom:75.576120pt;}
.y13c{bottom:75.576129pt;}
.y1f4{bottom:76.393991pt;}
.ye7{bottom:79.137833pt;}
.y195{bottom:81.414885pt;}
.yb9{bottom:89.600000pt;}
.y16f{bottom:90.128769pt;}
.y1f8{bottom:90.340627pt;}
.y1ad{bottom:90.708176pt;}
.y134{bottom:91.200000pt;}
.y23e{bottom:93.333333pt;}
.y1f5{bottom:97.305016pt;}
.y5a{bottom:99.200000pt;}
.y28e{bottom:101.760000pt;}
.y7b{bottom:104.000000pt;}
.ye8{bottom:104.728382pt;}
.y1ae{bottom:108.141467pt;}
.y170{bottom:113.073656pt;}
.y133{bottom:114.240000pt;}
.yb8{bottom:114.880000pt;}
.y1f6{bottom:118.224970pt;}
.y28d{bottom:118.720000pt;}
.y59{bottom:124.480000pt;}
.y1af{bottom:125.574759pt;}
.y259{bottom:126.080000pt;}
.y7a{bottom:129.280000pt;}
.ye9{bottom:130.318930pt;}
.y28c{bottom:135.680000pt;}
.y2b1{bottom:136.000000pt;}
.y171{bottom:136.009320pt;}
.y132{bottom:137.280000pt;}
.yf4{bottom:138.140745pt;}
.y238{bottom:140.000000pt;}
.yb7{bottom:140.160000pt;}
.y1b0{bottom:143.015491pt;}
.y258{bottom:151.360000pt;}
.y79{bottom:154.560000pt;}
.yea{bottom:155.900550pt;}
.y172{bottom:158.954207pt;}
.y320{bottom:160.000000pt;}
.y131{bottom:160.320000pt;}
.y1b1{bottom:160.448782pt;}
.y58{bottom:163.200000pt;}
.y1f0{bottom:164.056007pt;}
.yb6{bottom:165.440000pt;}
.y28b{bottom:167.040000pt;}
.y2b0{bottom:167.680000pt;}
.y257{bottom:176.640000pt;}
.y1ef{bottom:177.556208pt;}
.y78{bottom:179.840000pt;}
.yeb{bottom:181.491098pt;}
.y130{bottom:183.360000pt;}
.y28a{bottom:184.000000pt;}
.y2af{bottom:184.640000pt;}
.y230{bottom:186.666667pt;}
.y31f{bottom:188.160000pt;}
.y57{bottom:188.480000pt;}
.y169{bottom:189.055537pt;}
.yb5{bottom:190.720000pt;}
.y1ee{bottom:191.333198pt;}
.y2cb{bottom:194.240000pt;}
.y97{bottom:196.480000pt;}
.y1a8{bottom:199.043098pt;}
.y1de{bottom:199.583321pt;}
.y289{bottom:200.960000pt;}
.y256{bottom:201.920000pt;}
.y77{bottom:205.120000pt;}
.y12f{bottom:206.080000pt;}
.ye3{bottom:206.974528pt;}
.yec{bottom:207.081646pt;}
.y16a{bottom:212.000424pt;}
.yb4{bottom:216.000000pt;}
.y1df{bottom:216.315712pt;}
.y1a9{bottom:216.483830pt;}
.y2ca{bottom:219.520000pt;}
.y1e4{bottom:220.717563pt;}
.y96{bottom:221.760000pt;}
.y1e7{bottom:223.485461pt;}
.y56{bottom:227.200000pt;}
.y12e{bottom:229.120000pt;}
.y1f1{bottom:229.717697pt;}
.y76{bottom:230.400000pt;}
.y288{bottom:232.320000pt;}
.yed{bottom:232.663266pt;}
.y2ae{bottom:232.960000pt;}
.y1e0{bottom:233.048103pt;}
.y1aa{bottom:233.917122pt;}
.y16b{bottom:234.945311pt;}
.ye2{bottom:235.699160pt;}
.ye5{bottom:235.806308pt;}
.ye4{bottom:236.663493pt;}
.yb3{bottom:241.280000pt;}
.y1e5{bottom:241.851805pt;}
.y95{bottom:247.040000pt;}
.y1e8{bottom:247.387602pt;}
.y12d{bottom:249.280000pt;}
.y1e1{bottom:249.780494pt;}
.y153{bottom:249.906800pt;}
.y1b8{bottom:250.078073pt;}
.y1ab{bottom:251.350413pt;}
.y55{bottom:252.480000pt;}
.y75{bottom:256.000000pt;}
.ye1{bottom:256.985924pt;}
.y22c{bottom:257.333333pt;}
.y16c{bottom:257.880975pt;}
.y2c9{bottom:258.240000pt;}
.yee{bottom:258.253814pt;}
.y1e6{bottom:262.994976pt;}
.y2ad{bottom:264.320000pt;}
.y1e2{bottom:266.512886pt;}
.yb2{bottom:266.560000pt;}
.y306{bottom:268.160000pt;}
.y1ac{bottom:268.791145pt;}
.y1bb{bottom:268.800000pt;}
.y1e9{bottom:271.289742pt;}
.y94{bottom:272.320000pt;}
.y74{bottom:276.160000pt;}
.y54{bottom:277.760000pt;}
.y287{bottom:280.640000pt;}
.y16d{bottom:280.825862pt;}
.y2ac{bottom:281.280000pt;}
.y325{bottom:282.240000pt;}
.y21{bottom:283.200000pt;}
.y1e3{bottom:283.245277pt;}
.y2c8{bottom:283.520000pt;}
.yef{bottom:283.844362pt;}
.y73{bottom:286.720000pt;}
.y255{bottom:291.200000pt;}
.y187{bottom:291.840000pt;}
.y222{bottom:293.333333pt;}
.y31a{bottom:293.760000pt;}
.y286{bottom:297.600000pt;}
.y2ab{bottom:298.240000pt;}
.y53{bottom:303.040000pt;}
.y93{bottom:304.000000pt;}
.yb1{bottom:305.280000pt;}
.y2de{bottom:307.200000pt;}
.y1a3{bottom:307.385461pt;}
.y20{bottom:308.800000pt;}
.yf0{bottom:309.434911pt;}
.y268{bottom:309.760000pt;}
.y124{bottom:310.400000pt;}
.y324{bottom:310.720000pt;}
.y164{bottom:310.927192pt;}
.y319{bottom:311.360000pt;}
.y186{bottom:314.560000pt;}
.y144{bottom:315.486000pt;}
.y254{bottom:316.480000pt;}
.y72{bottom:324.480000pt;}
.y1a4{bottom:324.818753pt;}
.y304{bottom:325.333333pt;}
.yda{bottom:327.040000pt;}
.y52{bottom:328.320000pt;}
.y318{bottom:328.960000pt;}
.y1dc{bottom:329.076315pt;}
.y2aa{bottom:329.600000pt;}
.y123{bottom:330.666667pt;}
.y2dd{bottom:332.480000pt;}
.y165{bottom:333.872079pt;}
.y1f{bottom:334.080000pt;}
.yf1{bottom:335.016530pt;}
.y267{bottom:335.360000pt;}
.y185{bottom:337.600000pt;}
.y174{bottom:340.530523pt;}
.y253{bottom:341.760000pt;}
.y1a5{bottom:342.252044pt;}
.y1db{bottom:342.576515pt;}
.yb0{bottom:344.000000pt;}
.y285{bottom:345.920000pt;}
.y2a9{bottom:346.560000pt;}
.y317{bottom:346.880000pt;}
.y2c7{bottom:347.520000pt;}
.y92{bottom:348.480000pt;}
.y311{bottom:351.040000pt;}
.yd9{bottom:352.320000pt;}
.y51{bottom:353.600000pt;}
.y1da{bottom:356.353505pt;}
.y166{bottom:356.807743pt;}
.y302{bottom:357.333333pt;}
.y2dc{bottom:357.760000pt;}
.y1e{bottom:359.360000pt;}
.y1a6{bottom:359.692776pt;}
.yf6{bottom:359.696319pt;}
.y184{bottom:360.640000pt;}
.y284{bottom:362.880000pt;}
.y2a8{bottom:363.520000pt;}
.y122{bottom:364.000000pt;}
.y316{bottom:364.480000pt;}
.y1ce{bottom:364.603628pt;}
.y71{bottom:365.760000pt;}
.y252{bottom:367.040000pt;}
.y91{bottom:368.000000pt;}
.y310{bottom:368.640000pt;}
.yaf{bottom:369.280000pt;}
.y2c6{bottom:372.480000pt;}
.y21a{bottom:376.000000pt;}
.y1a7{bottom:377.126068pt;}
.yd8{bottom:377.600000pt;}
.y50{bottom:378.880000pt;}
.y167{bottom:379.752630pt;}
.y283{bottom:379.840000pt;}
.y315{bottom:382.080000pt;}
.y2db{bottom:383.040000pt;}
.y183{bottom:383.680000pt;}
.y1d{bottom:384.640000pt;}
.y1cf{bottom:385.523581pt;}
.y266{bottom:385.920000pt;}
.y30f{bottom:386.240000pt;}
.y1d3{bottom:388.970061pt;}
.y301{bottom:389.333333pt;}
.y251{bottom:392.320000pt;}
.yae{bottom:394.560000pt;}
.y1dd{bottom:394.738004pt;}
.y2a7{bottom:394.880000pt;}
.y282{bottom:396.480000pt;}
.y120{bottom:398.666667pt;}
.y314{bottom:399.680000pt;}
.y168{bottom:402.697517pt;}
.yd7{bottom:402.880000pt;}
.y182{bottom:403.840000pt;}
.y194{bottom:403.840133pt;}
.y4f{bottom:404.160000pt;}
.y1d0{bottom:406.434606pt;}
.y90{bottom:406.720000pt;}
.y70{bottom:407.040000pt;}
.y1c{bottom:409.920000pt;}
.y265{bottom:411.200000pt;}
.y2c5{bottom:411.520000pt;}
.y2a6{bottom:411.840000pt;}
.y1d4{bottom:413.336494pt;}
.y30e{bottom:414.400000pt;}
.y19b{bottom:415.720384pt;}
.y147{bottom:416.432400pt;}
.y313{bottom:417.280000pt;}
.y250{bottom:417.600000pt;}
.yad{bottom:419.840000pt;}
.y2ff{bottom:421.333333pt;}
.y2da{bottom:421.760000pt;}
.y19c{bottom:425.683328pt;}
.y1d1{bottom:427.345631pt;}
.y281{bottom:428.160000pt;}
.y2a5{bottom:428.800000pt;}
.y4e{bottom:429.440000pt;}
.y8f{bottom:432.000000pt;}
.y15f{bottom:432.798847pt;}
.y1b3{bottom:432.923017pt;}
.y11e{bottom:434.666667pt;}
.y1b{bottom:435.200000pt;}
.y19d{bottom:435.646271pt;}
.y264{bottom:436.480000pt;}
.y141{bottom:437.357733pt;}
.y1d5{bottom:437.693999pt;}
.yd6{bottom:441.600000pt;}
.y24f{bottom:442.880000pt;}
.yac{bottom:445.120000pt;}
.y312{bottom:445.440000pt;}
.y19e{bottom:445.609215pt;}
.y1d2{bottom:448.265584pt;}
.y6f{bottom:448.320000pt;}
.y1b4{bottom:450.125650pt;}
.y2c4{bottom:452.800000pt;}
.y2fe{bottom:453.333333pt;}
.y4d{bottom:454.720000pt;}
.y19f{bottom:455.572159pt;}
.y160{bottom:455.743734pt;}
.y2a4{bottom:460.160000pt;}
.y1a{bottom:460.480000pt;}
.y263{bottom:461.760000pt;}
.y2d9{bottom:463.040000pt;}
.y1a0{bottom:465.542543pt;}
.yd5{bottom:466.880000pt;}
.y1b5{bottom:467.328284pt;}
.y11c{bottom:468.000000pt;}
.y24e{bottom:468.160000pt;}
.y8e{bottom:470.720000pt;}
.y181{bottom:473.600000pt;}
.y6e{bottom:474.880000pt;}
.y1a1{bottom:475.505487pt;}
.y2a3{bottom:477.120000pt;}
.y2c3{bottom:478.080000pt;}
.y161{bottom:478.679398pt;}
.y4c{bottom:480.000000pt;}
.y214{bottom:481.333333pt;}
.yab{bottom:483.840000pt;}
.y31e{bottom:484.160000pt;}
.y1b6{bottom:484.530917pt;}
.y2fd{bottom:485.333333pt;}
.y1a2{bottom:485.468431pt;}
.y19{bottom:485.760000pt;}
.y262{bottom:487.040000pt;}
.y2d8{bottom:488.320000pt;}
.yd4{bottom:492.160000pt;}
.y24d{bottom:493.440000pt;}
.y2a2{bottom:494.080000pt;}
.y1cc{bottom:494.096622pt;}
.y180{bottom:498.880000pt;}
.y162{bottom:501.624285pt;}
.y6d{bottom:501.760000pt;}
.y11b{bottom:502.400000pt;}
.y2c2{bottom:503.360000pt;}
.y4b{bottom:505.280000pt;}
.y1cb{bottom:507.873612pt;}
.yaa{bottom:509.120000pt;}
.y8d{bottom:509.440000pt;}
.y280{bottom:510.400000pt;}
.y18{bottom:511.040000pt;}
.ydf{bottom:512.640000pt;}
.y2d7{bottom:513.600000pt;}
.y1bc{bottom:516.123735pt;}
.yd3{bottom:517.120000pt;}
.y2fb{bottom:517.333333pt;}
.y24c{bottom:518.720000pt;}
.y31d{bottom:519.360000pt;}
.y11a{bottom:520.000000pt;}
.y1b2{bottom:524.055306pt;}
.y196{bottom:524.062747pt;}
.y17f{bottom:524.160000pt;}
.y163{bottom:524.569172pt;}
.y261{bottom:525.760000pt;}
.y1f9{bottom:525.913333pt;}
.y20e{bottom:526.666667pt;}
.y27f{bottom:527.040000pt;}
.y2c1{bottom:528.640000pt;}
.y4a{bottom:530.560000pt;}
.y30d{bottom:532.480000pt;}
.y30a{bottom:532.800000pt;}
.y1bd{bottom:532.856126pt;}
.ya9{bottom:534.400000pt;}
.y8c{bottom:534.720000pt;}
.yde{bottom:535.360000pt;}
.y17{bottom:536.320000pt;}
.y31c{bottom:536.960000pt;}
.y6c{bottom:538.240000pt;}
.y149{bottom:538.304133pt;}
.y2d6{bottom:538.880000pt;}
.y1c4{bottom:540.025875pt;}
.y197{bottom:541.496038pt;}
.y2a1{bottom:542.400000pt;}
.y24b{bottom:544.000000pt;}
.y1c2{bottom:544.008077pt;}
.y1cd{bottom:546.258111pt;}
.y17e{bottom:549.440000pt;}
.y1be{bottom:549.588517pt;}
.y30c{bottom:550.080000pt;}
.y309{bottom:550.400000pt;}
.y2fa{bottom:550.666667pt;}
.y260{bottom:551.040000pt;}
.y15a{bottom:554.670502pt;}
.y49{bottom:555.840000pt;}
.y119{bottom:557.760000pt;}
.ydd{bottom:558.400000pt;}
.y27e{bottom:558.720000pt;}
.y198{bottom:558.929330pt;}
.y13e{bottom:559.229333pt;}
.y2a0{bottom:559.360000pt;}
.ya8{bottom:559.680000pt;}
.y8b{bottom:560.000000pt;}
.y16{bottom:561.600000pt;}
.y1c5{bottom:563.928016pt;}
.y2d5{bottom:564.160000pt;}
.y31b{bottom:565.120000pt;}
.y1bf{bottom:566.320909pt;}
.y30b{bottom:567.680000pt;}
.y308{bottom:568.000000pt;}
.y24a{bottom:569.280000pt;}
.y2c0{bottom:569.920000pt;}
.y188{bottom:570.985467pt;}
.y1c3{bottom:571.901349pt;}
.y208{bottom:573.333333pt;}
.y117{bottom:574.666667pt;}
.y17d{bottom:574.720000pt;}
.y27d{bottom:575.680000pt;}
.y25f{bottom:576.320000pt;}
.y199{bottom:576.370062pt;}
.y15b{bottom:577.606167pt;}
.y6b{bottom:581.120000pt;}
.y48{bottom:581.440000pt;}
.y2f9{bottom:582.666667pt;}
.y1c0{bottom:583.053300pt;}
.ya7{bottom:584.960000pt;}
.y8a{bottom:585.280000pt;}
.y37{bottom:585.600000pt;}
.y15{bottom:586.880000pt;}
.y1c6{bottom:587.830157pt;}
.y2d4{bottom:589.440000pt;}
.y27c{bottom:592.320000pt;}
.y29f{bottom:592.960000pt;}
.y19a{bottom:593.803353pt;}
.y249{bottom:594.560000pt;}
.y2bf{bottom:595.200000pt;}
.y307{bottom:596.160000pt;}
.y1c1{bottom:599.785691pt;}
.y15c{bottom:600.551053pt;}
.y115{bottom:601.333333pt;}
.y25e{bottom:601.600000pt;}
.ydc{bottom:604.480000pt;}
.y36{bottom:605.120000pt;}
.y6a{bottom:606.400000pt;}
.yd2{bottom:606.720000pt;}
.y27b{bottom:609.280000pt;}
.y29e{bottom:609.920000pt;}
.ya6{bottom:610.240000pt;}
.y89{bottom:610.560000pt;}
.y14{bottom:612.160000pt;}
.y17c{bottom:613.440000pt;}
.y2f5{bottom:614.666667pt;}
.y2d3{bottom:614.720000pt;}
.y47{bottom:619.840000pt;}
.y2be{bottom:620.480000pt;}
.y15d{bottom:623.495940pt;}
.y35{bottom:624.320000pt;}
.y203{bottom:625.333333pt;}
.yc5{bottom:625.600000pt;}
.y25d{bottom:626.880000pt;}
.ydb{bottom:627.520000pt;}
.y114{bottom:629.333333pt;}
.y69{bottom:631.680000pt;}
.yd1{bottom:632.000000pt;}
.ya5{bottom:635.520000pt;}
.y88{bottom:635.840000pt;}
.y13{bottom:637.440000pt;}
.y17b{bottom:638.720000pt;}
.y2d2{bottom:640.000000pt;}
.y27a{bottom:640.640000pt;}
.y29d{bottom:641.280000pt;}
.y34{bottom:643.840000pt;}
.y46{bottom:645.120000pt;}
.y2bd{bottom:645.760000pt;}
.y15e{bottom:646.440827pt;}
.yc4{bottom:650.880000pt;}
.y25c{bottom:652.160000pt;}
.y112{bottom:656.000000pt;}
.y68{bottom:656.960000pt;}
.yd0{bottom:657.280000pt;}
.y279{bottom:657.600000pt;}
.y29c{bottom:658.240000pt;}
.y14b{bottom:660.175733pt;}
.ya4{bottom:660.800000pt;}
.ye6{bottom:660.973467pt;}
.y87{bottom:661.120000pt;}
.y2f1{bottom:662.666667pt;}
.y12{bottom:662.720000pt;}
.y17a{bottom:664.000000pt;}
.y202{bottom:666.240000pt;}
.y45{bottom:670.400000pt;}
.y2bc{bottom:671.040000pt;}
.y33{bottom:671.360000pt;}
.y278{bottom:674.560000pt;}
.y29b{bottom:675.200000pt;}
.yc3{bottom:675.840000pt;}
.y155{bottom:676.542157pt;}
.y25b{bottom:677.440000pt;}
.y18a{bottom:679.320400pt;}
.y201{bottom:680.000000pt;}
.y13b{bottom:681.091733pt;}
.y2d1{bottom:681.280000pt;}
.ycf{bottom:682.560000pt;}
.y110{bottom:684.000000pt;}
.y11{bottom:688.000000pt;}
.y179{bottom:689.280000pt;}
.y32{bottom:690.560000pt;}
.y1ea{bottom:690.933600pt;}
.y277{bottom:691.520000pt;}
.y200{bottom:693.760000pt;}
.y44{bottom:695.680000pt;}
.y2bb{bottom:696.320000pt;}
.y67{bottom:698.240000pt;}
.ya3{bottom:699.200000pt;}
.y156{bottom:699.477821pt;}
.y323{bottom:699.520000pt;}
.y86{bottom:699.840000pt;}
.y25a{bottom:702.720000pt;}
.y29a{bottom:706.560000pt;}
.yce{bottom:707.840000pt;}
.y276{bottom:708.160000pt;}
.y10e{bottom:710.666667pt;}
.yc2{bottom:714.560000pt;}
.y322{bottom:717.120000pt;}
.y31{bottom:718.080000pt;}
.y43{bottom:720.960000pt;}
.y157{bottom:722.422708pt;}
.y2d0{bottom:722.560000pt;}
.y66{bottom:723.520000pt;}
.y10{bottom:724.480000pt;}
.y178{bottom:728.000000pt;}
.ye0{bottom:731.164400pt;}
.ycd{bottom:733.120000pt;}
.y30{bottom:737.280000pt;}
.y2ba{bottom:737.600000pt;}
.ya2{bottom:737.920000pt;}
.y10c{bottom:738.666667pt;}
.y275{bottom:739.840000pt;}
.y299{bottom:740.480000pt;}
.y85{bottom:744.000000pt;}
.y321{bottom:745.280000pt;}
.y158{bottom:745.367595pt;}
.y248{bottom:746.560000pt;}
.y2cf{bottom:747.840000pt;}
.y65{bottom:748.800000pt;}
.yc1{bottom:753.280000pt;}
.y274{bottom:756.800000pt;}
.y298{bottom:757.440000pt;}
.ycc{bottom:758.400000pt;}
.y42{bottom:759.680000pt;}
.ya1{bottom:763.520000pt;}
.y2f{bottom:764.800000pt;}
.y10a{bottom:765.333333pt;}
.y159{bottom:768.303259pt;}
.yf{bottom:770.880000pt;}
.y247{bottom:771.840000pt;}
.y2ce{bottom:773.120000pt;}
.y64{bottom:774.080000pt;}
.y2ef{bottom:776.000000pt;}
.yc0{bottom:778.560000pt;}
.y2b9{bottom:778.880000pt;}
.y2e7{bottom:781.760000pt;}
.y14d{bottom:782.038267pt;}
.ycb{bottom:783.680000pt;}
.y2e{bottom:784.320000pt;}
.y41{bottom:784.960000pt;}
.y18c{bottom:787.662800pt;}
.y273{bottom:788.160000pt;}
.ya0{bottom:788.800000pt;}
.y84{bottom:789.120000pt;}
.ye{bottom:789.440000pt;}
.y12c{bottom:792.000000pt;}
.y106{bottom:793.333333pt;}
.y246{bottom:797.120000pt;}
.y2cd{bottom:798.720000pt;}
.y63{bottom:799.360000pt;}
.y138{bottom:802.963467pt;}
.y2d{bottom:803.520000pt;}
.ybf{bottom:803.840000pt;}
.y2b8{bottom:804.160000pt;}
.y272{bottom:805.120000pt;}
.y297{bottom:805.760000pt;}
.yd{bottom:808.000000pt;}
.yca{bottom:808.960000pt;}
.y40{bottom:810.240000pt;}
.y9f{bottom:814.080000pt;}
.y83{bottom:814.720000pt;}
.y12b{bottom:817.280000pt;}
.y271{bottom:822.080000pt;}
.y245{bottom:822.400000pt;}
.y2c{bottom:823.040000pt;}
.y2cc{bottom:824.000000pt;}
.y62{bottom:824.640000pt;}
.yc{bottom:826.560000pt;}
.ybe{bottom:829.120000pt;}
.y2b7{bottom:829.440000pt;}
.y2e6{bottom:830.080000pt;}
.y3f{bottom:835.520000pt;}
.y104{bottom:836.000000pt;}
.y296{bottom:837.120000pt;}
.y270{bottom:838.720000pt;}
.y9e{bottom:839.680000pt;}
.y82{bottom:840.000000pt;}
.y2b{bottom:842.240000pt;}
.y12a{bottom:842.560000pt;}
.yb{bottom:845.120000pt;}
.y2e5{bottom:847.040000pt;}
.yc9{bottom:847.680000pt;}
.y61{bottom:849.920000pt;}
.y295{bottom:854.080000pt;}
.y177{bottom:854.400000pt;}
.y2b6{bottom:854.720000pt;}
.y1d6{bottom:855.954000pt;}
.y3e{bottom:860.800000pt;}
.y2a{bottom:861.760000pt;}
.ya{bottom:863.680000pt;}
.y102{bottom:864.000000pt;}
.y81{bottom:865.280000pt;}
.ybd{bottom:867.840000pt;}
.y26f{bottom:870.080000pt;}
.y2ec{bottom:872.000000pt;}
.yc8{bottom:872.960000pt;}
.y60{bottom:875.200000pt;}
.y9d{bottom:875.840000pt;}
.y2e4{bottom:878.400000pt;}
.y176{bottom:879.680000pt;}
.y2b5{bottom:880.000000pt;}
.y29{bottom:881.280000pt;}
.y9{bottom:882.240000pt;}
.y294{bottom:885.440000pt;}
.y3d{bottom:886.080000pt;}
.y26e{bottom:887.040000pt;}
.y80{bottom:890.560000pt;}
.y100{bottom:890.666667pt;}
.y129{bottom:893.120000pt;}
.y2e3{bottom:895.360000pt;}
.y190{bottom:895.997733pt;}
.yc7{bottom:898.240000pt;}
.y9c{bottom:898.560000pt;}
.y28{bottom:900.480000pt;}
.y8{bottom:900.800000pt;}
.y293{bottom:902.400000pt;}
.y14f{bottom:903.909867pt;}
.y2eb{bottom:904.000000pt;}
.y2b4{bottom:905.280000pt;}
.ybc{bottom:906.560000pt;}
.y3c{bottom:911.680000pt;}
.y2e2{bottom:912.320000pt;}
.y7f{bottom:915.840000pt;}
.yfa{bottom:917.333333pt;}
.y128{bottom:918.400000pt;}
.y26d{bottom:918.720000pt;}
.y7{bottom:919.360000pt;}
.y27{bottom:920.000000pt;}
.y9b{bottom:920.640000pt;}
.yc6{bottom:923.520000pt;}
.y135{bottom:924.835067pt;}
.ybb{bottom:931.840000pt;}
.y26c{bottom:935.680000pt;}
.y2ea{bottom:936.000000pt;}
.y3b{bottom:936.960000pt;}
.y6{bottom:937.920000pt;}
.y26{bottom:939.520000pt;}
.y7e{bottom:941.120000pt;}
.y5f{bottom:941.760000pt;}
.y9a{bottom:943.360000pt;}
.y127{bottom:943.680000pt;}
.y2b3{bottom:946.880000pt;}
.y244{bottom:948.800000pt;}
.y292{bottom:950.720000pt;}
.y26b{bottom:952.320000pt;}
.y5d{bottom:953.280000pt;}
.y5{bottom:956.480000pt;}
.yba{bottom:957.120000pt;}
.y99{bottom:960.000000pt;}
.y2e1{bottom:960.640000pt;}
.y3a{bottom:962.240000pt;}
.y7d{bottom:966.400000pt;}
.y25{bottom:966.720000pt;}
.y291{bottom:967.680000pt;}
.y2e8{bottom:968.000000pt;}
.y126{bottom:968.960000pt;}
.y243{bottom:974.080000pt;}
.y2e0{bottom:977.600000pt;}
.y5c{bottom:982.400000pt;}
.y98{bottom:982.720000pt;}
.y5e{bottom:983.360000pt;}
.y26a{bottom:984.000000pt;}
.y24{bottom:986.240000pt;}
.y39{bottom:987.200000pt;}
.yf9{bottom:988.160000pt;}
.y2b2{bottom:991.040000pt;}
.y7c{bottom:991.680000pt;}
.y4{bottom:992.320000pt;}
.y125{bottom:994.240000pt;}
.y2df{bottom:994.560000pt;}
.y290{bottom:999.360000pt;}
.y269{bottom:1000.960000pt;}
.y192{bottom:1004.340133pt;}
.y1c7{bottom:1007.474000pt;}
.y5b{bottom:1007.680000pt;}
.yf8{bottom:1011.200000pt;}
.y23{bottom:1013.440000pt;}
.y3{bottom:1015.680000pt;}
.y28f{bottom:1016.320000pt;}
.y151{bottom:1025.781600pt;}
.y38{bottom:1029.120000pt;}
.y22{bottom:1032.960000pt;}
.yf7{bottom:1034.240000pt;}
.h1a{height:15.871440pt;}
.h2e{height:18.666667pt;}
.h2f{height:20.000000pt;}
.h13{height:21.333333pt;}
.h21{height:21.929381pt;}
.h12{height:22.666667pt;}
.h19{height:24.202927pt;}
.h22{height:26.315258pt;}
.h16{height:26.666667pt;}
.h1e{height:27.545053pt;}
.h2c{height:28.000000pt;}
.ha{height:28.947787pt;}
.h24{height:29.446867pt;}
.h1d{height:29.580333pt;}
.h1c{height:29.581356pt;}
.h1f{height:30.701134pt;}
.h11{height:30.751875pt;}
.h15{height:30.772500pt;}
.h7{height:30.931250pt;}
.h23{height:31.578315pt;}
.hc{height:31.579404pt;}
.h30{height:34.666667pt;}
.h25{height:36.841367pt;}
.h14{height:37.333333pt;}
.h29{height:38.666667pt;}
.h10{height:39.165000pt;}
.he{height:42.104420pt;}
.hd{height:42.105872pt;}
.h17{height:42.866250pt;}
.h28{height:49.333333pt;}
.h2a{height:50.666667pt;}
.h2{height:52.785000pt;}
.h3{height:54.048750pt;}
.hf{height:57.333333pt;}
.h2d{height:62.666667pt;}
.h2b{height:74.666667pt;}
.h4{height:79.375000pt;}
.h18{height:100.946440pt;}
.h6{height:121.615000pt;}
.h5{height:128.015000pt;}
.h8{height:170.255000pt;}
.h9{height:281.469200pt;}
.hb{height:385.733333pt;}
.h20{height:642.866667pt;}
.h26{height:793.920000pt;}
.h27{height:794.000000pt;}
.h1b{height:796.800000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:41.333333pt;}
.w12{width:48.000000pt;}
.w19{width:54.666667pt;}
.w17{width:70.666667pt;}
.w18{width:72.000000pt;}
.w15{width:74.666667pt;}
.w13{width:82.666667pt;}
.w14{width:85.333333pt;}
.w4{width:86.666667pt;}
.w6{width:98.666667pt;}
.w7{width:121.333333pt;}
.w5{width:124.000000pt;}
.wf{width:124.100053pt;}
.we{width:124.850067pt;}
.wd{width:125.591147pt;}
.w8{width:160.000000pt;}
.w9{width:161.333333pt;}
.w1c{width:177.333333pt;}
.wa{width:243.947067pt;}
.wc{width:266.633333pt;}
.w1a{width:298.666667pt;}
.w1b{width:364.000000pt;}
.wb{width:531.181600pt;}
.w2{width:591.678400pt;}
.w3{width:642.866667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w11{width:1122.000000pt;}
.w10{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x6f{left:1.338208pt;}
.x76{left:2.978773pt;}
.x5e{left:3.964316pt;}
.x29{left:5.309440pt;}
.x26{left:6.660811pt;}
.x71{left:7.677077pt;}
.x33{left:9.048747pt;}
.x7a{left:10.307093pt;}
.x27{left:11.413419pt;}
.x45{left:12.338906pt;}
.x30{left:13.791147pt;}
.x21{left:15.152011pt;}
.x2e{left:16.757227pt;}
.x61{left:18.759207pt;}
.x7d{left:19.718432pt;}
.x1d{left:20.741379pt;}
.x7f{left:21.741867pt;}
.x2a{left:22.788800pt;}
.x24{left:24.082016pt;}
.x2d{left:25.358827pt;}
.x1e{left:27.000401pt;}
.x32{left:29.188800pt;}
.x79{left:31.853227pt;}
.x65{left:33.839775pt;}
.x2f{left:34.781909pt;}
.x3a{left:36.981760pt;}
.x4e{left:37.872557pt;}
.x4d{left:38.981205pt;}
.x5a{left:40.259534pt;}
.x52{left:41.525907pt;}
.x3{left:43.200000pt;}
.x5f{left:44.545304pt;}
.x23{left:46.295330pt;}
.x31{left:47.240245pt;}
.x4b{left:48.512594pt;}
.x4a{left:51.898061pt;}
.x34{left:53.714496pt;}
.x4f{left:58.445798pt;}
.x86{left:60.584533pt;}
.x3b{left:62.122080pt;}
.x8c{left:63.974613pt;}
.x37{left:65.422507pt;}
.x49{left:66.518811pt;}
.x39{left:68.300587pt;}
.x36{left:69.874336pt;}
.x88{left:71.992853pt;}
.x7c{left:73.020587pt;}
.x89{left:74.033813pt;}
.x2{left:75.519872pt;}
.x84{left:78.112213pt;}
.x83{left:82.355125pt;}
.x7e{left:84.002347pt;}
.x4c{left:85.246764pt;}
.x1f{left:89.376327pt;}
.x4{left:99.519872pt;}
.x43{left:102.390785pt;}
.x8b{left:103.298165pt;}
.x80{left:104.853184pt;}
.x41{left:106.974050pt;}
.x7b{left:109.783467pt;}
.x78{left:114.840747pt;}
.x85{left:116.594069pt;}
.x3f{left:117.643791pt;}
.x3e{left:119.257624pt;}
.x17{left:121.828560pt;}
.x5{left:123.519872pt;}
.x59{left:124.739307pt;}
.x47{left:125.697653pt;}
.x81{left:126.666667pt;}
.x42{left:131.366507pt;}
.x8a{left:135.900725pt;}
.x46{left:144.488771pt;}
.x87{left:147.709973pt;}
.x1c{left:151.895109pt;}
.x55{left:161.244925pt;}
.x25{left:162.666667pt;}
.x3d{left:164.546933pt;}
.x22{left:167.841778pt;}
.x6a{left:178.208003pt;}
.x58{left:179.699097pt;}
.x70{left:206.666667pt;}
.x1b{left:209.556680pt;}
.x54{left:234.661180pt;}
.x35{left:236.000000pt;}
.x6d{left:264.896790pt;}
.x18{left:266.602170pt;}
.x1a{left:267.995047pt;}
.x44{left:268.938347pt;}
.x5b{left:274.527200pt;}
.x63{left:279.732667pt;}
.xf{left:285.800128pt;}
.x66{left:290.245381pt;}
.x10{left:294.030592pt;}
.x20{left:305.968829pt;}
.x9{left:307.313472pt;}
.xd{left:309.355808pt;}
.xe{left:318.906560pt;}
.x19{left:323.674446pt;}
.x6{left:325.491200pt;}
.x53{left:328.100051pt;}
.x57{left:329.478106pt;}
.x60{left:333.156732pt;}
.x7{left:336.714880pt;}
.x51{left:337.884421pt;}
.x12{left:346.594880pt;}
.x50{left:352.780472pt;}
.x13{left:357.223680pt;}
.xb{left:373.953280pt;}
.xa{left:378.811840pt;}
.x28{left:384.000000pt;}
.x8{left:397.064320pt;}
.x40{left:413.547467pt;}
.xc{left:414.849280pt;}
.x14{left:418.485440pt;}
.x64{left:419.841867pt;}
.x5c{left:424.306267pt;}
.x6b{left:427.288400pt;}
.x48{left:436.944800pt;}
.x72{left:453.333333pt;}
.x62{left:474.042753pt;}
.x11{left:479.279680pt;}
.x69{left:480.748209pt;}
.x68{left:486.703655pt;}
.x82{left:490.666667pt;}
.x73{left:496.000000pt;}
.x56{left:497.132381pt;}
.x67{left:498.614546pt;}
.x2b{left:508.000000pt;}
.x38{left:557.333333pt;}
.x74{left:566.666667pt;}
.x5d{left:583.022933pt;}
.x6c{left:584.514000pt;}
.x2c{left:605.333333pt;}
.x75{left:638.666667pt;}
.x3c{left:662.552960pt;}
.x8e{left:677.119680pt;}
.x15{left:702.072960pt;}
.x8d{left:703.786560pt;}
.x1{left:710.229760pt;}
.x16{left:718.079680pt;}
.x77{left:765.333333pt;}
.x6e{left:1030.406400pt;}
}




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