
    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_d364f1510538ff01bffda659.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_c65f8d57bd80dfd5e0732aee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fdccf638dda58dbbaec9679f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e6bff2eed7a28a72b5d9517b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_21bf02f411584a40cccb72f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9bd8610420efb6122edb74d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9bd8610420efb6122edb74d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9bd8610420efb6122edb74d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e11fad13fb0eea921d0e0459.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_536f15c3cc4a1086d467bc1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c4a13b20189f31fcd4219b25.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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_3484860c8fc9b1e0dfac070c.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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_d77f2a1c9f41d5e9e704f5c1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1af7a96421e3589b504fb243.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f43169a19e6b0d5ff75411a9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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_7e90c597f0895da9668e6c36.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_792a4d20a3f8b875a1d182b3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.372070;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_e9abbadd48efadfc3c2f7e58.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.861328;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_7af5f91278a4d3f7872733ac.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.402354;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_5eb3ab839fe3bc78f46c1325.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.691406;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_446c16a28c565a2e92de7494.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_cf76f639f53483801c67012b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;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_8cdff2112c39758c9e4519bd.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c95996c7e30950af60ffabe0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893066;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_b5ab8cda6f8c0874722fec11.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.093262;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:ff1d;src:url('chunks/assets/font_5ededd7d57011349d9935096.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.104004;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:ff1e;src:url('chunks/assets/font_a14855debd0026023b3629b1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_1de6018cb56231e6a56a8ac1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_d27bfce9635bee61ba0b66b5.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_393f62c24b395fb3c52a5d1b.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.311035;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);}
.m4{transform:matrix(0.000000,-0.250177,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250177,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250177,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250229,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250229,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250229,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249972,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249972,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249972,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249976,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249976,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249976,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-187.918338px;}
.v1{vertical-align:-93.597652px;}
.v8{vertical-align:-13.356025px;}
.v4{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.600000px;}
.v9{vertical-align:13.356025px;}
.va{vertical-align:17.808033px;}
.v7{vertical-align:20.340000px;}
.v3{vertical-align:33.600000px;}
.v6{vertical-align:43.200000px;}
.lsa8{letter-spacing:-2.832000px;}
.ls52{letter-spacing:-2.400000px;}
.ls99{letter-spacing:-2.214132px;}
.ls9c{letter-spacing:-2.130946px;}
.ls69{letter-spacing:-2.016000px;}
.ls54{letter-spacing:-1.200000px;}
.lsa9{letter-spacing:-1.176000px;}
.ls83{letter-spacing:-1.008000px;}
.ls51{letter-spacing:-0.816000px;}
.ls53{letter-spacing:-0.768000px;}
.ls76{letter-spacing:-0.726000px;}
.ls7b{letter-spacing:-0.684000px;}
.ls75{letter-spacing:-0.600000px;}
.ls7e{letter-spacing:-0.542400px;}
.ls88{letter-spacing:-0.525000px;}
.ls7d{letter-spacing:-0.522000px;}
.ls67{letter-spacing:-0.480000px;}
.ls87{letter-spacing:-0.450000px;}
.ls59{letter-spacing:-0.432000px;}
.ls50{letter-spacing:-0.408000px;}
.ls6b{letter-spacing:-0.384000px;}
.ls77{letter-spacing:-0.379200px;}
.ls31{letter-spacing:-0.371106px;}
.ls9f{letter-spacing:-0.288000px;}
.ls49{letter-spacing:-0.236560px;}
.ls91{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.122359px;}
.ls25{letter-spacing:-0.091026px;}
.ls72{letter-spacing:-0.088875px;}
.ls45{letter-spacing:-0.081572px;}
.ls85{letter-spacing:-0.075000px;}
.ls98{letter-spacing:-0.074200px;}
.ls9b{letter-spacing:-0.074197px;}
.lsb{letter-spacing:-0.065265px;}
.ls44{letter-spacing:-0.057101px;}
.ls1c{letter-spacing:-0.056016px;}
.ls48{letter-spacing:-0.049014px;}
.ls26{letter-spacing:-0.048943px;}
.ls27{letter-spacing:-0.032629px;}
.ls6a{letter-spacing:-0.024000px;}
.ls1b{letter-spacing:-0.016314px;}
.lsd{letter-spacing:-0.014004px;}
.lsa{letter-spacing:-0.008158px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.008157px;}
.ls19{letter-spacing:0.014004px;}
.ls7{letter-spacing:0.023319px;}
.ls4b{letter-spacing:0.024000px;}
.ls37{letter-spacing:0.024472px;}
.lsc{letter-spacing:0.024474px;}
.ls30{letter-spacing:0.032629px;}
.ls21{letter-spacing:0.040786px;}
.ls3{letter-spacing:0.040790px;}
.ls4{letter-spacing:0.048948px;}
.ls33{letter-spacing:0.056016px;}
.ls2b{letter-spacing:0.057101px;}
.ls17{letter-spacing:0.058291px;}
.ls29{letter-spacing:0.065258px;}
.lsf{letter-spacing:0.069949px;}
.ls2a{letter-spacing:0.073415px;}
.ls9a{letter-spacing:0.074197px;}
.ls97{letter-spacing:0.074200px;}
.ls86{letter-spacing:0.075000px;}
.ls2e{letter-spacing:0.081572px;}
.ls18{letter-spacing:0.081608px;}
.ls8{letter-spacing:0.081616px;}
.ls71{letter-spacing:0.088875px;}
.ls1d{letter-spacing:0.089730px;}
.ls9{letter-spacing:0.093275px;}
.ls2d{letter-spacing:0.097887px;}
.lse{letter-spacing:0.104924px;}
.ls0{letter-spacing:0.104934px;}
.ls10{letter-spacing:0.106044px;}
.ls79{letter-spacing:0.110550px;}
.ls3c{letter-spacing:0.112032px;}
.ls12{letter-spacing:0.114201px;}
.ls6{letter-spacing:0.116594px;}
.ls3b{letter-spacing:0.119034px;}
.ls1e{letter-spacing:0.122359px;}
.ls3a{letter-spacing:0.126036px;}
.ls1a{letter-spacing:0.128241px;}
.ls1f{letter-spacing:0.130516px;}
.ls13{letter-spacing:0.138673px;}
.ls22{letter-spacing:0.146830px;}
.ls7c{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.154988px;}
.ls2c{letter-spacing:0.163145px;}
.ls66{letter-spacing:0.168000px;}
.ls2f{letter-spacing:0.179459px;}
.ls2{letter-spacing:0.179478px;}
.ls90{letter-spacing:0.180000px;}
.ls5e{letter-spacing:0.192000px;}
.ls41{letter-spacing:0.196056px;}
.ls47{letter-spacing:0.203058px;}
.ls23{letter-spacing:0.205560px;}
.ls3e{letter-spacing:0.210060px;}
.ls7a{letter-spacing:0.213150px;}
.ls42{letter-spacing:0.224064px;}
.ls39{letter-spacing:0.238068px;}
.ls70{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.252874px;}
.ls35{letter-spacing:0.270000px;}
.ls28{letter-spacing:0.273078px;}
.ls20{letter-spacing:0.277346px;}
.ls61{letter-spacing:0.288000px;}
.ls6f{letter-spacing:0.300000px;}
.lsa1{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.343098px;}
.ls63{letter-spacing:0.348000px;}
.lsa4{letter-spacing:0.360000px;}
.ls65{letter-spacing:0.372000px;}
.ls4c{letter-spacing:0.384000px;}
.ls56{letter-spacing:0.408000px;}
.ls4d{letter-spacing:0.432000px;}
.lsa5{letter-spacing:0.444000px;}
.ls6d{letter-spacing:0.450000px;}
.ls74{letter-spacing:0.504000px;}
.ls78{letter-spacing:0.528000px;}
.ls7f{letter-spacing:0.588000px;}
.ls6e{letter-spacing:0.600000px;}
.ls73{letter-spacing:0.613240px;}
.ls46{letter-spacing:0.630180px;}
.lsaa{letter-spacing:0.816000px;}
.ls5f{letter-spacing:1.140000px;}
.ls57{letter-spacing:1.200000px;}
.lsa2{letter-spacing:1.260000px;}
.ls8b{letter-spacing:1.360420px;}
.ls8e{letter-spacing:1.406658px;}
.ls8a{letter-spacing:1.679436px;}
.ls60{letter-spacing:1.776000px;}
.ls9d{letter-spacing:2.154689px;}
.ls8c{letter-spacing:2.156474px;}
.ls8f{letter-spacing:2.227763px;}
.ls8d{letter-spacing:2.304992px;}
.ls68{letter-spacing:2.400000px;}
.ls5c{letter-spacing:2.460000px;}
.ls9e{letter-spacing:2.540515px;}
.ls5d{letter-spacing:2.760000px;}
.ls5b{letter-spacing:3.600000px;}
.ls64{letter-spacing:3.924000px;}
.ls4f{letter-spacing:4.800000px;}
.ls62{letter-spacing:4.860000px;}
.ls58{letter-spacing:7.200000px;}
.ls80{letter-spacing:8.400000px;}
.ls82{letter-spacing:12.000000px;}
.ls81{letter-spacing:13.140000px;}
.lsa0{letter-spacing:14.460000px;}
.ls94{letter-spacing:16.598868px;}
.ls92{letter-spacing:16.680340px;}
.ls95{letter-spacing:16.798416px;}
.ls4e{letter-spacing:19.200000px;}
.ls89{letter-spacing:22.920000px;}
.lsa3{letter-spacing:36.000000px;}
.ls34{letter-spacing:40.321237px;}
.lsa7{letter-spacing:41.478000px;}
.ls55{letter-spacing:42.618000px;}
.ls36{letter-spacing:47.524080px;}
.ls96{letter-spacing:51.240653px;}
.ls93{letter-spacing:51.242616px;}
.ls5a{letter-spacing:58.008000px;}
.ls3d{letter-spacing:59.371902px;}
.lsa6{letter-spacing:62.784000px;}
.ls4a{letter-spacing:63.228000px;}
.ls38{letter-spacing:82.056438px;}
.ls6c{letter-spacing:125.598000px;}
.ls40{letter-spacing:186.164531px;}
.ls43{letter-spacing:186.246104px;}
.ls84{letter-spacing:302.565000px;}
.ls24{letter-spacing:819.843406px;}
.ls3f{letter-spacing:848.646621px;}
.ls1{letter-spacing:1269.413564px;}
.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;}
}
.ws95{word-spacing:-69.466477px;}
.ws8b{word-spacing:-66.928525px;}
.ws92{word-spacing:-44.666773px;}
.ws86{word-spacing:-44.520083px;}
.ws80{word-spacing:-21.238003px;}
.ws50{word-spacing:-21.000000px;}
.ws3f{word-spacing:-20.645974px;}
.ws99{word-spacing:-19.200000px;}
.ws93{word-spacing:-18.886180px;}
.ws9c{word-spacing:-18.816000px;}
.ws54{word-spacing:-18.432000px;}
.ws57{word-spacing:-18.408000px;}
.ws53{word-spacing:-18.384000px;}
.ws98{word-spacing:-18.360000px;}
.ws40{word-spacing:-18.135180px;}
.ws51{word-spacing:-18.024000px;}
.ws52{word-spacing:-18.000000px;}
.ws5b{word-spacing:-17.976000px;}
.ws41{word-spacing:-17.778078px;}
.ws5c{word-spacing:-17.616000px;}
.ws55{word-spacing:-17.592000px;}
.ws58{word-spacing:-17.568000px;}
.ws5a{word-spacing:-17.232000px;}
.ws65{word-spacing:-17.100000px;}
.ws76{word-spacing:-17.028000px;}
.ws63{word-spacing:-17.004000px;}
.ws62{word-spacing:-16.848000px;}
.ws9b{word-spacing:-16.824000px;}
.ws7e{word-spacing:-16.822578px;}
.ws56{word-spacing:-16.800000px;}
.ws89{word-spacing:-16.769231px;}
.ws85{word-spacing:-16.732131px;}
.ws91{word-spacing:-16.731490px;}
.ws7d{word-spacing:-16.674060px;}
.ws64{word-spacing:-16.500000px;}
.ws66{word-spacing:-15.900000px;}
.ws67{word-spacing:-15.774000px;}
.ws9a{word-spacing:-15.168000px;}
.ws69{word-spacing:-15.037500px;}
.ws68{word-spacing:-15.000000px;}
.ws7f{word-spacing:-14.517586px;}
.ws97{word-spacing:-12.384000px;}
.ws59{word-spacing:-12.000000px;}
.ws81{word-spacing:-11.856000px;}
.ws96{word-spacing:-11.712000px;}
.ws9d{word-spacing:-11.616000px;}
.ws88{word-spacing:-11.167121px;}
.ws94{word-spacing:-11.166693px;}
.ws71{word-spacing:-11.100000px;}
.ws72{word-spacing:-10.416000px;}
.ws8a{word-spacing:-1.006154px;}
.ws87{word-spacing:-0.803142px;}
.ws11{word-spacing:-0.781102px;}
.wsf{word-spacing:-0.477988px;}
.ws44{word-spacing:-0.448128px;}
.ws2{word-spacing:-0.443056px;}
.ws43{word-spacing:-0.420120px;}
.ws21{word-spacing:-0.367076px;}
.ws1c{word-spacing:-0.301818px;}
.wsb{word-spacing:-0.244823px;}
.ws15{word-spacing:-0.187617px;}
.wsc{word-spacing:-0.174874px;}
.ws1{word-spacing:-0.163231px;}
.ws13{word-spacing:-0.163215px;}
.ws14{word-spacing:-0.154988px;}
.ws4{word-spacing:-0.128253px;}
.wsa{word-spacing:-0.128241px;}
.ws10{word-spacing:-0.093266px;}
.wse{word-spacing:-0.070020px;}
.ws3{word-spacing:-0.058297px;}
.ws2d{word-spacing:-0.057101px;}
.ws12{word-spacing:-0.046633px;}
.ws45{word-spacing:-0.040786px;}
.ws46{word-spacing:-0.032629px;}
.ws3c{word-spacing:-0.024472px;}
.ws48{word-spacing:-0.016314px;}
.ws47{word-spacing:-0.008157px;}
.ws0{word-spacing:0.000000px;}
.ws4a{word-spacing:0.007002px;}
.ws4b{word-spacing:0.014004px;}
.ws18{word-spacing:0.016314px;}
.ws8{word-spacing:0.016316px;}
.ws4c{word-spacing:0.021006px;}
.ws16{word-spacing:0.024472px;}
.ws3e{word-spacing:0.065258px;}
.wsd{word-spacing:0.070020px;}
.ws5{word-spacing:0.073423px;}
.ws19{word-spacing:0.081572px;}
.ws3b{word-spacing:0.089730px;}
.ws6{word-spacing:0.097897px;}
.ws9{word-spacing:0.122371px;}
.ws2e{word-spacing:0.154988px;}
.ws42{word-spacing:0.163145px;}
.ws4f{word-spacing:0.182052px;}
.ws1b{word-spacing:0.212088px;}
.ws3d{word-spacing:0.220245px;}
.ws1a{word-spacing:0.261032px;}
.ws7{word-spacing:0.326323px;}
.ws17{word-spacing:0.391548px;}
.ws5e{word-spacing:0.399939px;}
.ws32{word-spacing:0.424176px;}
.ws60{word-spacing:0.548065px;}
.ws5f{word-spacing:1.081317px;}
.ws5d{word-spacing:1.110942px;}
.ws61{word-spacing:1.155379px;}
.ws28{word-spacing:3.687072px;}
.ws27{word-spacing:3.825746px;}
.ws26{word-spacing:3.858375px;}
.ws34{word-spacing:5.636653px;}
.ws33{word-spacing:5.824269px;}
.ws35{word-spacing:5.832427px;}
.ws29{word-spacing:8.622203px;}
.ws31{word-spacing:8.826134px;}
.ws2a{word-spacing:8.972964px;}
.ws30{word-spacing:9.013750px;}
.ws36{word-spacing:10.767557px;}
.ws38{word-spacing:10.947016px;}
.ws37{word-spacing:11.093846px;}
.ws1e{word-spacing:14.544359px;}
.ws1d{word-spacing:14.552516px;}
.ws2b{word-spacing:17.676739px;}
.ws2c{word-spacing:17.725683px;}
.ws39{word-spacing:21.061994px;}
.ws3a{word-spacing:21.184352px;}
.ws1f{word-spacing:25.956338px;}
.ws20{word-spacing:26.274470px;}
.ws6c{word-spacing:28.292400px;}
.ws2f{word-spacing:28.370881px;}
.ws25{word-spacing:30.181788px;}
.ws24{word-spacing:30.279675px;}
.ws23{word-spacing:30.663065px;}
.ws22{word-spacing:30.875153px;}
.ws90{word-spacing:32.209047px;}
.ws8e{word-spacing:32.268404px;}
.ws6f{word-spacing:32.292000px;}
.ws8f{word-spacing:32.654230px;}
.ws8d{word-spacing:32.832304px;}
.ws78{word-spacing:33.630000px;}
.ws77{word-spacing:34.020000px;}
.ws6d{word-spacing:35.789850px;}
.ws6a{word-spacing:44.580000px;}
.ws84{word-spacing:59.100411px;}
.ws83{word-spacing:59.723692px;}
.ws7c{word-spacing:62.792400px;}
.ws8c{word-spacing:63.728058px;}
.ws82{word-spacing:90.561270px;}
.ws6e{word-spacing:96.720000px;}
.ws6b{word-spacing:96.780000px;}
.ws79{word-spacing:121.320000px;}
.ws74{word-spacing:175.170000px;}
.ws73{word-spacing:175.500000px;}
.ws75{word-spacing:175.620000px;}
.ws70{word-spacing:180.900000px;}
.ws49{word-spacing:188.899956px;}
.ws4e{word-spacing:188.927964px;}
.ws4d{word-spacing:188.934966px;}
.ws7a{word-spacing:272.467500px;}
.ws7b{word-spacing:272.737500px;}
._d{margin-left:-189.923670px;}
._5{margin-left:-186.711066px;}
._6{margin-left:-185.430380px;}
._14{margin-left:-176.538988px;}
._48{margin-left:-168.900046px;}
._47{margin-left:-167.652499px;}
._7{margin-left:-164.759934px;}
._49{margin-left:-158.979077px;}
._15{margin-left:-135.671216px;}
._4a{margin-left:-134.304379px;}
._4b{margin-left:-124.560679px;}
._e{margin-left:-99.304635px;}
._12{margin-left:-93.576150px;}
._10{margin-left:-83.552021px;}
._c{margin-left:-80.993236px;}
._4f{margin-left:-65.580360px;}
._13{margin-left:-54.539307px;}
._f{margin-left:-49.534938px;}
._4e{margin-left:-35.282473px;}
._4c{margin-left:-7.704516px;}
._2c{margin-left:-6.211820px;}
._4d{margin-left:-4.810106px;}
._21{margin-left:-3.796533px;}
._1e{margin-left:-2.626076px;}
._0{margin-left:-1.403190px;}
._1{width:1.036076px;}
._18{width:2.057190px;}
._19{width:3.893190px;}
._1a{width:5.073012px;}
._8{width:6.445997px;}
._23{width:7.986000px;}
._20{width:9.201790px;}
._4{width:10.759400px;}
._1f{width:12.466961px;}
._1d{width:13.824000px;}
._25{width:14.883191px;}
._1c{width:16.883190px;}
._52{width:18.090810px;}
._22{width:19.205393px;}
._1b{width:20.250607px;}
._27{width:21.852303px;}
._24{width:23.426127px;}
._29{width:25.027924px;}
._2a{width:26.083342px;}
._51{width:27.720000px;}
._2b{width:29.376000px;}
._26{width:30.534000px;}
._28{width:32.190303px;}
._50{width:33.346658px;}
._53{width:35.179924px;}
._54{width:36.358608px;}
._3e{width:39.812227px;}
._3d{width:41.328000px;}
._56{width:42.336000px;}
._58{width:43.559036px;}
._57{width:44.652000px;}
._35{width:48.542400px;}
._34{width:50.400000px;}
._37{width:51.698163px;}
._2f{width:52.920000px;}
._39{width:53.928000px;}
._33{width:55.205190px;}
._55{width:56.587924px;}
._2e{width:57.960000px;}
._16{width:60.127016px;}
._2d{width:62.880000px;}
._32{width:66.300000px;}
._31{width:67.800000px;}
._36{width:69.883590px;}
._3a{width:74.088473px;}
._38{width:75.777668px;}
._30{width:77.820000px;}
._41{width:83.042400px;}
._40{width:84.780000px;}
._3f{width:89.645190px;}
._44{width:91.838400px;}
._43{width:93.598800px;}
._42{width:104.016476px;}
._17{width:128.550000px;}
._11{width:141.249924px;}
._2{width:155.248592px;}
._b{width:168.818975px;}
._3{width:180.429992px;}
._9{width:188.997984px;}
._a{width:190.090296px;}
._46{width:194.550000px;}
._3c{width:205.500000px;}
._3b{width:210.900000px;}
._45{width:331.176000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:42.000000px;}
.fs17{font-size:44.400000px;}
.fs30{font-size:44.518378px;}
.fs27{font-size:44.520083px;}
.fs1a{font-size:44.550000px;}
.fs2f{font-size:44.666773px;}
.fs28{font-size:44.668484px;}
.fsb{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs20{font-size:57.921827px;}
.fs1e{font-size:58.070344px;}
.fsa{font-size:60.000000px;}
.fs11{font-size:60.150000px;}
.fs14{font-size:62.400000px;}
.fs2a{font-size:62.474124px;}
.fs22{font-size:62.476517px;}
.fs15{font-size:62.550000px;}
.fs2b{font-size:62.622518px;}
.fs23{font-size:62.624917px;}
.fs12{font-size:63.600000px;}
.fs1b{font-size:63.750000px;}
.fs9{font-size:66.000000px;}
.fs19{font-size:66.150000px;}
.fs2e{font-size:66.925962px;}
.fs26{font-size:66.928525px;}
.fs29{font-size:67.076926px;}
.fs2{font-size:70.020000px;}
.fs25{font-size:71.380534px;}
.fs2c{font-size:71.385908px;}
.fs24{font-size:71.387375px;}
.fs2d{font-size:71.526194px;}
.fs6{font-size:72.000000px;}
.fs18{font-size:72.150000px;}
.fs16{font-size:74.400000px;}
.fsd{font-size:74.833036px;}
.fse{font-size:75.010786px;}
.fs13{font-size:75.600000px;}
.fs5{font-size:81.572400px;}
.fs0{font-size:81.580800px;}
.fs7{font-size:84.000000px;}
.fs1c{font-size:84.150000px;}
.fs1d{font-size:84.803495px;}
.fs1f{font-size:84.874314px;}
.fs21{font-size:84.952012px;}
.fsf{font-size:88.102100px;}
.fs10{font-size:88.342087px;}
.fs3{font-size:116.582400px;}
.fs1{font-size:116.593800px;}
.fs38{font-size:117.000000px;}
.fs32{font-size:126.000000px;}
.fs4{font-size:140.040000px;}
.fs31{font-size:140.400000px;}
.fs33{font-size:156.000000px;}
.fs37{font-size:161.400000px;}
.fs35{font-size:166.800000px;}
.fs36{font-size:168.000000px;}
.fs34{font-size:289.200600px;}
.y257{bottom:-6.315000px;}
.y25d{bottom:-6.018000px;}
.y1e7{bottom:-4.215000px;}
.y0{bottom:0.000000px;}
.y1e3{bottom:1.785000px;}
.y238{bottom:4.200000px;}
.y2bf{bottom:5.385000px;}
.y2be{bottom:5.685000px;}
.y2c4{bottom:5.985000px;}
.y190{bottom:6.000000px;}
.y2e4{bottom:6.270000px;}
.y2c2{bottom:6.285000px;}
.y2f5{bottom:6.289500px;}
.y2f0{bottom:6.315000px;}
.y2cf{bottom:6.570000px;}
.y2f7{bottom:6.582000px;}
.y2c1{bottom:6.585000px;}
.y2cb{bottom:6.615000px;}
.y16a{bottom:7.320000px;}
.y28d{bottom:9.905339px;}
.y278{bottom:10.165419px;}
.y1af{bottom:10.500000px;}
.y1bd{bottom:10.530000px;}
.y1de{bottom:12.285000px;}
.y1e4{bottom:13.470000px;}
.y1e0{bottom:13.485000px;}
.y137{bottom:13.507200px;}
.y1ec{bottom:13.785000px;}
.y1fa{bottom:15.375000px;}
.y23e{bottom:17.070000px;}
.y25b{bottom:17.074500px;}
.y25f{bottom:17.082000px;}
.y241{bottom:17.085000px;}
.y24e{bottom:17.115000px;}
.y262{bottom:17.119500px;}
.y253{bottom:17.130000px;}
.y23c{bottom:17.385000px;}
.y1d1{bottom:19.050000px;}
.y1dc{bottom:19.515000px;}
.y1da{bottom:20.385000px;}
.y219{bottom:20.685000px;}
.y154{bottom:20.985000px;}
.y75{bottom:23.700000px;}
.y19f{bottom:24.270000px;}
.y14e{bottom:24.570000px;}
.y149{bottom:24.585000px;}
.y147{bottom:24.630000px;}
.y143{bottom:24.885000px;}
.y237{bottom:24.900000px;}
.y1a5{bottom:25.170000px;}
.y15b{bottom:25.174500px;}
.y127{bottom:25.185000px;}
.y1c5{bottom:25.215000px;}
.y13c{bottom:25.230000px;}
.y14c{bottom:26.385000px;}
.y14f{bottom:26.415000px;}
.y148{bottom:26.430000px;}
.y178{bottom:27.105000px;}
.y138{bottom:27.729106px;}
.y216{bottom:29.820000px;}
.y28e{bottom:31.088667px;}
.y2bb{bottom:31.230000px;}
.y279{bottom:32.017360px;}
.y18e{bottom:33.600000px;}
.y1ad{bottom:34.920000px;}
.y1bb{bottom:34.950000px;}
.y125{bottom:36.285000px;}
.y168{bottom:37.725000px;}
.y328{bottom:38.430000px;}
.y1e2{bottom:43.185000px;}
.y1cf{bottom:43.470000px;}
.y74{bottom:44.400000px;}
.y23b{bottom:44.985000px;}
.y321{bottom:45.885000px;}
.y31c{bottom:45.930000px;}
.y145{bottom:46.185000px;}
.y1f8{bottom:47.205000px;}
.y19d{bottom:47.850000px;}
.y176{bottom:47.955000px;}
.y222{bottom:48.066205px;}
.y261{bottom:48.618000px;}
.y183{bottom:51.225000px;}
.y1a8{bottom:52.545000px;}
.y1b6{bottom:52.575000px;}
.y15d{bottom:55.350000px;}
.y28b{bottom:57.614201px;}
.y264{bottom:58.200000px;}
.y276{bottom:59.768212px;}
.y1c9{bottom:61.095000px;}
.y1d9{bottom:61.785000px;}
.y1d6{bottom:61.815000px;}
.y1fc{bottom:62.385000px;}
.y1f2{bottom:64.830000px;}
.y193{bottom:66.075000px;}
.y1a4{bottom:66.315000px;}
.y135{bottom:66.389878px;}
.y16d{bottom:66.480000px;}
.y214{bottom:66.525000px;}
.y2b9{bottom:66.570000px;}
.y15a{bottom:66.589500px;}
.y17d{bottom:66.615000px;}
.y184{bottom:72.075000px;}
.y325{bottom:74.115000px;}
.y260{bottom:76.255500px;}
.y15e{bottom:78.225000px;}
.y263{bottom:78.937500px;}
.y223{bottom:79.811822px;}
.y280{bottom:80.578264px;}
.y26b{bottom:82.733155px;}
.y209{bottom:85.020000px;}
.y320{bottom:87.285000px;}
.y31b{bottom:87.330000px;}
.y194{bottom:89.955000px;}
.y185{bottom:92.895000px;}
.y12f{bottom:94.252297px;}
.y327{bottom:94.830000px;}
.y16e{bottom:96.270000px;}
.y15f{bottom:101.100000px;}
.y1f3{bottom:103.080000px;}
.y1d8{bottom:103.185000px;}
.y25e{bottom:103.855500px;}
.y18f{bottom:104.655000px;}
.y1ca{bottom:104.730000px;}
.y1a3{bottom:107.715000px;}
.y17c{bottom:107.730000px;}
.y21b{bottom:108.015000px;}
.y159{bottom:108.019500px;}
.y281{bottom:110.108788px;}
.y13{bottom:110.634690px;}
.y14{bottom:110.639942px;}
.y2f8{bottom:111.037500px;}
.y26c{bottom:111.893810px;}
.y186{bottom:113.745000px;}
.y195{bottom:113.805000px;}
.y1f0{bottom:114.937500px;}
.y169{bottom:116.775000px;}
.y32f{bottom:117.037500px;}
.y20a{bottom:117.675000px;}
.y1f9{bottom:117.750000px;}
.y1d0{bottom:119.325000px;}
.yd9{bottom:119.737500px;}
.y110{bottom:120.037500px;}
.ya6{bottom:123.337500px;}
.y160{bottom:123.930000px;}
.y16f{bottom:126.045000px;}
.y234{bottom:126.891870px;}
.y331{bottom:127.237500px;}
.y2b7{bottom:127.537500px;}
.y2f6{bottom:128.155500px;}
.y269{bottom:128.437500px;}
.y319{bottom:128.685000px;}
.y1a9{bottom:128.895000px;}
.y1b7{bottom:128.925000px;}
.yde{bottom:129.337500px;}
.y12{bottom:130.800450px;}
.y25c{bottom:131.455500px;}
.ybd{bottom:133.837500px;}
.y310{bottom:134.437500px;}
.y187{bottom:134.550000px;}
.y1a6{bottom:134.737500px;}
.y25a{bottom:135.955500px;}
.y1c7{bottom:137.437500px;}
.y196{bottom:137.700000px;}
.y155{bottom:138.655500px;}
.y282{bottom:139.639312px;}
.y11f{bottom:140.737500px;}
.y26d{bottom:141.054464px;}
.y1f4{bottom:141.330000px;}
.y151{bottom:143.137500px;}
.y2f4{bottom:145.255500px;}
.y130{bottom:145.533368px;}
.y161{bottom:146.805000px;}
.yea{bottom:147.637500px;}
.y233{bottom:148.092744px;}
.y1cb{bottom:148.395000px;}
.y158{bottom:149.419500px;}
.y20b{bottom:150.330000px;}
.y1ae{bottom:150.645000px;}
.y1bc{bottom:150.675000px;}
.y1a2{bottom:150.960000px;}
.yf8{bottom:151.545000px;}
.y19e{bottom:154.200000px;}
.y188{bottom:155.400000px;}
.y170{bottom:155.820000px;}
.y1ef{bottom:156.330000px;}
.y27e{bottom:157.938264px;}
.y32e{bottom:158.430000px;}
.yd8{bottom:161.130000px;}
.y293{bottom:161.298659px;}
.y10f{bottom:161.430000px;}
.y197{bottom:161.580000px;}
.y2f3{bottom:162.060000px;}
.y259{bottom:163.560000px;}
.ya5{bottom:164.745000px;}
.y123{bottom:165.045000px;}
.y13a{bottom:166.596823px;}
.y181{bottom:167.130000px;}
.y232{bottom:168.032704px;}
.ydd{bottom:168.630000px;}
.y2b6{bottom:168.930000px;}
.y177{bottom:169.125000px;}
.y283{bottom:169.134222px;}
.y162{bottom:169.680000px;}
.y268{bottom:169.830000px;}
.y26e{bottom:170.180987px;}
.y215{bottom:172.800000px;}
.ye3{bottom:172.830000px;}
.y70{bottom:174.451866px;}
.ybc{bottom:175.245000px;}
.y30f{bottom:175.830000px;}
.y189{bottom:176.205000px;}
.y150{bottom:176.430000px;}
.y27d{bottom:176.933500px;}
.y12d{bottom:177.630000px;}
.y1c6{bottom:178.830000px;}
.y2f2{bottom:179.160000px;}
.y1f5{bottom:179.580000px;}
.y292{bottom:180.263488px;}
.y35{bottom:181.467783px;}
.y8b{bottom:182.130000px;}
.y20c{bottom:183.000000px;}
.y198{bottom:185.430000px;}
.y171{bottom:185.580000px;}
.y267{bottom:186.360000px;}
.y231{bottom:188.528120px;}
.ye9{bottom:189.045000px;}
.y14d{bottom:189.060000px;}
.y157{bottom:190.819500px;}
.y258{bottom:191.190000px;}
.y1cc{bottom:192.030000px;}
.y163{bottom:192.555000px;}
.yf7{bottom:192.945000px;}
.y27c{bottom:194.771213px;}
.y57{bottom:194.848787px;}
.y1c4{bottom:195.060000px;}
.y2f1{bottom:196.260000px;}
.y131{bottom:196.775556px;}
.y18a{bottom:197.070000px;}
.y6f{bottom:198.032407px;}
.y1ee{bottom:198.045000px;}
.y291{bottom:198.145037px;}
.y284{bottom:198.664746px;}
.y26f{bottom:199.341642px;}
.y32d{bottom:199.830000px;}
.y139{bottom:200.200959px;}
.yd7{bottom:202.545000px;}
.y10e{bottom:202.830000px;}
.y1b4{bottom:203.700000px;}
.ydc{bottom:204.330000px;}
.y34{bottom:204.958595px;}
.y1aa{bottom:205.245000px;}
.y1b8{bottom:205.275000px;}
.ya4{bottom:205.830000px;}
.y1c2{bottom:207.705000px;}
.y230{bottom:208.459169px;}
.y180{bottom:208.545000px;}
.y199{bottom:209.325000px;}
.y2b5{bottom:210.045000px;}
.ye2{bottom:212.130000px;}
.y122{bottom:213.330000px;}
.y2ef{bottom:213.360000px;}
.y27b{bottom:213.736769px;}
.y172{bottom:215.355000px;}
.y164{bottom:215.400000px;}
.y20d{bottom:215.655000px;}
.ybb{bottom:216.675000px;}
.y30e{bottom:216.975000px;}
.y290{bottom:217.095027px;}
.y1f6{bottom:217.800000px;}
.y11{bottom:217.828831px;}
.y18b{bottom:217.875000px;}
.y256{bottom:218.790000px;}
.y12c{bottom:219.075000px;}
.y6e{bottom:221.431450px;}
.y255{bottom:222.990000px;}
.y8a{bottom:223.575000px;}
.y22f{bottom:224.647577px;}
.y266{bottom:227.790000px;}
.y285{bottom:228.195270px;}
.y33{bottom:228.449407px;}
.y270{bottom:228.502296px;}
.y2ee{bottom:230.190000px;}
.ye8{bottom:230.475000px;}
.y14b{bottom:230.490000px;}
.y156{bottom:231.964500px;}
.y19a{bottom:233.175000px;}
.yf6{bottom:234.375000px;}
.y1cd{bottom:235.680000px;}
.y165{bottom:238.275000px;}
.y18c{bottom:238.695000px;}
.y1ed{bottom:239.475000px;}
.y1fe{bottom:240.675000px;}
.y32c{bottom:241.275000px;}
.y56{bottom:241.834489px;}
.yd6{bottom:243.975000px;}
.y10d{bottom:244.275000px;}
.y22e{bottom:244.994475px;}
.y173{bottom:245.145000px;}
.y2ed{bottom:247.290000px;}
.ya3{bottom:247.575000px;}
.y132{bottom:248.045517px;}
.y20e{bottom:248.325000px;}
.y28f{bottom:249.313072px;}
.y27f{bottom:249.683730px;}
.y17f{bottom:249.975000px;}
.y254{bottom:250.590000px;}
.y2b4{bottom:251.475000px;}
.y32{bottom:251.940219px;}
.ye1{bottom:252.075000px;}
.y1f7{bottom:256.050000px;}
.y1fd{bottom:256.890000px;}
.y19b{bottom:257.055000px;}
.y1eb{bottom:257.190000px;}
.y271{bottom:257.662951px;}
.y286{bottom:257.725794px;}
.yba{bottom:258.075000px;}
.y30d{bottom:258.375000px;}
.y18d{bottom:259.530000px;}
.y12b{bottom:260.475000px;}
.y166{bottom:261.150000px;}
.y224{bottom:261.375955px;}
.y121{bottom:261.675000px;}
.y2ec{bottom:264.390000px;}
.y10{bottom:264.898913px;}
.y22d{bottom:264.940376px;}
.y89{bottom:264.975000px;}
.y17e{bottom:266.190000px;}
.ye7{bottom:271.875000px;}
.y14a{bottom:271.890000px;}
.y174{bottom:274.920000px;}
.y1a1{bottom:275.190000px;}
.y31{bottom:275.339262px;}
.yf5{bottom:275.775000px;}
.y1c1{bottom:276.705000px;}
.y1b3{bottom:277.380000px;}
.y1c3{bottom:277.890000px;}
.y252{bottom:278.190000px;}
.yca{bottom:278.775000px;}
.y1ce{bottom:279.345000px;}
.y19c{bottom:280.920000px;}
.y20f{bottom:280.995000px;}
.y2eb{bottom:281.490000px;}
.y1ab{bottom:281.580000px;}
.y1b9{bottom:281.625000px;}
.y32b{bottom:282.675000px;}
.y167{bottom:283.980000px;}
.yd5{bottom:285.375000px;}
.y22c{bottom:285.435791px;}
.y10c{bottom:285.675000px;}
.y272{bottom:286.779086px;}
.y1ea{bottom:287.190000px;}
.y287{bottom:287.256318px;}
.yf{bottom:288.298326px;}
.y191{bottom:288.330000px;}
.y55{bottom:288.820192px;}
.ya2{bottom:288.975000px;}
.y6d{bottom:291.901847px;}
.y2b3{bottom:292.875000px;}
.y1be{bottom:295.800000px;}
.y1b5{bottom:296.100000px;}
.y1b2{bottom:296.295000px;}
.y1c0{bottom:296.820000px;}
.y1fb{bottom:298.290000px;}
.y30{bottom:298.648575px;}
.y1c8{bottom:299.100000px;}
.y133{bottom:299.333994px;}
.yb9{bottom:299.475000px;}
.y30c{bottom:299.775000px;}
.y207{bottom:300.375000px;}
.y1d2{bottom:301.470000px;}
.y220{bottom:301.575000px;}
.y12a{bottom:301.875000px;}
.ye0{bottom:303.075000px;}
.y175{bottom:304.695000px;}
.y22b{bottom:305.366840px;}
.y251{bottom:305.835000px;}
.y88{bottom:306.375000px;}
.y17b{bottom:307.590000px;}
.y16b{bottom:307.725000px;}
.y120{bottom:309.975000px;}
.ye{bottom:311.879256px;}
.ye6{bottom:313.275000px;}
.y210{bottom:313.650000px;}
.y144{bottom:314.790000px;}
.y2ea{bottom:315.390000px;}
.y1b1{bottom:315.495000px;}
.y273{bottom:315.939740px;}
.y288{bottom:316.786842px;}
.y1e9{bottom:316.890000px;}
.yf4{bottom:317.175000px;}
.y1bf{bottom:317.250000px;}
.yc9{bottom:320.175000px;}
.y2f{bottom:322.139387px;}
.y32a{bottom:324.075000px;}
.y22a{bottom:325.713738px;}
.yd4{bottom:326.775000px;}
.y10b{bottom:327.075000px;}
.ya1{bottom:330.375000px;}
.y2e9{bottom:332.490000px;}
.y250{bottom:333.435000px;}
.y2b2{bottom:334.275000px;}
.yd{bottom:335.368408px;}
.y54{bottom:335.703929px;}
.y6c{bottom:338.881431px;}
.yb8{bottom:340.875000px;}
.y324{bottom:340.890000px;}
.y30b{bottom:341.175000px;}
.y206{bottom:341.775000px;}
.y21f{bottom:342.975000px;}
.y129{bottom:343.275000px;}
.y17a{bottom:344.160000px;}
.y274{bottom:345.100395px;}
.y2e{bottom:345.538430px;}
.y229{bottom:345.808157px;}
.y289{bottom:346.272848px;}
.y211{bottom:346.320000px;}
.y1e8{bottom:346.590000px;}
.y87{bottom:347.775000px;}
.y2e8{bottom:349.590000px;}
.y134{bottom:350.622471px;}
.y11b{bottom:354.675000px;}
.y146{bottom:357.690000px;}
.y1ac{bottom:357.945000px;}
.y1ba{bottom:357.975000px;}
.ye5{bottom:358.275000px;}
.yf3{bottom:358.575000px;}
.y24f{bottom:361.035000px;}
.yc8{bottom:361.575000px;}
.y228{bottom:361.877750px;}
.y2e7{bottom:366.435000px;}
.yd3{bottom:367.920000px;}
.y153{bottom:368.145000px;}
.y236{bottom:368.160041px;}
.y10a{bottom:368.505000px;}
.y2d{bottom:369.118971px;}
.ya0{bottom:371.820000px;}
.y275{bottom:374.261050px;}
.y28c{bottom:374.335189px;}
.y2b1{bottom:375.705000px;}
.y28a{bottom:375.803372px;}
.y1e6{bottom:376.335000px;}
.y212{bottom:378.975000px;}
.yb7{bottom:382.320000px;}
.y329{bottom:382.335000px;}
.yc{bottom:382.348751px;}
.y227{bottom:382.373166px;}
.y30a{bottom:382.620000px;}
.y53{bottom:382.771204px;}
.y45{bottom:382.799802px;}
.y205{bottom:383.205000px;}
.y2e6{bottom:383.535000px;}
.y21e{bottom:384.420000px;}
.y128{bottom:384.705000px;}
.y6b{bottom:385.861016px;}
.y152{bottom:387.135000px;}
.y1e5{bottom:388.335000px;}
.y24d{bottom:388.635000px;}
.y86{bottom:389.205000px;}
.y2c{bottom:392.609783px;}
.y11a{bottom:396.120000px;}
.yf2{bottom:400.005000px;}
.y2e5{bottom:400.635000px;}
.y126{bottom:400.935000px;}
.y142{bottom:401.235000px;}
.y226{bottom:401.606183px;}
.y235{bottom:402.794323px;}
.yc7{bottom:403.005000px;}
.y16c{bottom:408.300000px;}
.yd2{bottom:409.620000px;}
.y109{bottom:409.920000px;}
.y213{bottom:411.675000px;}
.y9f{bottom:412.920000px;}
.y217{bottom:413.745000px;}
.y2b{bottom:416.008826px;}
.y24c{bottom:416.265000px;}
.y2b0{bottom:417.120000px;}
.y2e3{bottom:417.735000px;}
.y1e1{bottom:418.035000px;}
.y225{bottom:422.665965px;}
.yb6{bottom:423.720000px;}
.y326{bottom:423.735000px;}
.y309{bottom:424.005000px;}
.y204{bottom:424.620000px;}
.y21d{bottom:425.820000px;}
.yb{bottom:429.239356px;}
.y52{bottom:429.654940px;}
.y44{bottom:429.689657px;}
.y85{bottom:430.620000px;}
.y179{bottom:431.835000px;}
.y6a{bottom:432.840600px;}
.y2e2{bottom:434.535000px;}
.y119{bottom:437.505000px;}
.y2a{bottom:439.499638px;}
.yf1{bottom:441.405000px;}
.y124{bottom:442.335000px;}
.y24b{bottom:443.865000px;}
.yc6{bottom:444.405000px;}
.y295{bottom:446.595000px;}
.y1df{bottom:447.735000px;}
.y29c{bottom:448.755000px;}
.yd1{bottom:451.005000px;}
.y108{bottom:451.320000px;}
.y2e1{bottom:451.635000px;}
.y192{bottom:452.700000px;}
.y9e{bottom:454.320000px;}
.y2af{bottom:458.505000px;}
.y29{bottom:462.990450px;}
.yb5{bottom:465.120000px;}
.y308{bottom:465.405000px;}
.y203{bottom:466.005000px;}
.y21c{bottom:467.220000px;}
.y29b{bottom:467.655000px;}
.y141{bottom:467.820000px;}
.y2e0{bottom:468.735000px;}
.y24a{bottom:471.465000px;}
.y84{bottom:472.005000px;}
.y69{bottom:476.041881px;}
.y43{bottom:476.400053px;}
.y51{bottom:476.640643px;}
.y1dd{bottom:477.435000px;}
.y118{bottom:478.905000px;}
.y323{bottom:480.135000px;}
.yf0{bottom:482.820000px;}
.y21a{bottom:483.435000px;}
.yc5{bottom:485.820000px;}
.y2df{bottom:485.835000px;}
.y28{bottom:488.461095px;}
.yd0{bottom:492.120000px;}
.y107{bottom:492.720000px;}
.y249{bottom:499.065000px;}
.y9d{bottom:499.620000px;}
.ya{bottom:499.708851px;}
.y2ae{bottom:499.905000px;}
.y2de{bottom:502.935000px;}
.y29f{bottom:504.360000px;}
.yb4{bottom:506.505000px;}
.y307{bottom:506.820000px;}
.y202{bottom:507.405000px;}
.y1db{bottom:507.435000px;}
.y140{bottom:509.220000px;}
.y83{bottom:513.405000px;}
.y68{bottom:516.361147px;}
.y2dd{bottom:519.765000px;}
.y117{bottom:520.350000px;}
.y318{bottom:521.565000px;}
.y27{bottom:521.940646px;}
.y9{bottom:523.289781px;}
.y50{bottom:523.626345px;}
.y42{bottom:523.650866px;}
.y248{bottom:526.710000px;}
.yc4{bottom:527.250000px;}
.y29e{bottom:531.360000px;}
.y9c{bottom:533.850000px;}
.y106{bottom:534.150000px;}
.y2dc{bottom:536.865000px;}
.y29a{bottom:537.855000px;}
.yef{bottom:538.950000px;}
.y2ad{bottom:541.350000px;}
.y8{bottom:542.369490px;}
.y1d7{bottom:544.665000px;}
.y11e{bottom:546.750000px;}
.yb3{bottom:547.950000px;}
.y306{bottom:548.250000px;}
.y201{bottom:548.850000px;}
.y13f{bottom:550.650000px;}
.y2db{bottom:553.965000px;}
.y247{bottom:554.310000px;}
.y82{bottom:554.850000px;}
.y26{bottom:555.510548px;}
.y67{bottom:556.591138px;}
.y116{bottom:561.750000px;}
.y322{bottom:562.965000px;}
.y9b{bottom:564.750000px;}
.y200{bottom:565.065000px;}
.y105{bottom:567.450000px;}
.yc3{bottom:568.650000px;}
.y4f{bottom:570.612048px;}
.y59{bottom:570.632441px;}
.y41{bottom:570.634480px;}
.y2da{bottom:571.065000px;}
.ycf{bottom:575.250000px;}
.y299{bottom:575.649000px;}
.y246{bottom:581.910000px;}
.y11d{bottom:582.450000px;}
.y2ac{bottom:582.750000px;}
.y2d9{bottom:587.865000px;}
.y25{bottom:589.080450px;}
.yb2{bottom:589.350000px;}
.y305{bottom:589.650000px;}
.y13e{bottom:592.050000px;}
.y29d{bottom:593.487000px;}
.yee{bottom:593.550000px;}
.y9a{bottom:595.950000px;}
.y81{bottom:596.250000px;}
.y66{bottom:596.821129px;}
.y104{bottom:603.150000px;}
.y31f{bottom:604.365000px;}
.y2d8{bottom:604.965000px;}
.y1ff{bottom:606.465000px;}
.y218{bottom:607.665000px;}
.y13d{bottom:608.265000px;}
.y245{bottom:609.510000px;}
.yc2{bottom:610.050000px;}
.y11c{bottom:615.750000px;}
.yce{bottom:616.650000px;}
.y58{bottom:617.342836px;}
.y4e{bottom:617.597750px;}
.y40{bottom:617.614065px;}
.y24{bottom:620.668430px;}
.y2d7{bottom:622.065000px;}
.y2ab{bottom:624.150000px;}
.y99{bottom:626.850000px;}
.y208{bottom:627.300000px;}
.y221{bottom:628.350000px;}
.yb1{bottom:630.750000px;}
.y304{bottom:631.050000px;}
.yed{bottom:636.150000px;}
.y103{bottom:636.450000px;}
.y244{bottom:637.140000px;}
.y80{bottom:637.650000px;}
.y2d6{bottom:639.165000px;}
.y65{bottom:640.830771px;}
.y23{bottom:644.248971px;}
.y115{bottom:644.550000px;}
.y31a{bottom:645.765000px;}
.y13b{bottom:649.650000px;}
.yc1{bottom:651.450000px;}
.y2d5{bottom:655.965000px;}
.y98{bottom:658.050000px;}
.y1d5{bottom:664.065000px;}
.y4d{bottom:664.583452px;}
.y3f{bottom:664.593649px;}
.y243{bottom:664.740000px;}
.y2aa{bottom:665.595000px;}
.yb0{bottom:665.880000px;}
.y265{bottom:665.910000px;}
.y22{bottom:667.648014px;}
.y102{bottom:672.195000px;}
.y303{bottom:672.495000px;}
.y2d4{bottom:673.110000px;}
.y1a0{bottom:678.510000px;}
.y7f{bottom:679.095000px;}
.y64{bottom:684.031360px;}
.y114{bottom:685.995000px;}
.y31e{bottom:687.210000px;}
.y27a{bottom:687.356314px;}
.y26a{bottom:687.727614px;}
.y97{bottom:688.995000px;}
.y2d3{bottom:690.210000px;}
.y21{bottom:691.138826px;}
.y242{bottom:692.340000px;}
.yc0{bottom:692.595000px;}
.ye4{bottom:692.880000px;}
.ydf{bottom:695.595000px;}
.y12e{bottom:697.039828px;}
.yaf{bottom:697.095000px;}
.y1b0{bottom:699.000000px;}
.y1a7{bottom:699.300000px;}
.ycd{bottom:699.495000px;}
.y2a9{bottom:706.995000px;}
.y2d2{bottom:707.310000px;}
.y4c{bottom:711.467189px;}
.y3e{bottom:711.483504px;}
.y101{bottom:713.595000px;}
.y302{bottom:713.880000px;}
.y20{bottom:714.629638px;}
.y240{bottom:719.940000px;}
.y96{bottom:720.195000px;}
.y7e{bottom:720.495000px;}
.y2d1{bottom:724.110000px;}
.y63{bottom:724.261351px;}
.y113{bottom:727.380000px;}
.y31d{bottom:728.610000px;}
.yae{bottom:734.280000px;}
.y1f{bottom:738.120450px;}
.ycc{bottom:740.595000px;}
.y2d0{bottom:741.210000px;}
.y1d4{bottom:742.110000px;}
.y100{bottom:746.880000px;}
.y23f{bottom:747.585000px;}
.y2a8{bottom:748.380000px;}
.y95{bottom:751.095000px;}
.y301{bottom:755.280000px;}
.y15c{bottom:755.400000px;}
.y2ce{bottom:758.310000px;}
.y4b{bottom:758.534464px;}
.y3d{bottom:758.552818px;}
.y7d{bottom:761.880000px;}
.y62{bottom:764.580618px;}
.y1e{bottom:764.850459px;}
.ydb{bottom:765.495000px;}
.y112{bottom:768.795000px;}
.y317{bottom:770.010000px;}
.y2cd{bottom:775.410000px;}
.yad{bottom:775.695000px;}
.y182{bottom:775.800000px;}
.y23a{bottom:776.685000px;}
.ycb{bottom:778.080000px;}
.y94{bottom:782.295000px;}
.yff{bottom:782.580000px;}
.y1d3{bottom:783.510000px;}
.y2a7{bottom:789.795000px;}
.y2cc{bottom:792.210000px;}
.y300{bottom:796.695000px;}
.y7c{bottom:803.295000px;}
.y1f1{bottom:804.300000px;}
.y61{bottom:804.810609px;}
.y23d{bottom:804.885000px;}
.y1d{bottom:805.080450px;}
.y4a{bottom:805.418201px;}
.y3c{bottom:805.442673px;}
.y2ca{bottom:809.310000px;}
.y277{bottom:810.157844px;}
.y111{bottom:810.195000px;}
.y314{bottom:811.410000px;}
.y93{bottom:813.195000px;}
.yda{bottom:813.825000px;}
.yfe{bottom:815.925000px;}
.yac{bottom:817.125000px;}
.y2c9{bottom:826.440000px;}
.y2a6{bottom:831.225000px;}
.y2ff{bottom:838.125000px;}
.y2c8{bottom:843.540000px;}
.y1c{bottom:844.051838px;}
.y92{bottom:844.425000px;}
.y7b{bottom:844.725000px;}
.y60{bottom:845.040600px;}
.yfd{bottom:851.625000px;}
.y49{bottom:852.403903px;}
.y3b{bottom:852.422257px;}
.y316{bottom:852.840000px;}
.yab{bottom:858.225000px;}
.ybf{bottom:858.525000px;}
.y239{bottom:859.170000px;}
.y2c7{bottom:860.340000px;}
.y136{bottom:870.346739px;}
.y2a5{bottom:872.625000px;}
.y2c6{bottom:877.440000px;}
.y1b{bottom:877.531389px;}
.y2fe{bottom:879.525000px;}
.y298{bottom:880.200000px;}
.y297{bottom:882.900000px;}
.y91{bottom:885.825000px;}
.y7a{bottom:886.125000px;}
.y5f{bottom:889.139707px;}
.yfc{bottom:893.025000px;}
.y315{bottom:894.240000px;}
.y2c5{bottom:894.540000px;}
.y48{bottom:899.389606px;}
.y3a{bottom:899.401842px;}
.ybe{bottom:899.625000px;}
.yaa{bottom:899.925000px;}
.y7{bottom:905.789520px;}
.y1a{bottom:911.191642px;}
.y2c3{bottom:911.640000px;}
.y2a4{bottom:914.025000px;}
.yec{bottom:919.425000px;}
.y2fd{bottom:920.925000px;}
.y294{bottom:925.560000px;}
.y79{bottom:927.525000px;}
.y2c0{bottom:928.440000px;}
.y6{bottom:929.370450px;}
.y90{bottom:931.125000px;}
.y5e{bottom:932.340459px;}
.yfb{bottom:934.425000px;}
.y313{bottom:935.640000px;}
.ya9{bottom:941.325000px;}
.y19{bottom:944.671193px;}
.y2bd{bottom:945.540000px;}
.y47{bottom:946.375308px;}
.y39{bottom:946.381426px;}
.y5{bottom:954.750001px;}
.y8f{bottom:955.125000px;}
.y2a3{bottom:955.425000px;}
.y2fc{bottom:962.325000px;}
.y2ba{bottom:962.640000px;}
.y296{bottom:967.155000px;}
.y78{bottom:968.955000px;}
.y5d{bottom:972.570450px;}
.yfa{bottom:975.870000px;}
.y312{bottom:977.085000px;}
.y18{bottom:978.241095px;}
.y8e{bottom:979.455000px;}
.ya8{bottom:982.755000px;}
.y4{bottom:988.229910px;}
.yeb{bottom:988.455000px;}
.y2bc{bottom:990.885000px;}
.y38{bottom:993.361011px;}
.y2a2{bottom:996.870000px;}
.y332{bottom:1003.455000px;}
.y2fb{bottom:1003.755000px;}
.y17{bottom:1011.810997px;}
.y77{bottom:1013.955000px;}
.y5c{bottom:1016.579783px;}
.yf9{bottom:1017.255000px;}
.y73{bottom:1019.370450px;}
.y2b8{bottom:1019.385000px;}
.y3{bottom:1021.890540px;}
.y8d{bottom:1024.170000px;}
.y330{bottom:1037.955000px;}
.y2a1{bottom:1038.255000px;}
.y5b{bottom:1040.070595px;}
.y72{bottom:1040.076713px;}
.y37{bottom:1040.340595px;}
.y46{bottom:1040.346713px;}
.y2fa{bottom:1045.170000px;}
.y16{bottom:1045.380899px;}
.y2{bottom:1055.370450px;}
.y311{bottom:1061.385000px;}
.y76{bottom:1062.255000px;}
.y5a{bottom:1063.561407px;}
.y71{bottom:1063.569564px;}
.ya7{bottom:1065.255000px;}
.y8c{bottom:1065.570000px;}
.y15{bottom:1078.860450px;}
.y2a0{bottom:1083.255000px;}
.y2f9{bottom:1086.570000px;}
.y1{bottom:1086.960450px;}
.y36{bottom:1087.230450px;}
.h67{height:4.185000px;}
.h69{height:4.482000px;}
.h4f{height:11.985000px;}
.h88{height:16.185000px;}
.h8e{height:16.770000px;}
.h92{height:16.782000px;}
.h8b{height:16.785000px;}
.h90{height:16.807500px;}
.h91{height:16.822500px;}
.h8f{height:17.070000px;}
.h93{height:17.082000px;}
.h8a{height:17.085000px;}
.h8d{height:17.122500px;}
.h63{height:27.570000px;}
.h68{height:27.582000px;}
.h64{height:27.585000px;}
.h66{height:27.607500px;}
.h6a{height:27.619500px;}
.h65{height:27.622500px;}
.h4b{height:28.470000px;}
.h4e{height:29.670000px;}
.h4c{height:29.685000px;}
.h50{height:29.722500px;}
.h52{height:29.985000px;}
.h49{height:35.707500px;}
.h1c{height:41.370000px;}
.h28{height:41.385000px;}
.h2c{height:41.407500px;}
.h2b{height:41.422500px;}
.h42{height:45.729492px;}
.h8c{height:47.085938px;}
.h17{height:47.109375px;}
.h89{height:48.375000px;}
.h7c{height:51.196135px;}
.h25{height:51.972805px;}
.h22{height:51.992073px;}
.h72{height:52.311098px;}
.h13{height:52.998047px;}
.h62{height:55.770000px;}
.h87{height:55.822500px;}
.h98{height:56.385000px;}
.h5e{height:56.847105px;}
.h5c{height:56.992867px;}
.h15{height:58.886719px;}
.h31{height:59.033936px;}
.h4d{height:59.370000px;}
.h51{height:59.385000px;}
.h38{height:61.242188px;}
.h78{height:61.314936px;}
.h6e{height:61.317285px;}
.h39{height:61.389404px;}
.h79{height:61.460577px;}
.h6f{height:61.462932px;}
.h32{height:62.419922px;}
.h57{height:62.567139px;}
.h99{height:63.175781px;}
.h2a{height:64.775391px;}
.h41{height:64.922607px;}
.h7f{height:65.684171px;}
.h75{height:65.686688px;}
.h76{height:65.832334px;}
.h14{height:66.515625px;}
.h3{height:68.720801px;}
.hc{height:70.567031px;}
.h4a{height:70.628906px;}
.he{height:70.664062px;}
.h73{height:71.938194px;}
.h7b{height:71.943610px;}
.h71{height:71.945088px;}
.h7d{height:72.084992px;}
.h11{height:72.562500px;}
.h40{height:72.713672px;}
.ha{height:73.028672px;}
.h1e{height:73.444532px;}
.h1f{height:73.618985px;}
.h2f{height:74.004654px;}
.h9a{height:74.953125px;}
.h3a{height:74.981250px;}
.h33{height:76.190625px;}
.h47{height:78.022500px;}
.h8{height:80.058850px;}
.h94{height:80.649375px;}
.h1a{height:80.685937px;}
.h16{height:80.709375px;}
.h19{height:80.745937px;}
.h9b{height:80.769375px;}
.hb{height:82.208400px;}
.h7{height:82.209684px;}
.h1{height:82.218150px;}
.h12{height:82.400391px;}
.h18{height:82.441406px;}
.h44{height:82.807500px;}
.h5f{height:83.229992px;}
.h60{height:83.375754px;}
.h86{height:83.385000px;}
.h29{height:84.322500px;}
.hf{height:84.656250px;}
.h58{height:84.807422px;}
.h9{height:85.077464px;}
.h5b{height:85.466022px;}
.h5d{height:85.537395px;}
.h10{height:87.445312px;}
.h21{height:88.790397px;}
.h23{height:89.032260px;}
.h20{height:110.649797px;}
.h4{height:114.419250px;}
.h5{height:117.493200px;}
.h2{height:117.504689px;}
.h48{height:119.385000px;}
.h85{height:122.027344px;}
.h96{height:124.185000px;}
.h3d{height:124.207500px;}
.h35{height:124.222500px;}
.h97{height:139.222500px;}
.h6{height:141.134062px;}
.h80{height:146.432812px;}
.h81{height:162.703125px;}
.h83{height:173.967188px;}
.h84{height:175.218750px;}
.h7a{height:179.186472px;}
.h70{height:179.193336px;}
.h26{height:183.971952px;}
.h24{height:217.966769px;}
.h95{height:248.430000px;}
.h2e{height:248.457000px;}
.h53{height:277.500000px;}
.h82{height:283.834573px;}
.h46{height:298.245000px;}
.h37{height:302.400000px;}
.h36{height:306.000000px;}
.h45{height:320.400000px;}
.h30{height:326.400000px;}
.h43{height:341.460000px;}
.h1d{height:377.275815px;}
.h3e{height:382.500000px;}
.h3f{height:382.800000px;}
.h3b{height:403.245000px;}
.h3c{height:403.290000px;}
.h6d{height:414.036776px;}
.h74{height:414.779077px;}
.h77{height:415.133875px;}
.h7e{height:415.875520px;}
.h1b{height:418.605000px;}
.h27{height:432.105000px;}
.h6b{height:436.845000px;}
.h6c{height:438.105000px;}
.h5a{height:453.364533px;}
.h56{height:454.500000px;}
.h59{height:474.090000px;}
.h55{height:475.305000px;}
.h54{height:528.135000px;}
.h34{height:649.935000px;}
.h2d{height:694.635000px;}
.h61{height:918.000000px;}
.hd{height:1188.000000px;}
.h0{height:1263.000000px;}
.w5d{width:12.022500px;}
.w8{width:39.299576px;}
.w63{width:40.207500px;}
.w56{width:40.470000px;}
.w5b{width:40.507500px;}
.w58{width:40.785000px;}
.w14{width:45.907500px;}
.w44{width:48.007500px;}
.w18{width:48.607500px;}
.w10{width:49.182000px;}
.w55{width:51.270000px;}
.w5a{width:51.285000px;}
.w57{width:51.307500px;}
.w59{width:51.322500px;}
.w40{width:53.107500px;}
.w43{width:57.022500px;}
.w35{width:60.307500px;}
.w3c{width:61.522500px;}
.w13{width:62.070000px;}
.w1b{width:62.707500px;}
.w3a{width:63.022500px;}
.w12{width:63.322500px;}
.w3f{width:63.885000px;}
.w17{width:64.170000px;}
.w36{width:64.485000px;}
.w25{width:64.522500px;}
.w39{width:65.670000px;}
.w33{width:65.722500px;}
.w38{width:66.570000px;}
.w16{width:67.222500px;}
.w1a{width:67.485000px;}
.w34{width:68.385000px;}
.w3b{width:70.185000px;}
.w41{width:70.785000px;}
.w42{width:71.670000px;}
.w26{width:74.370000px;}
.w37{width:74.422500px;}
.w60{width:74.685000px;}
.w32{width:75.885000px;}
.wc{width:76.519500px;}
.w7{width:77.933057px;}
.w3d{width:80.070000px;}
.w62{width:80.085000px;}
.w54{width:81.285000px;}
.w11{width:81.907500px;}
.w15{width:84.285000px;}
.w28{width:84.922500px;}
.w29{width:85.207500px;}
.w27{width:85.222500px;}
.w19{width:88.822500px;}
.w3e{width:91.222500px;}
.w50{width:91.770000px;}
.w53{width:91.822500px;}
.w51{width:92.107500px;}
.w61{width:95.707500px;}
.w52{width:102.622500px;}
.w4b{width:104.630073px;}
.w47{width:104.632223px;}
.w31{width:111.922500px;}
.w5f{width:117.019500px;}
.w30{width:127.519500px;}
.w5{width:130.554523px;}
.w24{width:135.019500px;}
.w2a{width:150.030000px;}
.w64{width:160.230000px;}
.w4c{width:175.867569px;}
.w48{width:175.871183px;}
.w5c{width:190.227000px;}
.w4f{width:202.257000px;}
.w6{width:224.473848px;}
.wd{width:256.557000px;}
.we{width:261.645000px;}
.wf{width:267.675000px;}
.w2e{width:514.127641px;}
.w20{width:514.200000px;}
.w4a{width:523.150364px;}
.w4d{width:523.892421px;}
.w46{width:524.274221px;}
.w49{width:525.016294px;}
.w21{width:540.000000px;}
.w22{width:540.300000px;}
.w1e{width:546.300000px;}
.w1d{width:547.500000px;}
.w2b{width:552.300000px;}
.w23{width:585.000000px;}
.w4{width:654.104803px;}
.w3{width:656.607000px;}
.w2d{width:667.500000px;}
.w2c{width:667.707000px;}
.w1f{width:673.707000px;}
.w1c{width:679.200000px;}
.wa{width:679.407000px;}
.w9{width:679.425000px;}
.w45{width:699.507000px;}
.w5e{width:727.407000px;}
.w4e{width:764.607000px;}
.wb{width:862.482000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:918.000000px;}
.w2f{width:1188.000000px;}
.x0{left:0.000000px;}
.xbf{left:4.200000px;}
.x95{left:5.400000px;}
.x42{left:8.100000px;}
.x59{left:9.285000px;}
.x57{left:10.500000px;}
.x3e{left:11.508633px;}
.x55{left:12.900000px;}
.x3c{left:13.950979px;}
.x58{left:15.000000px;}
.x56{left:16.485000px;}
.x4d{left:18.600000px;}
.x49{left:20.100000px;}
.x4a{left:21.930000px;}
.x3a{left:23.224495px;}
.x52{left:25.200000px;}
.x92{left:26.560319px;}
.x41{left:27.900000px;}
.x6e{left:29.445000px;}
.x85{left:30.945000px;}
.x83{left:32.700000px;}
.xa4{left:33.915000px;}
.x80{left:35.392500px;}
.x6d{left:36.945000px;}
.x75{left:38.250000px;}
.x63{left:39.825000px;}
.x91{left:41.205000px;}
.x89{left:42.345000px;}
.x35{left:44.092500px;}
.x61{left:45.225000px;}
.x74{left:46.575000px;}
.xc0{left:47.700000px;}
.x66{left:50.175000px;}
.x8b{left:51.450000px;}
.x73{left:54.075000px;}
.x6b{left:55.537500px;}
.x60{left:57.075000px;}
.x7c{left:58.200000px;}
.xa8{left:59.401683px;}
.x6f{left:60.975000px;}
.x38{left:62.479664px;}
.x7b{left:65.700000px;}
.x8f{left:68.370000px;}
.x8a{left:73.920000px;}
.x88{left:75.000000px;}
.x37{left:76.112399px;}
.x67{left:78.195000px;}
.x71{left:80.400000px;}
.x62{left:84.975000px;}
.x8c{left:90.420000px;}
.x39{left:92.720355px;}
.x46{left:100.830000px;}
.x44{left:102.037500px;}
.x43{left:104.437500px;}
.x90{left:108.495000px;}
.x5c{left:109.620000px;}
.x78{left:113.145000px;}
.x48{left:116.430000px;}
.x33{left:119.437500px;}
.x5b{left:120.870000px;}
.x1{left:124.200000px;}
.x20{left:127.537500px;}
.x17{left:128.608205px;}
.x36{left:134.977040px;}
.x5{left:142.107000px;}
.x40{left:146.737500px;}
.x21{left:148.837500px;}
.x15{left:153.540726px;}
.x1e{left:155.160000px;}
.x23{left:159.645000px;}
.x7a{left:163.500000px;}
.x10{left:168.031227px;}
.x7e{left:170.925000px;}
.x70{left:176.325000px;}
.x22{left:180.675000px;}
.x18{left:183.418740px;}
.x5f{left:185.100000px;}
.x77{left:186.300000px;}
.x76{left:189.675000px;}
.x2{left:191.160000px;}
.x1b{left:192.687917px;}
.x6c{left:198.900000px;}
.x4{left:200.966521px;}
.xbb{left:201.975000px;}
.x12{left:204.120000px;}
.x5e{left:205.620000px;}
.xa5{left:208.038104px;}
.x2a{left:210.375000px;}
.x14{left:214.740657px;}
.xa1{left:223.245000px;}
.xe{left:229.680000px;}
.x4b{left:235.575000px;}
.x7d{left:237.570000px;}
.x11{left:242.638884px;}
.x27{left:253.275000px;}
.x81{left:254.475000px;}
.x3{left:267.389242px;}
.x13{left:270.539908px;}
.xba{left:275.175000px;}
.xa2{left:276.375000px;}
.x68{left:278.295000px;}
.x64{left:281.925000px;}
.xb2{left:287.220000px;}
.x16{left:291.239099px;}
.xa7{left:292.346882px;}
.xaa{left:295.531722px;}
.x4c{left:298.920000px;}
.x19{left:310.047655px;}
.xf{left:311.850190px;}
.xab{left:317.085000px;}
.x82{left:319.020000px;}
.x1d{left:321.570000px;}
.x9{left:328.051111px;}
.x3b{left:336.803674px;}
.xac{left:338.145000px;}
.x3f{left:339.412500px;}
.x96{left:347.175000px;}
.xbc{left:351.120000px;}
.x5d{left:358.800000px;}
.x45{left:361.020000px;}
.x65{left:364.695000px;}
.x2c{left:375.120000px;}
.x72{left:376.125000px;}
.x8{left:379.080882px;}
.x29{left:381.405000px;}
.x94{left:382.905000px;}
.xad{left:385.995000px;}
.x30{left:388.320000px;}
.xa6{left:390.587939px;}
.x2f{left:391.620000px;}
.x84{left:393.405000px;}
.x31{left:402.150000px;}
.x4e{left:406.950000px;}
.xa9{left:409.506626px;}
.x97{left:412.905000px;}
.xae{left:420.585000px;}
.x2b{left:421.650000px;}
.xb5{left:430.350000px;}
.x6{left:446.490000px;}
.x24{left:458.850000px;}
.xb3{left:471.150000px;}
.x32{left:475.050000px;}
.xb1{left:476.550000px;}
.x34{left:477.757500px;}
.x98{left:481.320000px;}
.x4f{left:491.250000px;}
.xb6{left:522.495000px;}
.xb0{left:531.795000px;}
.x99{left:541.650000px;}
.x2d{left:549.195000px;}
.x50{left:558.495000px;}
.x86{left:563.595000px;}
.xb{left:574.471107px;}
.x69{left:593.887500px;}
.x6a{left:606.787500px;}
.xbd{left:611.895000px;}
.x5a{left:613.387500px;}
.xaf{left:614.394000px;}
.x7f{left:615.787500px;}
.x47{left:622.695000px;}
.xb7{left:625.095000px;}
.x79{left:629.317500px;}
.x87{left:648.825000px;}
.xbe{left:652.125000px;}
.xb4{left:665.625000px;}
.x51{left:671.325000px;}
.x9a{left:680.595000px;}
.x8d{left:683.632500px;}
.x8e{left:702.232500px;}
.x3d{left:703.821746px;}
.xb8{left:716.925000px;}
.x1c{left:745.380000px;}
.x9b{left:747.195000px;}
.x1a{left:750.240000px;}
.x25{left:751.470000px;}
.xd{left:754.110000px;}
.xc{left:759.060000px;}
.x53{left:760.155000px;}
.xa{left:768.780927px;}
.x7{left:769.948988px;}
.x2e{left:772.455000px;}
.x1f{left:781.455000px;}
.x26{left:790.170000px;}
.x28{left:791.670000px;}
.xb9{left:809.070000px;}
.x9c{left:812.880000px;}
.xa3{left:818.880000px;}
.x54{left:827.670000px;}
.x9d{left:875.925000px;}
.x9e{left:946.125000px;}
.x9f{left:1007.670000px;}
.x93{left:1064.070000px;}
.xa0{left:1087.755000px;}
@media print{
.v2{vertical-align:-167.038523pt;}
.v1{vertical-align:-83.197913pt;}
.v8{vertical-align:-11.872022pt;}
.v4{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.533333pt;}
.v9{vertical-align:11.872022pt;}
.va{vertical-align:15.829363pt;}
.v7{vertical-align:18.080000pt;}
.v3{vertical-align:29.866667pt;}
.v6{vertical-align:38.400000pt;}
.lsa8{letter-spacing:-2.517333pt;}
.ls52{letter-spacing:-2.133333pt;}
.ls99{letter-spacing:-1.968117pt;}
.ls9c{letter-spacing:-1.894175pt;}
.ls69{letter-spacing:-1.792000pt;}
.ls54{letter-spacing:-1.066667pt;}
.lsa9{letter-spacing:-1.045333pt;}
.ls83{letter-spacing:-0.896000pt;}
.ls51{letter-spacing:-0.725333pt;}
.ls53{letter-spacing:-0.682667pt;}
.ls76{letter-spacing:-0.645333pt;}
.ls7b{letter-spacing:-0.608000pt;}
.ls75{letter-spacing:-0.533333pt;}
.ls7e{letter-spacing:-0.482133pt;}
.ls88{letter-spacing:-0.466667pt;}
.ls7d{letter-spacing:-0.464000pt;}
.ls67{letter-spacing:-0.426667pt;}
.ls87{letter-spacing:-0.400000pt;}
.ls59{letter-spacing:-0.384000pt;}
.ls50{letter-spacing:-0.362667pt;}
.ls6b{letter-spacing:-0.341333pt;}
.ls77{letter-spacing:-0.337067pt;}
.ls31{letter-spacing:-0.329872pt;}
.ls9f{letter-spacing:-0.256000pt;}
.ls49{letter-spacing:-0.210276pt;}
.ls91{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.108763pt;}
.ls25{letter-spacing:-0.080912pt;}
.ls72{letter-spacing:-0.079000pt;}
.ls45{letter-spacing:-0.072509pt;}
.ls85{letter-spacing:-0.066667pt;}
.ls98{letter-spacing:-0.065956pt;}
.ls9b{letter-spacing:-0.065953pt;}
.lsb{letter-spacing:-0.058013pt;}
.ls44{letter-spacing:-0.050756pt;}
.ls1c{letter-spacing:-0.049792pt;}
.ls48{letter-spacing:-0.043568pt;}
.ls26{letter-spacing:-0.043505pt;}
.ls27{letter-spacing:-0.029004pt;}
.ls6a{letter-spacing:-0.021333pt;}
.ls1b{letter-spacing:-0.014502pt;}
.lsd{letter-spacing:-0.012448pt;}
.lsa{letter-spacing:-0.007252pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.007251pt;}
.ls19{letter-spacing:0.012448pt;}
.ls7{letter-spacing:0.020728pt;}
.ls4b{letter-spacing:0.021333pt;}
.ls37{letter-spacing:0.021753pt;}
.lsc{letter-spacing:0.021755pt;}
.ls30{letter-spacing:0.029004pt;}
.ls21{letter-spacing:0.036254pt;}
.ls3{letter-spacing:0.036258pt;}
.ls4{letter-spacing:0.043510pt;}
.ls33{letter-spacing:0.049792pt;}
.ls2b{letter-spacing:0.050756pt;}
.ls17{letter-spacing:0.051814pt;}
.ls29{letter-spacing:0.058007pt;}
.lsf{letter-spacing:0.062177pt;}
.ls2a{letter-spacing:0.065258pt;}
.ls9a{letter-spacing:0.065953pt;}
.ls97{letter-spacing:0.065956pt;}
.ls86{letter-spacing:0.066667pt;}
.ls2e{letter-spacing:0.072509pt;}
.ls18{letter-spacing:0.072540pt;}
.ls8{letter-spacing:0.072547pt;}
.ls71{letter-spacing:0.079000pt;}
.ls1d{letter-spacing:0.079760pt;}
.ls9{letter-spacing:0.082911pt;}
.ls2d{letter-spacing:0.087011pt;}
.lse{letter-spacing:0.093266pt;}
.ls0{letter-spacing:0.093275pt;}
.ls10{letter-spacing:0.094261pt;}
.ls79{letter-spacing:0.098267pt;}
.ls3c{letter-spacing:0.099584pt;}
.ls12{letter-spacing:0.101512pt;}
.ls6{letter-spacing:0.103639pt;}
.ls3b{letter-spacing:0.105808pt;}
.ls1e{letter-spacing:0.108763pt;}
.ls3a{letter-spacing:0.112032pt;}
.ls1a{letter-spacing:0.113992pt;}
.ls1f{letter-spacing:0.116014pt;}
.ls13{letter-spacing:0.123265pt;}
.ls22{letter-spacing:0.130516pt;}
.ls7c{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.137767pt;}
.ls2c{letter-spacing:0.145018pt;}
.ls66{letter-spacing:0.149333pt;}
.ls2f{letter-spacing:0.159519pt;}
.ls2{letter-spacing:0.159536pt;}
.ls90{letter-spacing:0.160000pt;}
.ls5e{letter-spacing:0.170667pt;}
.ls41{letter-spacing:0.174272pt;}
.ls47{letter-spacing:0.180496pt;}
.ls23{letter-spacing:0.182720pt;}
.ls3e{letter-spacing:0.186720pt;}
.ls7a{letter-spacing:0.189467pt;}
.ls42{letter-spacing:0.199168pt;}
.ls39{letter-spacing:0.211616pt;}
.ls70{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.224777pt;}
.ls35{letter-spacing:0.240000pt;}
.ls28{letter-spacing:0.242736pt;}
.ls20{letter-spacing:0.246530pt;}
.ls61{letter-spacing:0.256000pt;}
.ls6f{letter-spacing:0.266667pt;}
.lsa1{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.304976pt;}
.ls63{letter-spacing:0.309333pt;}
.lsa4{letter-spacing:0.320000pt;}
.ls65{letter-spacing:0.330667pt;}
.ls4c{letter-spacing:0.341333pt;}
.ls56{letter-spacing:0.362667pt;}
.ls4d{letter-spacing:0.384000pt;}
.lsa5{letter-spacing:0.394667pt;}
.ls6d{letter-spacing:0.400000pt;}
.ls74{letter-spacing:0.448000pt;}
.ls78{letter-spacing:0.469333pt;}
.ls7f{letter-spacing:0.522667pt;}
.ls6e{letter-spacing:0.533333pt;}
.ls73{letter-spacing:0.545102pt;}
.ls46{letter-spacing:0.560160pt;}
.lsaa{letter-spacing:0.725333pt;}
.ls5f{letter-spacing:1.013333pt;}
.ls57{letter-spacing:1.066667pt;}
.lsa2{letter-spacing:1.120000pt;}
.ls8b{letter-spacing:1.209263pt;}
.ls8e{letter-spacing:1.250363pt;}
.ls8a{letter-spacing:1.492832pt;}
.ls60{letter-spacing:1.578667pt;}
.ls9d{letter-spacing:1.915280pt;}
.ls8c{letter-spacing:1.916866pt;}
.ls8f{letter-spacing:1.980233pt;}
.ls8d{letter-spacing:2.048881pt;}
.ls68{letter-spacing:2.133333pt;}
.ls5c{letter-spacing:2.186667pt;}
.ls9e{letter-spacing:2.258236pt;}
.ls5d{letter-spacing:2.453333pt;}
.ls5b{letter-spacing:3.200000pt;}
.ls64{letter-spacing:3.488000pt;}
.ls4f{letter-spacing:4.266667pt;}
.ls62{letter-spacing:4.320000pt;}
.ls58{letter-spacing:6.400000pt;}
.ls80{letter-spacing:7.466667pt;}
.ls82{letter-spacing:10.666667pt;}
.ls81{letter-spacing:11.680000pt;}
.lsa0{letter-spacing:12.853333pt;}
.ls94{letter-spacing:14.754549pt;}
.ls92{letter-spacing:14.826969pt;}
.ls95{letter-spacing:14.931926pt;}
.ls4e{letter-spacing:17.066667pt;}
.ls89{letter-spacing:20.373333pt;}
.lsa3{letter-spacing:32.000000pt;}
.ls34{letter-spacing:35.841100pt;}
.lsa7{letter-spacing:36.869333pt;}
.ls55{letter-spacing:37.882667pt;}
.ls36{letter-spacing:42.243627pt;}
.ls96{letter-spacing:45.547247pt;}
.ls93{letter-spacing:45.548992pt;}
.ls5a{letter-spacing:51.562667pt;}
.ls3d{letter-spacing:52.775024pt;}
.lsa6{letter-spacing:55.808000pt;}
.ls4a{letter-spacing:56.202667pt;}
.ls38{letter-spacing:72.939056pt;}
.ls6c{letter-spacing:111.642667pt;}
.ls40{letter-spacing:165.479583pt;}
.ls43{letter-spacing:165.552092pt;}
.ls84{letter-spacing:268.946667pt;}
.ls24{letter-spacing:728.749694pt;}
.ls3f{letter-spacing:754.352552pt;}
.ls1{letter-spacing:1128.367613pt;}
.ws95{word-spacing:-61.747980pt;}
.ws8b{word-spacing:-59.492023pt;}
.ws92{word-spacing:-39.703798pt;}
.ws86{word-spacing:-39.573408pt;}
.ws80{word-spacing:-18.878225pt;}
.ws50{word-spacing:-18.666667pt;}
.ws3f{word-spacing:-18.351977pt;}
.ws99{word-spacing:-17.066667pt;}
.ws93{word-spacing:-16.787715pt;}
.ws9c{word-spacing:-16.725333pt;}
.ws54{word-spacing:-16.384000pt;}
.ws57{word-spacing:-16.362667pt;}
.ws53{word-spacing:-16.341333pt;}
.ws98{word-spacing:-16.320000pt;}
.ws40{word-spacing:-16.120160pt;}
.ws51{word-spacing:-16.021333pt;}
.ws52{word-spacing:-16.000000pt;}
.ws5b{word-spacing:-15.978667pt;}
.ws41{word-spacing:-15.802736pt;}
.ws5c{word-spacing:-15.658667pt;}
.ws55{word-spacing:-15.637333pt;}
.ws58{word-spacing:-15.616000pt;}
.ws5a{word-spacing:-15.317333pt;}
.ws65{word-spacing:-15.200000pt;}
.ws76{word-spacing:-15.136000pt;}
.ws63{word-spacing:-15.114667pt;}
.ws62{word-spacing:-14.976000pt;}
.ws9b{word-spacing:-14.954667pt;}
.ws7e{word-spacing:-14.953402pt;}
.ws56{word-spacing:-14.933333pt;}
.ws89{word-spacing:-14.905984pt;}
.ws85{word-spacing:-14.873006pt;}
.ws91{word-spacing:-14.872436pt;}
.ws7d{word-spacing:-14.821387pt;}
.ws64{word-spacing:-14.666667pt;}
.ws66{word-spacing:-14.133333pt;}
.ws67{word-spacing:-14.021333pt;}
.ws9a{word-spacing:-13.482667pt;}
.ws69{word-spacing:-13.366667pt;}
.ws68{word-spacing:-13.333333pt;}
.ws7f{word-spacing:-12.904521pt;}
.ws97{word-spacing:-11.008000pt;}
.ws59{word-spacing:-10.666667pt;}
.ws81{word-spacing:-10.538667pt;}
.ws96{word-spacing:-10.410667pt;}
.ws9d{word-spacing:-10.325333pt;}
.ws88{word-spacing:-9.926330pt;}
.ws94{word-spacing:-9.925949pt;}
.ws71{word-spacing:-9.866667pt;}
.ws72{word-spacing:-9.258667pt;}
.ws8a{word-spacing:-0.894359pt;}
.ws87{word-spacing:-0.713904pt;}
.ws11{word-spacing:-0.694313pt;}
.wsf{word-spacing:-0.424878pt;}
.ws44{word-spacing:-0.398336pt;}
.ws2{word-spacing:-0.393828pt;}
.ws43{word-spacing:-0.373440pt;}
.ws21{word-spacing:-0.326290pt;}
.ws1c{word-spacing:-0.268283pt;}
.wsb{word-spacing:-0.217620pt;}
.ws15{word-spacing:-0.166770pt;}
.wsc{word-spacing:-0.155443pt;}
.ws1{word-spacing:-0.145095pt;}
.ws13{word-spacing:-0.145080pt;}
.ws14{word-spacing:-0.137767pt;}
.ws4{word-spacing:-0.114003pt;}
.wsa{word-spacing:-0.113992pt;}
.ws10{word-spacing:-0.082903pt;}
.wse{word-spacing:-0.062240pt;}
.ws3{word-spacing:-0.051819pt;}
.ws2d{word-spacing:-0.050756pt;}
.ws12{word-spacing:-0.041452pt;}
.ws45{word-spacing:-0.036254pt;}
.ws46{word-spacing:-0.029004pt;}
.ws3c{word-spacing:-0.021753pt;}
.ws48{word-spacing:-0.014502pt;}
.ws47{word-spacing:-0.007251pt;}
.ws0{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.006224pt;}
.ws4b{word-spacing:0.012448pt;}
.ws18{word-spacing:0.014502pt;}
.ws8{word-spacing:0.014503pt;}
.ws4c{word-spacing:0.018672pt;}
.ws16{word-spacing:0.021753pt;}
.ws3e{word-spacing:0.058007pt;}
.wsd{word-spacing:0.062240pt;}
.ws5{word-spacing:0.065265pt;}
.ws19{word-spacing:0.072509pt;}
.ws3b{word-spacing:0.079760pt;}
.ws6{word-spacing:0.087020pt;}
.ws9{word-spacing:0.108774pt;}
.ws2e{word-spacing:0.137767pt;}
.ws42{word-spacing:0.145018pt;}
.ws4f{word-spacing:0.161824pt;}
.ws1b{word-spacing:0.188523pt;}
.ws3d{word-spacing:0.195774pt;}
.ws1a{word-spacing:0.232028pt;}
.ws7{word-spacing:0.290065pt;}
.ws17{word-spacing:0.348042pt;}
.ws5e{word-spacing:0.355501pt;}
.ws32{word-spacing:0.377046pt;}
.ws60{word-spacing:0.487169pt;}
.ws5f{word-spacing:0.961170pt;}
.ws5d{word-spacing:0.987504pt;}
.ws61{word-spacing:1.027004pt;}
.ws28{word-spacing:3.277398pt;}
.ws27{word-spacing:3.400663pt;}
.ws26{word-spacing:3.429666pt;}
.ws34{word-spacing:5.010358pt;}
.ws33{word-spacing:5.177128pt;}
.ws35{word-spacing:5.184379pt;}
.ws29{word-spacing:7.664180pt;}
.ws31{word-spacing:7.845452pt;}
.ws2a{word-spacing:7.975968pt;}
.ws30{word-spacing:8.012222pt;}
.ws36{word-spacing:9.571162pt;}
.ws38{word-spacing:9.730681pt;}
.ws37{word-spacing:9.861197pt;}
.ws1e{word-spacing:12.928319pt;}
.ws1d{word-spacing:12.935570pt;}
.ws2b{word-spacing:15.712657pt;}
.ws2c{word-spacing:15.756162pt;}
.ws39{word-spacing:18.721772pt;}
.ws3a{word-spacing:18.830535pt;}
.ws1f{word-spacing:23.072300pt;}
.ws20{word-spacing:23.355084pt;}
.ws6c{word-spacing:25.148800pt;}
.ws2f{word-spacing:25.218561pt;}
.ws25{word-spacing:26.828256pt;}
.ws24{word-spacing:26.915267pt;}
.ws23{word-spacing:27.256058pt;}
.ws22{word-spacing:27.444581pt;}
.ws90{word-spacing:28.630264pt;}
.ws8e{word-spacing:28.683026pt;}
.ws6f{word-spacing:28.704000pt;}
.ws8f{word-spacing:29.025982pt;}
.ws8d{word-spacing:29.184270pt;}
.ws78{word-spacing:29.893333pt;}
.ws77{word-spacing:30.240000pt;}
.ws6d{word-spacing:31.813200pt;}
.ws6a{word-spacing:39.626667pt;}
.ws84{word-spacing:52.533699pt;}
.ws83{word-spacing:53.087726pt;}
.ws7c{word-spacing:55.815467pt;}
.ws8c{word-spacing:56.647163pt;}
.ws82{word-spacing:80.498906pt;}
.ws6e{word-spacing:85.973333pt;}
.ws6b{word-spacing:86.026667pt;}
.ws79{word-spacing:107.840000pt;}
.ws74{word-spacing:155.706667pt;}
.ws73{word-spacing:156.000000pt;}
.ws75{word-spacing:156.106667pt;}
.ws70{word-spacing:160.800000pt;}
.ws49{word-spacing:167.911072pt;}
.ws4e{word-spacing:167.935968pt;}
.ws4d{word-spacing:167.942192pt;}
.ws7a{word-spacing:242.193333pt;}
.ws7b{word-spacing:242.433333pt;}
._d{margin-left:-168.821040pt;}
._5{margin-left:-165.965392pt;}
._6{margin-left:-164.827004pt;}
._14{margin-left:-156.923545pt;}
._48{margin-left:-150.133375pt;}
._47{margin-left:-149.024444pt;}
._7{margin-left:-146.453274pt;}
._49{margin-left:-141.314735pt;}
._15{margin-left:-120.596636pt;}
._4a{margin-left:-119.381670pt;}
._4b{margin-left:-110.720604pt;}
._e{margin-left:-88.270787pt;}
._12{margin-left:-83.178800pt;}
._10{margin-left:-74.268463pt;}
._c{margin-left:-71.993988pt;}
._4f{margin-left:-58.293653pt;}
._13{margin-left:-48.479384pt;}
._f{margin-left:-44.031056pt;}
._4e{margin-left:-31.362198pt;}
._4c{margin-left:-6.848458pt;}
._2c{margin-left:-5.521618pt;}
._4d{margin-left:-4.275650pt;}
._21{margin-left:-3.374696pt;}
._1e{margin-left:-2.334290pt;}
._0{margin-left:-1.247280pt;}
._1{width:0.920957pt;}
._18{width:1.828613pt;}
._19{width:3.460613pt;}
._1a{width:4.509344pt;}
._8{width:5.729775pt;}
._23{width:7.098667pt;}
._20{width:8.179369pt;}
._4{width:9.563911pt;}
._1f{width:11.081743pt;}
._1d{width:12.288000pt;}
._25{width:13.229503pt;}
._1c{width:15.007280pt;}
._52{width:16.080720pt;}
._22{width:17.071461pt;}
._1b{width:18.000539pt;}
._27{width:19.424270pt;}
._24{width:20.823224pt;}
._29{width:22.247043pt;}
._2a{width:23.185193pt;}
._51{width:24.640000pt;}
._2b{width:26.112000pt;}
._26{width:27.141333pt;}
._28{width:28.613603pt;}
._50{width:29.641474pt;}
._53{width:31.271043pt;}
._54{width:32.318763pt;}
._3e{width:35.388646pt;}
._3d{width:36.736000pt;}
._56{width:37.632000pt;}
._58{width:38.719143pt;}
._57{width:39.690667pt;}
._35{width:43.148800pt;}
._34{width:44.800000pt;}
._37{width:45.953923pt;}
._2f{width:47.040000pt;}
._39{width:47.936000pt;}
._33{width:49.071280pt;}
._55{width:50.300377pt;}
._2e{width:51.520000pt;}
._16{width:53.446236pt;}
._2d{width:55.893333pt;}
._32{width:58.933333pt;}
._31{width:60.266667pt;}
._36{width:62.118746pt;}
._3a{width:65.856420pt;}
._38{width:67.357927pt;}
._30{width:69.173333pt;}
._41{width:73.815467pt;}
._40{width:75.360000pt;}
._3f{width:79.684613pt;}
._44{width:81.634133pt;}
._43{width:83.198933pt;}
._42{width:92.459090pt;}
._17{width:114.266667pt;}
._11{width:125.555488pt;}
._2{width:137.998748pt;}
._b{width:150.061311pt;}
._3{width:160.382215pt;}
._9{width:167.998208pt;}
._a{width:168.969152pt;}
._46{width:172.933333pt;}
._3c{width:182.666667pt;}
._3b{width:187.466667pt;}
._45{width:294.378667pt;}
.fsc{font-size:37.333333pt;}
.fs17{font-size:39.466667pt;}
.fs30{font-size:39.571892pt;}
.fs27{font-size:39.573408pt;}
.fs1a{font-size:39.600000pt;}
.fs2f{font-size:39.703798pt;}
.fs28{font-size:39.705319pt;}
.fsb{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs20{font-size:51.486068pt;}
.fs1e{font-size:51.618084pt;}
.fsa{font-size:53.333333pt;}
.fs11{font-size:53.466667pt;}
.fs14{font-size:55.466667pt;}
.fs2a{font-size:55.532555pt;}
.fs22{font-size:55.534682pt;}
.fs15{font-size:55.600000pt;}
.fs2b{font-size:55.664461pt;}
.fs23{font-size:55.666593pt;}
.fs12{font-size:56.533333pt;}
.fs1b{font-size:56.666667pt;}
.fs9{font-size:58.666667pt;}
.fs19{font-size:58.800000pt;}
.fs2e{font-size:59.489744pt;}
.fs26{font-size:59.492023pt;}
.fs29{font-size:59.623934pt;}
.fs2{font-size:62.240000pt;}
.fs25{font-size:63.449363pt;}
.fs2c{font-size:63.454140pt;}
.fs24{font-size:63.455444pt;}
.fs2d{font-size:63.578839pt;}
.fs6{font-size:64.000000pt;}
.fs18{font-size:64.133333pt;}
.fs16{font-size:66.133333pt;}
.fsd{font-size:66.518254pt;}
.fse{font-size:66.676254pt;}
.fs13{font-size:67.200000pt;}
.fs5{font-size:72.508800pt;}
.fs0{font-size:72.516267pt;}
.fs7{font-size:74.666667pt;}
.fs1c{font-size:74.800000pt;}
.fs1d{font-size:75.380884pt;}
.fs1f{font-size:75.443835pt;}
.fs21{font-size:75.512900pt;}
.fsf{font-size:78.312977pt;}
.fs10{font-size:78.526300pt;}
.fs3{font-size:103.628800pt;}
.fs1{font-size:103.638933pt;}
.fs38{font-size:104.000000pt;}
.fs32{font-size:112.000000pt;}
.fs4{font-size:124.480000pt;}
.fs31{font-size:124.800000pt;}
.fs33{font-size:138.666667pt;}
.fs37{font-size:143.466667pt;}
.fs35{font-size:148.266667pt;}
.fs36{font-size:149.333333pt;}
.fs34{font-size:257.067200pt;}
.y257{bottom:-5.613333pt;}
.y25d{bottom:-5.349333pt;}
.y1e7{bottom:-3.746667pt;}
.y0{bottom:0.000000pt;}
.y1e3{bottom:1.586667pt;}
.y238{bottom:3.733333pt;}
.y2bf{bottom:4.786667pt;}
.y2be{bottom:5.053333pt;}
.y2c4{bottom:5.320000pt;}
.y190{bottom:5.333333pt;}
.y2e4{bottom:5.573333pt;}
.y2c2{bottom:5.586667pt;}
.y2f5{bottom:5.590667pt;}
.y2f0{bottom:5.613333pt;}
.y2cf{bottom:5.840000pt;}
.y2f7{bottom:5.850667pt;}
.y2c1{bottom:5.853333pt;}
.y2cb{bottom:5.880000pt;}
.y16a{bottom:6.506667pt;}
.y28d{bottom:8.804746pt;}
.y278{bottom:9.035928pt;}
.y1af{bottom:9.333333pt;}
.y1bd{bottom:9.360000pt;}
.y1de{bottom:10.920000pt;}
.y1e4{bottom:11.973333pt;}
.y1e0{bottom:11.986667pt;}
.y137{bottom:12.006400pt;}
.y1ec{bottom:12.253333pt;}
.y1fa{bottom:13.666667pt;}
.y23e{bottom:15.173333pt;}
.y25b{bottom:15.177333pt;}
.y25f{bottom:15.184000pt;}
.y241{bottom:15.186667pt;}
.y24e{bottom:15.213333pt;}
.y262{bottom:15.217333pt;}
.y253{bottom:15.226667pt;}
.y23c{bottom:15.453333pt;}
.y1d1{bottom:16.933333pt;}
.y1dc{bottom:17.346667pt;}
.y1da{bottom:18.120000pt;}
.y219{bottom:18.386667pt;}
.y154{bottom:18.653333pt;}
.y75{bottom:21.066667pt;}
.y19f{bottom:21.573333pt;}
.y14e{bottom:21.840000pt;}
.y149{bottom:21.853333pt;}
.y147{bottom:21.893333pt;}
.y143{bottom:22.120000pt;}
.y237{bottom:22.133333pt;}
.y1a5{bottom:22.373333pt;}
.y15b{bottom:22.377333pt;}
.y127{bottom:22.386667pt;}
.y1c5{bottom:22.413333pt;}
.y13c{bottom:22.426667pt;}
.y14c{bottom:23.453333pt;}
.y14f{bottom:23.480000pt;}
.y148{bottom:23.493333pt;}
.y178{bottom:24.093333pt;}
.y138{bottom:24.648094pt;}
.y216{bottom:26.506667pt;}
.y28e{bottom:27.634371pt;}
.y2bb{bottom:27.760000pt;}
.y279{bottom:28.459876pt;}
.y18e{bottom:29.866667pt;}
.y1ad{bottom:31.040000pt;}
.y1bb{bottom:31.066667pt;}
.y125{bottom:32.253333pt;}
.y168{bottom:33.533333pt;}
.y328{bottom:34.160000pt;}
.y1e2{bottom:38.386667pt;}
.y1cf{bottom:38.640000pt;}
.y74{bottom:39.466667pt;}
.y23b{bottom:39.986667pt;}
.y321{bottom:40.786667pt;}
.y31c{bottom:40.826667pt;}
.y145{bottom:41.053333pt;}
.y1f8{bottom:41.960000pt;}
.y19d{bottom:42.533333pt;}
.y176{bottom:42.626667pt;}
.y222{bottom:42.725516pt;}
.y261{bottom:43.216000pt;}
.y183{bottom:45.533333pt;}
.y1a8{bottom:46.706667pt;}
.y1b6{bottom:46.733333pt;}
.y15d{bottom:49.200000pt;}
.y28b{bottom:51.212623pt;}
.y264{bottom:51.733333pt;}
.y276{bottom:53.127300pt;}
.y1c9{bottom:54.306667pt;}
.y1d9{bottom:54.920000pt;}
.y1d6{bottom:54.946667pt;}
.y1fc{bottom:55.453333pt;}
.y1f2{bottom:57.626667pt;}
.y193{bottom:58.733333pt;}
.y1a4{bottom:58.946667pt;}
.y135{bottom:59.013225pt;}
.y16d{bottom:59.093333pt;}
.y214{bottom:59.133333pt;}
.y2b9{bottom:59.173333pt;}
.y15a{bottom:59.190667pt;}
.y17d{bottom:59.213333pt;}
.y184{bottom:64.066667pt;}
.y325{bottom:65.880000pt;}
.y260{bottom:67.782667pt;}
.y15e{bottom:69.533333pt;}
.y263{bottom:70.166667pt;}
.y223{bottom:70.943841pt;}
.y280{bottom:71.625124pt;}
.y26b{bottom:73.540582pt;}
.y209{bottom:75.573333pt;}
.y320{bottom:77.586667pt;}
.y31b{bottom:77.626667pt;}
.y194{bottom:79.960000pt;}
.y185{bottom:82.573333pt;}
.y12f{bottom:83.779820pt;}
.y327{bottom:84.293333pt;}
.y16e{bottom:85.573333pt;}
.y15f{bottom:89.866667pt;}
.y1f3{bottom:91.626667pt;}
.y1d8{bottom:91.720000pt;}
.y25e{bottom:92.316000pt;}
.y18f{bottom:93.026667pt;}
.y1ca{bottom:93.093333pt;}
.y1a3{bottom:95.746667pt;}
.y17c{bottom:95.760000pt;}
.y21b{bottom:96.013333pt;}
.y159{bottom:96.017333pt;}
.y281{bottom:97.874479pt;}
.y13{bottom:98.341947pt;}
.y14{bottom:98.346615pt;}
.y2f8{bottom:98.700000pt;}
.y26c{bottom:99.461164pt;}
.y186{bottom:101.106667pt;}
.y195{bottom:101.160000pt;}
.y1f0{bottom:102.166667pt;}
.y169{bottom:103.800000pt;}
.y32f{bottom:104.033333pt;}
.y20a{bottom:104.600000pt;}
.y1f9{bottom:104.666667pt;}
.y1d0{bottom:106.066667pt;}
.yd9{bottom:106.433333pt;}
.y110{bottom:106.700000pt;}
.ya6{bottom:109.633333pt;}
.y160{bottom:110.160000pt;}
.y16f{bottom:112.040000pt;}
.y234{bottom:112.792774pt;}
.y331{bottom:113.100000pt;}
.y2b7{bottom:113.366667pt;}
.y2f6{bottom:113.916000pt;}
.y269{bottom:114.166667pt;}
.y319{bottom:114.386667pt;}
.y1a9{bottom:114.573333pt;}
.y1b7{bottom:114.600000pt;}
.yde{bottom:114.966667pt;}
.y12{bottom:116.267067pt;}
.y25c{bottom:116.849333pt;}
.ybd{bottom:118.966667pt;}
.y310{bottom:119.500000pt;}
.y187{bottom:119.600000pt;}
.y1a6{bottom:119.766667pt;}
.y25a{bottom:120.849333pt;}
.y1c7{bottom:122.166667pt;}
.y196{bottom:122.400000pt;}
.y155{bottom:123.249333pt;}
.y282{bottom:124.123833pt;}
.y11f{bottom:125.100000pt;}
.y26d{bottom:125.381746pt;}
.y1f4{bottom:125.626667pt;}
.y151{bottom:127.233333pt;}
.y2f4{bottom:129.116000pt;}
.y130{bottom:129.362994pt;}
.y161{bottom:130.493333pt;}
.yea{bottom:131.233333pt;}
.y233{bottom:131.637995pt;}
.y1cb{bottom:131.906667pt;}
.y158{bottom:132.817333pt;}
.y20b{bottom:133.626667pt;}
.y1ae{bottom:133.906667pt;}
.y1bc{bottom:133.933333pt;}
.y1a2{bottom:134.186667pt;}
.yf8{bottom:134.706667pt;}
.y19e{bottom:137.066667pt;}
.y188{bottom:138.133333pt;}
.y170{bottom:138.506667pt;}
.y1ef{bottom:138.960000pt;}
.y27e{bottom:140.389568pt;}
.y32e{bottom:140.826667pt;}
.yd8{bottom:143.226667pt;}
.y293{bottom:143.376586pt;}
.y10f{bottom:143.493333pt;}
.y197{bottom:143.626667pt;}
.y2f3{bottom:144.053333pt;}
.y259{bottom:145.386667pt;}
.ya5{bottom:146.440000pt;}
.y123{bottom:146.706667pt;}
.y13a{bottom:148.086065pt;}
.y181{bottom:148.560000pt;}
.y232{bottom:149.362404pt;}
.ydd{bottom:149.893333pt;}
.y2b6{bottom:150.160000pt;}
.y177{bottom:150.333333pt;}
.y283{bottom:150.341531pt;}
.y162{bottom:150.826667pt;}
.y268{bottom:150.960000pt;}
.y26e{bottom:151.271989pt;}
.y215{bottom:153.600000pt;}
.ye3{bottom:153.626667pt;}
.y70{bottom:155.068325pt;}
.ybc{bottom:155.773333pt;}
.y30f{bottom:156.293333pt;}
.y189{bottom:156.626667pt;}
.y150{bottom:156.826667pt;}
.y27d{bottom:157.274222pt;}
.y12d{bottom:157.893333pt;}
.y1c6{bottom:158.960000pt;}
.y2f2{bottom:159.253333pt;}
.y1f5{bottom:159.626667pt;}
.y292{bottom:160.234212pt;}
.y35{bottom:161.304696pt;}
.y8b{bottom:161.893333pt;}
.y20c{bottom:162.666667pt;}
.y198{bottom:164.826667pt;}
.y171{bottom:164.960000pt;}
.y267{bottom:165.653333pt;}
.y231{bottom:167.580551pt;}
.ye9{bottom:168.040000pt;}
.y14d{bottom:168.053333pt;}
.y157{bottom:169.617333pt;}
.y258{bottom:169.946667pt;}
.y1cc{bottom:170.693333pt;}
.y163{bottom:171.160000pt;}
.yf7{bottom:171.506667pt;}
.y27c{bottom:173.129967pt;}
.y57{bottom:173.198922pt;}
.y1c4{bottom:173.386667pt;}
.y2f1{bottom:174.453333pt;}
.y131{bottom:174.911605pt;}
.y18a{bottom:175.173333pt;}
.y6f{bottom:176.028806pt;}
.y1ee{bottom:176.040000pt;}
.y291{bottom:176.128922pt;}
.y284{bottom:176.590885pt;}
.y26f{bottom:177.192570pt;}
.y32d{bottom:177.626667pt;}
.y139{bottom:177.956408pt;}
.yd7{bottom:180.040000pt;}
.y10e{bottom:180.293333pt;}
.y1b4{bottom:181.066667pt;}
.ydc{bottom:181.626667pt;}
.y34{bottom:182.185418pt;}
.y1aa{bottom:182.440000pt;}
.y1b8{bottom:182.466667pt;}
.ya4{bottom:182.960000pt;}
.y1c2{bottom:184.626667pt;}
.y230{bottom:185.297039pt;}
.y180{bottom:185.373333pt;}
.y199{bottom:186.066667pt;}
.y2b5{bottom:186.706667pt;}
.ye2{bottom:188.560000pt;}
.y122{bottom:189.626667pt;}
.y2ef{bottom:189.653333pt;}
.y27b{bottom:189.988239pt;}
.y172{bottom:191.426667pt;}
.y164{bottom:191.466667pt;}
.y20d{bottom:191.693333pt;}
.ybb{bottom:192.600000pt;}
.y30e{bottom:192.866667pt;}
.y290{bottom:192.973357pt;}
.y1f6{bottom:193.600000pt;}
.y11{bottom:193.625628pt;}
.y18b{bottom:193.666667pt;}
.y256{bottom:194.480000pt;}
.y12c{bottom:194.733333pt;}
.y6e{bottom:196.827956pt;}
.y255{bottom:198.213333pt;}
.y8a{bottom:198.733333pt;}
.y22f{bottom:199.686735pt;}
.y266{bottom:202.480000pt;}
.y285{bottom:202.840240pt;}
.y33{bottom:203.066139pt;}
.y270{bottom:203.113152pt;}
.y2ee{bottom:204.613333pt;}
.ye8{bottom:204.866667pt;}
.y14b{bottom:204.880000pt;}
.y156{bottom:206.190667pt;}
.y19a{bottom:207.266667pt;}
.yf6{bottom:208.333333pt;}
.y1cd{bottom:209.493333pt;}
.y165{bottom:211.800000pt;}
.y18c{bottom:212.173333pt;}
.y1ed{bottom:212.866667pt;}
.y1fe{bottom:213.933333pt;}
.y32c{bottom:214.466667pt;}
.y56{bottom:214.963991pt;}
.yd6{bottom:216.866667pt;}
.y10d{bottom:217.133333pt;}
.y22e{bottom:217.772866pt;}
.y173{bottom:217.906667pt;}
.y2ed{bottom:219.813333pt;}
.ya3{bottom:220.066667pt;}
.y132{bottom:220.484904pt;}
.y20e{bottom:220.733333pt;}
.y28f{bottom:221.611619pt;}
.y27f{bottom:221.941093pt;}
.y17f{bottom:222.200000pt;}
.y254{bottom:222.746667pt;}
.y2b4{bottom:223.533333pt;}
.y32{bottom:223.946861pt;}
.ye1{bottom:224.066667pt;}
.y1f7{bottom:227.600000pt;}
.y1fd{bottom:228.346667pt;}
.y19b{bottom:228.493333pt;}
.y1eb{bottom:228.613333pt;}
.y271{bottom:229.033734pt;}
.y286{bottom:229.089595pt;}
.yba{bottom:229.400000pt;}
.y30d{bottom:229.666667pt;}
.y18d{bottom:230.693333pt;}
.y12b{bottom:231.533333pt;}
.y166{bottom:232.133333pt;}
.y224{bottom:232.334183pt;}
.y121{bottom:232.600000pt;}
.y2ec{bottom:235.013333pt;}
.y10{bottom:235.465700pt;}
.y22d{bottom:235.502556pt;}
.y89{bottom:235.533333pt;}
.y17e{bottom:236.613333pt;}
.ye7{bottom:241.666667pt;}
.y14a{bottom:241.680000pt;}
.y174{bottom:244.373333pt;}
.y1a1{bottom:244.613333pt;}
.y31{bottom:244.746010pt;}
.yf5{bottom:245.133333pt;}
.y1c1{bottom:245.960000pt;}
.y1b3{bottom:246.560000pt;}
.y1c3{bottom:247.013333pt;}
.y252{bottom:247.280000pt;}
.yca{bottom:247.800000pt;}
.y1ce{bottom:248.306667pt;}
.y19c{bottom:249.706667pt;}
.y20f{bottom:249.773333pt;}
.y2eb{bottom:250.213333pt;}
.y1ab{bottom:250.293333pt;}
.y1b9{bottom:250.333333pt;}
.y32b{bottom:251.266667pt;}
.y167{bottom:252.426667pt;}
.yd5{bottom:253.666667pt;}
.y22c{bottom:253.720703pt;}
.y10c{bottom:253.933333pt;}
.y272{bottom:254.914743pt;}
.y1ea{bottom:255.280000pt;}
.y287{bottom:255.338950pt;}
.yf{bottom:256.265179pt;}
.y191{bottom:256.293333pt;}
.y55{bottom:256.729059pt;}
.ya2{bottom:256.866667pt;}
.y6d{bottom:259.468308pt;}
.y2b3{bottom:260.333333pt;}
.y1be{bottom:262.933333pt;}
.y1b5{bottom:263.200000pt;}
.y1b2{bottom:263.373333pt;}
.y1c0{bottom:263.840000pt;}
.y1fb{bottom:265.146667pt;}
.y30{bottom:265.465400pt;}
.y1c8{bottom:265.866667pt;}
.y133{bottom:266.074661pt;}
.yb9{bottom:266.200000pt;}
.y30c{bottom:266.466667pt;}
.y207{bottom:267.000000pt;}
.y1d2{bottom:267.973333pt;}
.y220{bottom:268.066667pt;}
.y12a{bottom:268.333333pt;}
.ye0{bottom:269.400000pt;}
.y175{bottom:270.840000pt;}
.y22b{bottom:271.437191pt;}
.y251{bottom:271.853333pt;}
.y88{bottom:272.333333pt;}
.y17b{bottom:273.413333pt;}
.y16b{bottom:273.533333pt;}
.y120{bottom:275.533333pt;}
.ye{bottom:277.226006pt;}
.ye6{bottom:278.466667pt;}
.y210{bottom:278.800000pt;}
.y144{bottom:279.813333pt;}
.y2ea{bottom:280.346667pt;}
.y1b1{bottom:280.440000pt;}
.y273{bottom:280.835325pt;}
.y288{bottom:281.588304pt;}
.y1e9{bottom:281.680000pt;}
.yf4{bottom:281.933333pt;}
.y1bf{bottom:282.000000pt;}
.yc9{bottom:284.600000pt;}
.y2f{bottom:286.346122pt;}
.y32a{bottom:288.066667pt;}
.y22a{bottom:289.523323pt;}
.yd4{bottom:290.466667pt;}
.y10b{bottom:290.733333pt;}
.ya1{bottom:293.666667pt;}
.y2e9{bottom:295.546667pt;}
.y250{bottom:296.386667pt;}
.y2b2{bottom:297.133333pt;}
.yd{bottom:298.105252pt;}
.y54{bottom:298.403492pt;}
.y6c{bottom:301.227939pt;}
.yb8{bottom:303.000000pt;}
.y324{bottom:303.013333pt;}
.y30b{bottom:303.266667pt;}
.y206{bottom:303.800000pt;}
.y21f{bottom:304.866667pt;}
.y129{bottom:305.133333pt;}
.y17a{bottom:305.920000pt;}
.y274{bottom:306.755907pt;}
.y2e{bottom:307.145271pt;}
.y229{bottom:307.385028pt;}
.y289{bottom:307.798087pt;}
.y211{bottom:307.840000pt;}
.y1e8{bottom:308.080000pt;}
.y87{bottom:309.133333pt;}
.y2e8{bottom:310.746667pt;}
.y134{bottom:311.664418pt;}
.y11b{bottom:315.266667pt;}
.y146{bottom:317.946667pt;}
.y1ac{bottom:318.173333pt;}
.y1ba{bottom:318.200000pt;}
.ye5{bottom:318.466667pt;}
.yf3{bottom:318.733333pt;}
.y24f{bottom:320.920000pt;}
.yc8{bottom:321.400000pt;}
.y228{bottom:321.669112pt;}
.y2e7{bottom:325.720000pt;}
.yd3{bottom:327.040000pt;}
.y153{bottom:327.240000pt;}
.y236{bottom:327.253370pt;}
.y10a{bottom:327.560000pt;}
.y2d{bottom:328.105752pt;}
.ya0{bottom:330.506667pt;}
.y275{bottom:332.676489pt;}
.y28c{bottom:332.742390pt;}
.y2b1{bottom:333.960000pt;}
.y28a{bottom:334.047442pt;}
.y1e6{bottom:334.520000pt;}
.y212{bottom:336.866667pt;}
.yb7{bottom:339.840000pt;}
.y329{bottom:339.853333pt;}
.yc{bottom:339.865557pt;}
.y227{bottom:339.887259pt;}
.y30a{bottom:340.106667pt;}
.y53{bottom:340.241070pt;}
.y45{bottom:340.266491pt;}
.y205{bottom:340.626667pt;}
.y2e6{bottom:340.920000pt;}
.y21e{bottom:341.706667pt;}
.y128{bottom:341.960000pt;}
.y6b{bottom:342.987569pt;}
.y152{bottom:344.120000pt;}
.y1e5{bottom:345.186667pt;}
.y24d{bottom:345.453333pt;}
.y86{bottom:345.960000pt;}
.y2c{bottom:348.986474pt;}
.y11a{bottom:352.106667pt;}
.yf2{bottom:355.560000pt;}
.y2e5{bottom:356.120000pt;}
.y126{bottom:356.386667pt;}
.y142{bottom:356.653333pt;}
.y226{bottom:356.983274pt;}
.y235{bottom:358.039398pt;}
.yc7{bottom:358.226667pt;}
.y16c{bottom:362.933333pt;}
.yd2{bottom:364.106667pt;}
.y109{bottom:364.373333pt;}
.y213{bottom:365.933333pt;}
.y9f{bottom:367.040000pt;}
.y217{bottom:367.773333pt;}
.y2b{bottom:369.785623pt;}
.y24c{bottom:370.013333pt;}
.y2b0{bottom:370.773333pt;}
.y2e3{bottom:371.320000pt;}
.y1e1{bottom:371.586667pt;}
.y225{bottom:375.703080pt;}
.yb6{bottom:376.640000pt;}
.y326{bottom:376.653333pt;}
.y309{bottom:376.893333pt;}
.y204{bottom:377.440000pt;}
.y21d{bottom:378.506667pt;}
.yb{bottom:381.546094pt;}
.y52{bottom:381.915503pt;}
.y44{bottom:381.946362pt;}
.y85{bottom:382.773333pt;}
.y179{bottom:383.853333pt;}
.y6a{bottom:384.747200pt;}
.y2e2{bottom:386.253333pt;}
.y119{bottom:388.893333pt;}
.y2a{bottom:390.666345pt;}
.yf1{bottom:392.360000pt;}
.y124{bottom:393.186667pt;}
.y24b{bottom:394.546667pt;}
.yc6{bottom:395.026667pt;}
.y295{bottom:396.973333pt;}
.y1df{bottom:397.986667pt;}
.y29c{bottom:398.893333pt;}
.yd1{bottom:400.893333pt;}
.y108{bottom:401.173333pt;}
.y2e1{bottom:401.453333pt;}
.y192{bottom:402.400000pt;}
.y9e{bottom:403.840000pt;}
.y2af{bottom:407.560000pt;}
.y29{bottom:411.547067pt;}
.yb5{bottom:413.440000pt;}
.y308{bottom:413.693333pt;}
.y203{bottom:414.226667pt;}
.y21c{bottom:415.306667pt;}
.y29b{bottom:415.693333pt;}
.y141{bottom:415.840000pt;}
.y2e0{bottom:416.653333pt;}
.y24a{bottom:419.080000pt;}
.y84{bottom:419.560000pt;}
.y69{bottom:423.148339pt;}
.y43{bottom:423.466714pt;}
.y51{bottom:423.680571pt;}
.y1dd{bottom:424.386667pt;}
.y118{bottom:425.693333pt;}
.y323{bottom:426.786667pt;}
.yf0{bottom:429.173333pt;}
.y21a{bottom:429.720000pt;}
.yc5{bottom:431.840000pt;}
.y2df{bottom:431.853333pt;}
.y28{bottom:434.187640pt;}
.yd0{bottom:437.440000pt;}
.y107{bottom:437.973333pt;}
.y249{bottom:443.613333pt;}
.y9d{bottom:444.106667pt;}
.ya{bottom:444.185645pt;}
.y2ae{bottom:444.360000pt;}
.y2de{bottom:447.053333pt;}
.y29f{bottom:448.320000pt;}
.yb4{bottom:450.226667pt;}
.y307{bottom:450.506667pt;}
.y202{bottom:451.026667pt;}
.y1db{bottom:451.053333pt;}
.y140{bottom:452.640000pt;}
.y83{bottom:456.360000pt;}
.y68{bottom:458.987687pt;}
.y2dd{bottom:462.013333pt;}
.y117{bottom:462.533333pt;}
.y318{bottom:463.613333pt;}
.y27{bottom:463.947241pt;}
.y9{bottom:465.146472pt;}
.y50{bottom:465.445640pt;}
.y42{bottom:465.467436pt;}
.y248{bottom:468.186667pt;}
.yc4{bottom:468.666667pt;}
.y29e{bottom:472.320000pt;}
.y9c{bottom:474.533333pt;}
.y106{bottom:474.800000pt;}
.y2dc{bottom:477.213333pt;}
.y29a{bottom:478.093333pt;}
.yef{bottom:479.066667pt;}
.y2ad{bottom:481.200000pt;}
.y8{bottom:482.106214pt;}
.y1d7{bottom:484.146667pt;}
.y11e{bottom:486.000000pt;}
.yb3{bottom:487.066667pt;}
.y306{bottom:487.333333pt;}
.y201{bottom:487.866667pt;}
.y13f{bottom:489.466667pt;}
.y2db{bottom:492.413333pt;}
.y247{bottom:492.720000pt;}
.y82{bottom:493.200000pt;}
.y26{bottom:493.787154pt;}
.y67{bottom:494.747679pt;}
.y116{bottom:499.333333pt;}
.y322{bottom:500.413333pt;}
.y9b{bottom:502.000000pt;}
.y200{bottom:502.280000pt;}
.y105{bottom:504.400000pt;}
.yc3{bottom:505.466667pt;}
.y4f{bottom:507.210709pt;}
.y59{bottom:507.228836pt;}
.y41{bottom:507.230649pt;}
.y2da{bottom:507.613333pt;}
.ycf{bottom:511.333333pt;}
.y299{bottom:511.688000pt;}
.y246{bottom:517.253333pt;}
.y11d{bottom:517.733333pt;}
.y2ac{bottom:518.000000pt;}
.y2d9{bottom:522.546667pt;}
.y25{bottom:523.627067pt;}
.yb2{bottom:523.866667pt;}
.y305{bottom:524.133333pt;}
.y13e{bottom:526.266667pt;}
.y29d{bottom:527.544000pt;}
.yee{bottom:527.600000pt;}
.y9a{bottom:529.733333pt;}
.y81{bottom:530.000000pt;}
.y66{bottom:530.507671pt;}
.y104{bottom:536.133333pt;}
.y31f{bottom:537.213333pt;}
.y2d8{bottom:537.746667pt;}
.y1ff{bottom:539.080000pt;}
.y218{bottom:540.146667pt;}
.y13d{bottom:540.680000pt;}
.y245{bottom:541.786667pt;}
.yc2{bottom:542.266667pt;}
.y11c{bottom:547.333333pt;}
.yce{bottom:548.133333pt;}
.y58{bottom:548.749188pt;}
.y4e{bottom:548.975778pt;}
.y40{bottom:548.990280pt;}
.y24{bottom:551.705271pt;}
.y2d7{bottom:552.946667pt;}
.y2ab{bottom:554.800000pt;}
.y99{bottom:557.200000pt;}
.y208{bottom:557.600000pt;}
.y221{bottom:558.533333pt;}
.yb1{bottom:560.666667pt;}
.y304{bottom:560.933333pt;}
.yed{bottom:565.466667pt;}
.y103{bottom:565.733333pt;}
.y244{bottom:566.346667pt;}
.y80{bottom:566.800000pt;}
.y2d6{bottom:568.146667pt;}
.y65{bottom:569.627352pt;}
.y23{bottom:572.665752pt;}
.y115{bottom:572.933333pt;}
.y31a{bottom:574.013333pt;}
.y13b{bottom:577.466667pt;}
.yc1{bottom:579.066667pt;}
.y2d5{bottom:583.080000pt;}
.y98{bottom:584.933333pt;}
.y1d5{bottom:590.280000pt;}
.y4d{bottom:590.740847pt;}
.y3f{bottom:590.749910pt;}
.y243{bottom:590.880000pt;}
.y2aa{bottom:591.640000pt;}
.yb0{bottom:591.893333pt;}
.y265{bottom:591.920000pt;}
.y22{bottom:593.464902pt;}
.y102{bottom:597.506667pt;}
.y303{bottom:597.773333pt;}
.y2d4{bottom:598.320000pt;}
.y1a0{bottom:603.120000pt;}
.y7f{bottom:603.640000pt;}
.y64{bottom:608.027876pt;}
.y114{bottom:609.773333pt;}
.y31e{bottom:610.853333pt;}
.y27a{bottom:610.983390pt;}
.y26a{bottom:611.313435pt;}
.y97{bottom:612.440000pt;}
.y2d3{bottom:613.520000pt;}
.y21{bottom:614.345623pt;}
.y242{bottom:615.413333pt;}
.yc0{bottom:615.640000pt;}
.ye4{bottom:615.893333pt;}
.ydf{bottom:618.306667pt;}
.y12e{bottom:619.590958pt;}
.yaf{bottom:619.640000pt;}
.y1b0{bottom:621.333333pt;}
.y1a7{bottom:621.600000pt;}
.ycd{bottom:621.773333pt;}
.y2a9{bottom:628.440000pt;}
.y2d2{bottom:628.720000pt;}
.y4c{bottom:632.415279pt;}
.y3e{bottom:632.429781pt;}
.y101{bottom:634.306667pt;}
.y302{bottom:634.560000pt;}
.y20{bottom:635.226345pt;}
.y240{bottom:639.946667pt;}
.y96{bottom:640.173333pt;}
.y7e{bottom:640.440000pt;}
.y2d1{bottom:643.653333pt;}
.y63{bottom:643.787868pt;}
.y113{bottom:646.560000pt;}
.y31d{bottom:647.653333pt;}
.yae{bottom:652.693333pt;}
.y1f{bottom:656.107067pt;}
.ycc{bottom:658.306667pt;}
.y2d0{bottom:658.853333pt;}
.y1d4{bottom:659.653333pt;}
.y100{bottom:663.893333pt;}
.y23f{bottom:664.520000pt;}
.y2a8{bottom:665.226667pt;}
.y95{bottom:667.640000pt;}
.y301{bottom:671.360000pt;}
.y15c{bottom:671.466667pt;}
.y2ce{bottom:674.053333pt;}
.y4b{bottom:674.252857pt;}
.y3d{bottom:674.269172pt;}
.y7d{bottom:677.226667pt;}
.y62{bottom:679.627216pt;}
.y1e{bottom:679.867075pt;}
.ydb{bottom:680.440000pt;}
.y112{bottom:683.373333pt;}
.y317{bottom:684.453333pt;}
.y2cd{bottom:689.253333pt;}
.yad{bottom:689.506667pt;}
.y182{bottom:689.600000pt;}
.y23a{bottom:690.386667pt;}
.ycb{bottom:691.626667pt;}
.y94{bottom:695.373333pt;}
.yff{bottom:695.626667pt;}
.y1d3{bottom:696.453333pt;}
.y2a7{bottom:702.040000pt;}
.y2cc{bottom:704.186667pt;}
.y300{bottom:708.173333pt;}
.y7c{bottom:714.040000pt;}
.y1f1{bottom:714.933333pt;}
.y61{bottom:715.387208pt;}
.y23d{bottom:715.453333pt;}
.y1d{bottom:715.627067pt;}
.y4a{bottom:715.927290pt;}
.y3c{bottom:715.949043pt;}
.y2ca{bottom:719.386667pt;}
.y277{bottom:720.140305pt;}
.y111{bottom:720.173333pt;}
.y314{bottom:721.253333pt;}
.y93{bottom:722.840000pt;}
.yda{bottom:723.400000pt;}
.yfe{bottom:725.266667pt;}
.yac{bottom:726.333333pt;}
.y2c9{bottom:734.613333pt;}
.y2a6{bottom:738.866667pt;}
.y2ff{bottom:745.000000pt;}
.y2c8{bottom:749.813333pt;}
.y1c{bottom:750.268301pt;}
.y92{bottom:750.600000pt;}
.y7b{bottom:750.866667pt;}
.y60{bottom:751.147200pt;}
.yfd{bottom:757.000000pt;}
.y49{bottom:757.692359pt;}
.y3b{bottom:757.708673pt;}
.y316{bottom:758.080000pt;}
.yab{bottom:762.866667pt;}
.ybf{bottom:763.133333pt;}
.y239{bottom:763.706667pt;}
.y2c7{bottom:764.746667pt;}
.y136{bottom:773.641546pt;}
.y2a5{bottom:775.666667pt;}
.y2c6{bottom:779.946667pt;}
.y1b{bottom:780.027901pt;}
.y2fe{bottom:781.800000pt;}
.y298{bottom:782.400000pt;}
.y297{bottom:784.800000pt;}
.y91{bottom:787.400000pt;}
.y7a{bottom:787.666667pt;}
.y5f{bottom:790.346406pt;}
.yfc{bottom:793.800000pt;}
.y315{bottom:794.880000pt;}
.y2c5{bottom:795.146667pt;}
.y48{bottom:799.457427pt;}
.y3a{bottom:799.468304pt;}
.ybe{bottom:799.666667pt;}
.yaa{bottom:799.933333pt;}
.y7{bottom:805.146240pt;}
.y1a{bottom:809.948127pt;}
.y2c3{bottom:810.346667pt;}
.y2a4{bottom:812.466667pt;}
.yec{bottom:817.266667pt;}
.y2fd{bottom:818.600000pt;}
.y294{bottom:822.720000pt;}
.y79{bottom:824.466667pt;}
.y2c0{bottom:825.280000pt;}
.y6{bottom:826.107067pt;}
.y90{bottom:827.666667pt;}
.y5e{bottom:828.747075pt;}
.yfb{bottom:830.600000pt;}
.y313{bottom:831.680000pt;}
.ya9{bottom:836.733333pt;}
.y19{bottom:839.707727pt;}
.y2bd{bottom:840.480000pt;}
.y47{bottom:841.222496pt;}
.y39{bottom:841.227934pt;}
.y5{bottom:848.666667pt;}
.y8f{bottom:849.000000pt;}
.y2a3{bottom:849.266667pt;}
.y2fc{bottom:855.400000pt;}
.y2ba{bottom:855.680000pt;}
.y296{bottom:859.693333pt;}
.y78{bottom:861.293333pt;}
.y5d{bottom:864.507067pt;}
.yfa{bottom:867.440000pt;}
.y312{bottom:868.520000pt;}
.y18{bottom:869.547640pt;}
.y8e{bottom:870.626667pt;}
.ya8{bottom:873.560000pt;}
.y4{bottom:878.426587pt;}
.yeb{bottom:878.626667pt;}
.y2bc{bottom:880.786667pt;}
.y38{bottom:882.987565pt;}
.y2a2{bottom:886.106667pt;}
.y332{bottom:891.960000pt;}
.y2fb{bottom:892.226667pt;}
.y17{bottom:899.387553pt;}
.y77{bottom:901.293333pt;}
.y5c{bottom:903.626474pt;}
.yf9{bottom:904.226667pt;}
.y73{bottom:906.107067pt;}
.y2b8{bottom:906.120000pt;}
.y3{bottom:908.347147pt;}
.y8d{bottom:910.373333pt;}
.y330{bottom:922.626667pt;}
.y2a1{bottom:922.893333pt;}
.y5b{bottom:924.507196pt;}
.y72{bottom:924.512634pt;}
.y37{bottom:924.747196pt;}
.y46{bottom:924.752634pt;}
.y2fa{bottom:929.040000pt;}
.y16{bottom:929.227466pt;}
.y2{bottom:938.107067pt;}
.y311{bottom:943.453333pt;}
.y76{bottom:944.226667pt;}
.y5a{bottom:945.387917pt;}
.y71{bottom:945.395168pt;}
.ya7{bottom:946.893333pt;}
.y8c{bottom:947.173333pt;}
.y15{bottom:958.987067pt;}
.y2a0{bottom:962.893333pt;}
.y2f9{bottom:965.840000pt;}
.y1{bottom:966.187067pt;}
.y36{bottom:966.427067pt;}
.h67{height:3.720000pt;}
.h69{height:3.984000pt;}
.h4f{height:10.653333pt;}
.h88{height:14.386667pt;}
.h8e{height:14.906667pt;}
.h92{height:14.917333pt;}
.h8b{height:14.920000pt;}
.h90{height:14.940000pt;}
.h91{height:14.953333pt;}
.h8f{height:15.173333pt;}
.h93{height:15.184000pt;}
.h8a{height:15.186667pt;}
.h8d{height:15.220000pt;}
.h63{height:24.506667pt;}
.h68{height:24.517333pt;}
.h64{height:24.520000pt;}
.h66{height:24.540000pt;}
.h6a{height:24.550667pt;}
.h65{height:24.553333pt;}
.h4b{height:25.306667pt;}
.h4e{height:26.373333pt;}
.h4c{height:26.386667pt;}
.h50{height:26.420000pt;}
.h52{height:26.653333pt;}
.h49{height:31.740000pt;}
.h1c{height:36.773333pt;}
.h28{height:36.786667pt;}
.h2c{height:36.806667pt;}
.h2b{height:36.820000pt;}
.h42{height:40.648438pt;}
.h8c{height:41.854167pt;}
.h17{height:41.875000pt;}
.h89{height:43.000000pt;}
.h7c{height:45.507675pt;}
.h25{height:46.198049pt;}
.h22{height:46.215176pt;}
.h72{height:46.498754pt;}
.h13{height:47.109375pt;}
.h62{height:49.573333pt;}
.h87{height:49.620000pt;}
.h98{height:50.120000pt;}
.h5e{height:50.530760pt;}
.h5c{height:50.660326pt;}
.h15{height:52.343750pt;}
.h31{height:52.474609pt;}
.h4d{height:52.773333pt;}
.h51{height:52.786667pt;}
.h38{height:54.437500pt;}
.h78{height:54.502165pt;}
.h6e{height:54.504253pt;}
.h39{height:54.568359pt;}
.h79{height:54.631624pt;}
.h6f{height:54.633717pt;}
.h32{height:55.484375pt;}
.h57{height:55.615234pt;}
.h99{height:56.156250pt;}
.h2a{height:57.578125pt;}
.h41{height:57.708984pt;}
.h7f{height:58.385930pt;}
.h75{height:58.388167pt;}
.h76{height:58.517631pt;}
.h14{height:59.125000pt;}
.h3{height:61.085156pt;}
.hc{height:62.726250pt;}
.h4a{height:62.781250pt;}
.he{height:62.812500pt;}
.h73{height:63.945062pt;}
.h7b{height:63.949876pt;}
.h71{height:63.951190pt;}
.h7d{height:64.075549pt;}
.h11{height:64.500000pt;}
.h40{height:64.634375pt;}
.ha{height:64.914375pt;}
.h1e{height:65.284028pt;}
.h1f{height:65.439097pt;}
.h2f{height:65.781915pt;}
.h9a{height:66.625000pt;}
.h3a{height:66.650000pt;}
.h33{height:67.725000pt;}
.h47{height:69.353333pt;}
.h8{height:71.163422pt;}
.h94{height:71.688333pt;}
.h1a{height:71.720833pt;}
.h16{height:71.741667pt;}
.h19{height:71.774167pt;}
.h9b{height:71.795000pt;}
.hb{height:73.074134pt;}
.h7{height:73.075275pt;}
.h1{height:73.082800pt;}
.h12{height:73.244792pt;}
.h18{height:73.281250pt;}
.h44{height:73.606667pt;}
.h5f{height:73.982216pt;}
.h60{height:74.111782pt;}
.h86{height:74.120000pt;}
.h29{height:74.953333pt;}
.hf{height:75.250000pt;}
.h58{height:75.384375pt;}
.h9{height:75.624413pt;}
.h5b{height:75.969797pt;}
.h5d{height:76.033240pt;}
.h10{height:77.729167pt;}
.h21{height:78.924798pt;}
.h23{height:79.139786pt;}
.h20{height:98.355375pt;}
.h4{height:101.706000pt;}
.h5{height:104.438400pt;}
.h2{height:104.448612pt;}
.h48{height:106.120000pt;}
.h85{height:108.468750pt;}
.h96{height:110.386667pt;}
.h3d{height:110.406667pt;}
.h35{height:110.420000pt;}
.h97{height:123.753333pt;}
.h6{height:125.452500pt;}
.h80{height:130.162500pt;}
.h81{height:144.625000pt;}
.h83{height:154.637500pt;}
.h84{height:155.750000pt;}
.h7a{height:159.276864pt;}
.h70{height:159.282965pt;}
.h26{height:163.530624pt;}
.h24{height:193.748239pt;}
.h95{height:220.826667pt;}
.h2e{height:220.850667pt;}
.h53{height:246.666667pt;}
.h82{height:252.297398pt;}
.h46{height:265.106667pt;}
.h37{height:268.800000pt;}
.h36{height:272.000000pt;}
.h45{height:284.800000pt;}
.h30{height:290.133333pt;}
.h43{height:303.520000pt;}
.h1d{height:335.356280pt;}
.h3e{height:340.000000pt;}
.h3f{height:340.266667pt;}
.h3b{height:358.440000pt;}
.h3c{height:358.480000pt;}
.h6d{height:368.032690pt;}
.h74{height:368.692513pt;}
.h77{height:369.007889pt;}
.h7e{height:369.667129pt;}
.h1b{height:372.093333pt;}
.h27{height:384.093333pt;}
.h6b{height:388.306667pt;}
.h6c{height:389.426667pt;}
.h5a{height:402.990696pt;}
.h56{height:404.000000pt;}
.h59{height:421.413333pt;}
.h55{height:422.493333pt;}
.h54{height:469.453333pt;}
.h34{height:577.720000pt;}
.h2d{height:617.453333pt;}
.h61{height:816.000000pt;}
.hd{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w5d{width:10.686667pt;}
.w8{width:34.932956pt;}
.w63{width:35.740000pt;}
.w56{width:35.973333pt;}
.w5b{width:36.006667pt;}
.w58{width:36.253333pt;}
.w14{width:40.806667pt;}
.w44{width:42.673333pt;}
.w18{width:43.206667pt;}
.w10{width:43.717333pt;}
.w55{width:45.573333pt;}
.w5a{width:45.586667pt;}
.w57{width:45.606667pt;}
.w59{width:45.620000pt;}
.w40{width:47.206667pt;}
.w43{width:50.686667pt;}
.w35{width:53.606667pt;}
.w3c{width:54.686667pt;}
.w13{width:55.173333pt;}
.w1b{width:55.740000pt;}
.w3a{width:56.020000pt;}
.w12{width:56.286667pt;}
.w3f{width:56.786667pt;}
.w17{width:57.040000pt;}
.w36{width:57.320000pt;}
.w25{width:57.353333pt;}
.w39{width:58.373333pt;}
.w33{width:58.420000pt;}
.w38{width:59.173333pt;}
.w16{width:59.753333pt;}
.w1a{width:59.986667pt;}
.w34{width:60.786667pt;}
.w3b{width:62.386667pt;}
.w41{width:62.920000pt;}
.w42{width:63.706667pt;}
.w26{width:66.106667pt;}
.w37{width:66.153333pt;}
.w60{width:66.386667pt;}
.w32{width:67.453333pt;}
.wc{width:68.017333pt;}
.w7{width:69.273828pt;}
.w3d{width:71.173333pt;}
.w62{width:71.186667pt;}
.w54{width:72.253333pt;}
.w11{width:72.806667pt;}
.w15{width:74.920000pt;}
.w28{width:75.486667pt;}
.w29{width:75.740000pt;}
.w27{width:75.753333pt;}
.w19{width:78.953333pt;}
.w3e{width:81.086667pt;}
.w50{width:81.573333pt;}
.w53{width:81.620000pt;}
.w51{width:81.873333pt;}
.w61{width:85.073333pt;}
.w52{width:91.220000pt;}
.w4b{width:93.004509pt;}
.w47{width:93.006420pt;}
.w31{width:99.486667pt;}
.w5f{width:104.017333pt;}
.w30{width:113.350667pt;}
.w5{width:116.048465pt;}
.w24{width:120.017333pt;}
.w2a{width:133.360000pt;}
.w64{width:142.426667pt;}
.w4c{width:156.326728pt;}
.w48{width:156.329940pt;}
.w5c{width:169.090667pt;}
.w4f{width:179.784000pt;}
.w6{width:199.532309pt;}
.wd{width:228.050667pt;}
.we{width:232.573333pt;}
.wf{width:237.933333pt;}
.w2e{width:457.002348pt;}
.w20{width:457.066667pt;}
.w4a{width:465.022546pt;}
.w4d{width:465.682152pt;}
.w46{width:466.021530pt;}
.w49{width:466.681150pt;}
.w21{width:480.000000pt;}
.w22{width:480.266667pt;}
.w1e{width:485.600000pt;}
.w1d{width:486.666667pt;}
.w2b{width:490.933333pt;}
.w23{width:520.000000pt;}
.w4{width:581.426491pt;}
.w3{width:583.650667pt;}
.w2d{width:593.333333pt;}
.w2c{width:593.517333pt;}
.w1f{width:598.850667pt;}
.w1c{width:603.733333pt;}
.wa{width:603.917333pt;}
.w9{width:603.933333pt;}
.w45{width:621.784000pt;}
.w5e{width:646.584000pt;}
.w4e{width:679.650667pt;}
.wb{width:766.650667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:816.000000pt;}
.w2f{width:1056.000000pt;}
.x0{left:0.000000pt;}
.xbf{left:3.733333pt;}
.x95{left:4.800000pt;}
.x42{left:7.200000pt;}
.x59{left:8.253333pt;}
.x57{left:9.333333pt;}
.x3e{left:10.229896pt;}
.x55{left:11.466667pt;}
.x3c{left:12.400871pt;}
.x58{left:13.333333pt;}
.x56{left:14.653333pt;}
.x4d{left:16.533333pt;}
.x49{left:17.866667pt;}
.x4a{left:19.493333pt;}
.x3a{left:20.643996pt;}
.x52{left:22.400000pt;}
.x92{left:23.609172pt;}
.x41{left:24.800000pt;}
.x6e{left:26.173333pt;}
.x85{left:27.506667pt;}
.x83{left:29.066667pt;}
.xa4{left:30.146667pt;}
.x80{left:31.460000pt;}
.x6d{left:32.840000pt;}
.x75{left:34.000000pt;}
.x63{left:35.400000pt;}
.x91{left:36.626667pt;}
.x89{left:37.640000pt;}
.x35{left:39.193333pt;}
.x61{left:40.200000pt;}
.x74{left:41.400000pt;}
.xc0{left:42.400000pt;}
.x66{left:44.600000pt;}
.x8b{left:45.733333pt;}
.x73{left:48.066667pt;}
.x6b{left:49.366667pt;}
.x60{left:50.733333pt;}
.x7c{left:51.733333pt;}
.xa8{left:52.801496pt;}
.x6f{left:54.200000pt;}
.x38{left:55.537480pt;}
.x7b{left:58.400000pt;}
.x8f{left:60.773333pt;}
.x8a{left:65.706667pt;}
.x88{left:66.666667pt;}
.x37{left:67.655465pt;}
.x67{left:69.506667pt;}
.x71{left:71.466667pt;}
.x62{left:75.533333pt;}
.x8c{left:80.373333pt;}
.x39{left:82.418093pt;}
.x46{left:89.626667pt;}
.x44{left:90.700000pt;}
.x43{left:92.833333pt;}
.x90{left:96.440000pt;}
.x5c{left:97.440000pt;}
.x78{left:100.573333pt;}
.x48{left:103.493333pt;}
.x33{left:106.166667pt;}
.x5b{left:107.440000pt;}
.x1{left:110.400000pt;}
.x20{left:113.366667pt;}
.x17{left:114.318404pt;}
.x36{left:119.979591pt;}
.x5{left:126.317333pt;}
.x40{left:130.433333pt;}
.x21{left:132.300000pt;}
.x15{left:136.480645pt;}
.x1e{left:137.920000pt;}
.x23{left:141.906667pt;}
.x7a{left:145.333333pt;}
.x10{left:149.361091pt;}
.x7e{left:151.933333pt;}
.x70{left:156.733333pt;}
.x22{left:160.600000pt;}
.x18{left:163.038880pt;}
.x5f{left:164.533333pt;}
.x77{left:165.600000pt;}
.x76{left:168.600000pt;}
.x2{left:169.920000pt;}
.x1b{left:171.278148pt;}
.x6c{left:176.800000pt;}
.x4{left:178.636908pt;}
.xbb{left:179.533333pt;}
.x12{left:181.440000pt;}
.x5e{left:182.773333pt;}
.xa5{left:184.922759pt;}
.x2a{left:187.000000pt;}
.x14{left:190.880584pt;}
.xa1{left:198.440000pt;}
.xe{left:204.160000pt;}
.x4b{left:209.400000pt;}
.x7d{left:211.173333pt;}
.x11{left:215.679008pt;}
.x27{left:225.133333pt;}
.x81{left:226.200000pt;}
.x3{left:237.679326pt;}
.x13{left:240.479918pt;}
.xba{left:244.600000pt;}
.xa2{left:245.666667pt;}
.x68{left:247.373333pt;}
.x64{left:250.600000pt;}
.xb2{left:255.306667pt;}
.x16{left:258.879199pt;}
.xa7{left:259.863895pt;}
.xaa{left:262.694864pt;}
.x4c{left:265.706667pt;}
.x19{left:275.597915pt;}
.xf{left:277.200169pt;}
.xab{left:281.853333pt;}
.x82{left:283.573333pt;}
.x1d{left:285.840000pt;}
.x9{left:291.600988pt;}
.x3b{left:299.381044pt;}
.xac{left:300.573333pt;}
.x3f{left:301.700000pt;}
.x96{left:308.600000pt;}
.xbc{left:312.106667pt;}
.x5d{left:318.933333pt;}
.x45{left:320.906667pt;}
.x65{left:324.173333pt;}
.x2c{left:333.440000pt;}
.x72{left:334.333333pt;}
.x8{left:336.960784pt;}
.x29{left:339.026667pt;}
.x94{left:340.360000pt;}
.xad{left:343.106667pt;}
.x30{left:345.173333pt;}
.xa6{left:347.189279pt;}
.x2f{left:348.106667pt;}
.x84{left:349.693333pt;}
.x31{left:357.466667pt;}
.x4e{left:361.733333pt;}
.xa9{left:364.005889pt;}
.x97{left:367.026667pt;}
.xae{left:373.853333pt;}
.x2b{left:374.800000pt;}
.xb5{left:382.533333pt;}
.x6{left:396.880000pt;}
.x24{left:407.866667pt;}
.xb3{left:418.800000pt;}
.x32{left:422.266667pt;}
.xb1{left:423.600000pt;}
.x34{left:424.673333pt;}
.x98{left:427.840000pt;}
.x4f{left:436.666667pt;}
.xb6{left:464.440000pt;}
.xb0{left:472.706667pt;}
.x99{left:481.466667pt;}
.x2d{left:488.173333pt;}
.x50{left:496.440000pt;}
.x86{left:500.973333pt;}
.xb{left:510.640984pt;}
.x69{left:527.900000pt;}
.x6a{left:539.366667pt;}
.xbd{left:543.906667pt;}
.x5a{left:545.233333pt;}
.xaf{left:546.128000pt;}
.x7f{left:547.366667pt;}
.x47{left:553.506667pt;}
.xb7{left:555.640000pt;}
.x79{left:559.393333pt;}
.x87{left:576.733333pt;}
.xbe{left:579.666667pt;}
.xb4{left:591.666667pt;}
.x51{left:596.733333pt;}
.x9a{left:604.973333pt;}
.x8d{left:607.673333pt;}
.x8e{left:624.206667pt;}
.x3d{left:625.619329pt;}
.xb8{left:637.266667pt;}
.x1c{left:662.560000pt;}
.x9b{left:664.173333pt;}
.x1a{left:666.880000pt;}
.x25{left:667.973333pt;}
.xd{left:670.320000pt;}
.xc{left:674.720000pt;}
.x53{left:675.693333pt;}
.xa{left:683.360824pt;}
.x7{left:684.399100pt;}
.x2e{left:686.626667pt;}
.x1f{left:694.626667pt;}
.x26{left:702.373333pt;}
.x28{left:703.706667pt;}
.xb9{left:719.173333pt;}
.x9c{left:722.560000pt;}
.xa3{left:727.893333pt;}
.x54{left:735.706667pt;}
.x9d{left:778.600000pt;}
.x9e{left:841.000000pt;}
.x9f{left:895.706667pt;}
.x93{left:945.840000pt;}
.xa0{left:966.893333pt;}
}




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