
    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_6669b210201e8b09d5c25682.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fe2c5fd25bdaeea06283bbc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_c123260616bdd382d7fa89f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_d7e06b5fe035d323104d572b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_aabb05294ae60201539f7665.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_56b2721fcb98c23e303fdac9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.142090;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_cccfef500d608a5e99bde040.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_ab13e5ed9f81ed88b78369b2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d84ff77f99b1b37f5b5a7485.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_5ad6631a5faa387192fcb948.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fcd76ba779cf63781411e1e3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf16cc81b31f03095c477ee9.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m29{transform:matrix(0.134944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134944,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.157067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157067,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.157158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157158,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.158121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158121,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.159257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159257,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.159612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159612,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.181658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181658,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.182553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182553,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.182658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182658,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.186389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186389,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.186918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186918,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.187703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187703,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.188853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.189671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189671,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.189728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189728,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.229832,0.000000,-0.076603,0.237975,0,0);-ms-transform:matrix(0.229832,0.000000,-0.076603,0.237975,0,0);-webkit-transform:matrix(0.229832,0.000000,-0.076603,0.237975,0,0);}
.m24{transform:matrix(0.230729,0.000000,-0.076901,0.237878,0,0);-ms-transform:matrix(0.230729,0.000000,-0.076901,0.237878,0,0);-webkit-transform:matrix(0.230729,0.000000,-0.076901,0.237878,0,0);}
.m1c{transform:matrix(0.231441,0.000000,-0.077139,0.237802,0,0);-ms-transform:matrix(0.231441,0.000000,-0.077139,0.237802,0,0);-webkit-transform:matrix(0.231441,0.000000,-0.077139,0.237802,0,0);}
.m30{transform:matrix(0.235608,0.000000,-0.078528,0.237346,0,0);-ms-transform:matrix(0.235608,0.000000,-0.078528,0.237346,0,0);-webkit-transform:matrix(0.235608,0.000000,-0.078528,0.237346,0,0);}
.m15{transform:matrix(0.235707,0.000000,-0.078561,0.237336,0,0);-ms-transform:matrix(0.235707,0.000000,-0.078561,0.237336,0,0);-webkit-transform:matrix(0.235707,0.000000,-0.078561,0.237336,0,0);}
.m2b{transform:matrix(0.236761,0.000000,-0.078912,0.237219,0,0);-ms-transform:matrix(0.236761,0.000000,-0.078912,0.237219,0,0);-webkit-transform:matrix(0.236761,0.000000,-0.078912,0.237219,0,0);}
.m4a{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.239209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239209,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239787,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.241446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241446,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.241446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241446,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.241936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241936,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.241982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241982,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242014,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.242486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242486,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.242679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242679,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.242719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242719,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.242893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242893,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.242962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242962,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.243313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243313,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243510,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244169,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.244169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244169,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.244612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244612,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.244666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244666,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.244881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244881,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245004,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246521,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247116,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248101,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248101,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250551,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250646,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251319,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251319,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252074,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252656,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252904,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253006,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253219,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.254181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254181,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.255058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255058,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255352,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.255558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255558,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255566,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.255602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255602,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259952,0.000000,0.000000,0.250000,0,0);}
.vd{vertical-align:-81.866431px;}
.v6{vertical-align:-74.618324px;}
.va{vertical-align:-70.967721px;}
.vc{vertical-align:-69.382714px;}
.v1{vertical-align:-63.686582px;}
.v4{vertical-align:-60.218010px;}
.ve{vertical-align:-48.580628px;}
.v7{vertical-align:-36.740584px;}
.vf{vertical-align:-32.626382px;}
.v10{vertical-align:-27.676845px;}
.v5{vertical-align:-22.541928px;}
.v3{vertical-align:-14.404937px;}
.v8{vertical-align:-13.029529px;}
.vb{vertical-align:-5.649117px;}
.v9{vertical-align:-3.886747px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.578302px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls73{letter-spacing:-0.219908px;}
.ls76{letter-spacing:-0.060000px;}
.ls26{letter-spacing:-0.018799px;}
.ls16{letter-spacing:-0.018660px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.005327px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls7e{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls75{letter-spacing:0.150572px;}
.ls6a{letter-spacing:0.180000px;}
.ls77{letter-spacing:0.216000px;}
.ls7d{letter-spacing:0.246000px;}
.ls2{letter-spacing:0.300000px;}
.lsb{letter-spacing:4.986506px;}
.ls29{letter-spacing:8.860825px;}
.lsc{letter-spacing:13.869677px;}
.ls32{letter-spacing:16.361327px;}
.ls18{letter-spacing:17.210547px;}
.ls39{letter-spacing:17.966126px;}
.ls68{letter-spacing:18.453304px;}
.ls12{letter-spacing:18.693664px;}
.ls58{letter-spacing:20.174615px;}
.ls5b{letter-spacing:20.611650px;}
.ls5a{letter-spacing:20.795136px;}
.ls66{letter-spacing:20.931318px;}
.ls4f{letter-spacing:21.223271px;}
.ls10{letter-spacing:21.528423px;}
.ls44{letter-spacing:23.641206px;}
.ls14{letter-spacing:24.134075px;}
.ls17{letter-spacing:24.602492px;}
.ls3d{letter-spacing:24.854442px;}
.ls25{letter-spacing:24.906103px;}
.ls40{letter-spacing:24.924048px;}
.ls65{letter-spacing:24.976991px;}
.ls43{letter-spacing:25.468027px;}
.ls34{letter-spacing:25.587259px;}
.ls3e{letter-spacing:25.601980px;}
.ls38{letter-spacing:26.143289px;}
.ls37{letter-spacing:27.504765px;}
.ls21{letter-spacing:28.195758px;}
.ls22{letter-spacing:29.602488px;}
.ls1a{letter-spacing:30.285898px;}
.ls47{letter-spacing:30.692659px;}
.ls59{letter-spacing:31.489161px;}
.ls6f{letter-spacing:32.522184px;}
.ls4e{letter-spacing:33.052437px;}
.ls57{letter-spacing:33.288105px;}
.ls70{letter-spacing:34.884332px;}
.ls5e{letter-spacing:38.237133px;}
.ls6c{letter-spacing:38.767386px;}
.ls2f{letter-spacing:38.776813px;}
.ls46{letter-spacing:42.887364px;}
.ls2b{letter-spacing:43.177536px;}
.ls45{letter-spacing:43.699845px;}
.ls2a{letter-spacing:43.931982px;}
.ls48{letter-spacing:44.480231px;}
.ls24{letter-spacing:44.483736px;}
.ls4a{letter-spacing:44.598687px;}
.ls19{letter-spacing:49.269088px;}
.ls49{letter-spacing:50.521488px;}
.ls4b{letter-spacing:51.824504px;}
.ls3a{letter-spacing:52.271321px;}
.lsd{letter-spacing:52.400612px;}
.ls4d{letter-spacing:53.555553px;}
.ls56{letter-spacing:53.850138px;}
.ls6b{letter-spacing:53.909055px;}
.ls72{letter-spacing:55.634381px;}
.ls51{letter-spacing:55.779895px;}
.ls63{letter-spacing:55.963381px;}
.ls64{letter-spacing:58.042895px;}
.ls54{letter-spacing:59.033841px;}
.ls5d{letter-spacing:62.900141px;}
.ls27{letter-spacing:64.540333px;}
.ls1d{letter-spacing:73.394599px;}
.ls23{letter-spacing:76.334810px;}
.ls67{letter-spacing:77.027117px;}
.ls1b{letter-spacing:79.365252px;}
.ls20{letter-spacing:80.428248px;}
.ls53{letter-spacing:83.345372px;}
.ls33{letter-spacing:84.600000px;}
.ls5c{letter-spacing:85.821378px;}
.ls6d{letter-spacing:87.427188px;}
.ls41{letter-spacing:87.884922px;}
.ls61{letter-spacing:90.864925px;}
.ls6e{letter-spacing:93.881143px;}
.ls69{letter-spacing:95.545877px;}
.ls42{letter-spacing:96.771116px;}
.ls60{letter-spacing:96.928844px;}
.ls52{letter-spacing:97.981789px;}
.ls50{letter-spacing:98.287600px;}
.ls2c{letter-spacing:103.669871px;}
.ls3b{letter-spacing:106.549760px;}
.ls1e{letter-spacing:108.979528px;}
.ls79{letter-spacing:119.334000px;}
.lsf{letter-spacing:124.200000px;}
.ls7b{letter-spacing:144.384000px;}
.ls7c{letter-spacing:144.534000px;}
.ls35{letter-spacing:175.810460px;}
.ls55{letter-spacing:179.171847px;}
.ls7a{letter-spacing:180.384000px;}
.ls78{letter-spacing:180.534000px;}
.ls36{letter-spacing:187.007047px;}
.ls62{letter-spacing:190.948281px;}
.ls5f{letter-spacing:195.133104px;}
.ls3f{letter-spacing:204.453259px;}
.ls2e{letter-spacing:209.288975px;}
.ls2d{letter-spacing:214.189904px;}
.lse{letter-spacing:229.100974px;}
.ls28{letter-spacing:268.758400px;}
.ls13{letter-spacing:284.830727px;}
.ls3c{letter-spacing:320.045395px;}
.ls11{letter-spacing:353.515258px;}
.ls31{letter-spacing:488.068409px;}
.ls1f{letter-spacing:530.149868px;}
.ls74{letter-spacing:704.602569px;}
.ls1c{letter-spacing:717.837364px;}
.ls4c{letter-spacing:914.787919px;}
.ls30{letter-spacing:916.970161px;}
.ls71{letter-spacing:981.579323px;}
.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;}
}
.ws29{word-spacing:-121.083363px;}
.ws70{word-spacing:-97.012381px;}
.ws76{word-spacing:-90.949222px;}
.ws7b{word-spacing:-87.510725px;}
.ws79{word-spacing:-74.640474px;}
.ws5a{word-spacing:-74.618381px;}
.ws57{word-spacing:-74.323796px;}
.ws75{word-spacing:-72.000000px;}
.ws38{word-spacing:-64.458722px;}
.ws4c{word-spacing:-64.226585px;}
.ws78{word-spacing:-58.129427px;}
.ws39{word-spacing:-43.259643px;}
.ws7a{word-spacing:-38.850312px;}
.ws25{word-spacing:-31.487597px;}
.ws18{word-spacing:-27.241323px;}
.wsa{word-spacing:-18.024000px;}
.ws8c{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws8b{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws5b{word-spacing:-12.994144px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws83{word-spacing:-3.648730px;}
.ws9{word-spacing:0.000000px;}
.ws46{word-spacing:0.984871px;}
.ws88{word-spacing:4.426489px;}
.ws48{word-spacing:5.303152px;}
.ws23{word-spacing:15.192129px;}
.ws4e{word-spacing:21.192703px;}
.ws85{word-spacing:21.825968px;}
.ws7f{word-spacing:21.928540px;}
.ws51{word-spacing:22.113136px;}
.ws72{word-spacing:22.692759px;}
.ws73{word-spacing:22.754592px;}
.ws86{word-spacing:22.890007px;}
.ws4d{word-spacing:22.978680px;}
.ws7e{word-spacing:23.154061px;}
.ws80{word-spacing:23.300297px;}
.ws32{word-spacing:23.474241px;}
.ws89{word-spacing:23.634864px;}
.ws27{word-spacing:25.474458px;}
.ws37{word-spacing:25.715341px;}
.ws2d{word-spacing:25.786605px;}
.ws3b{word-spacing:26.565395px;}
.ws4f{word-spacing:27.657974px;}
.ws7d{word-spacing:28.526433px;}
.ws68{word-spacing:28.935321px;}
.ws4a{word-spacing:29.697654px;}
.ws74{word-spacing:30.298234px;}
.ws4b{word-spacing:30.909803px;}
.ws55{word-spacing:31.321700px;}
.ws5e{word-spacing:31.436030px;}
.ws6e{word-spacing:31.511757px;}
.ws6f{word-spacing:31.677609px;}
.ws62{word-spacing:32.016926px;}
.ws5c{word-spacing:32.441983px;}
.ws77{word-spacing:32.709184px;}
.ws61{word-spacing:32.882248px;}
.ws5f{word-spacing:33.055313px;}
.ws54{word-spacing:33.804129px;}
.ws69{word-spacing:33.883681px;}
.ws58{word-spacing:34.180232px;}
.ws7c{word-spacing:35.740967px;}
.ws87{word-spacing:35.963242px;}
.ws81{word-spacing:36.350773px;}
.ws52{word-spacing:36.627550px;}
.ws8a{word-spacing:36.859033px;}
.ws5d{word-spacing:37.974725px;}
.ws60{word-spacing:38.679908px;}
.ws43{word-spacing:40.263231px;}
.ws2b{word-spacing:40.990280px;}
.ws47{word-spacing:42.228568px;}
.ws35{word-spacing:43.343510px;}
.ws6a{word-spacing:45.373939px;}
.ws1f{word-spacing:45.597005px;}
.ws36{word-spacing:46.613136px;}
.ws6b{word-spacing:47.470701px;}
.ws3c{word-spacing:47.765792px;}
.ws67{word-spacing:48.477147px;}
.ws28{word-spacing:49.496437px;}
.ws50{word-spacing:49.633948px;}
.ws66{word-spacing:50.493767px;}
.ws59{word-spacing:51.138759px;}
.ws65{word-spacing:54.225072px;}
.ws82{word-spacing:54.789820px;}
.ws63{word-spacing:55.462359px;}
.ws45{word-spacing:58.754122px;}
.ws13{word-spacing:58.851039px;}
.ws44{word-spacing:64.714824px;}
.wsc{word-spacing:64.874328px;}
.ws64{word-spacing:65.418987px;}
.ws42{word-spacing:66.233847px;}
.ws12{word-spacing:66.251914px;}
.ws3e{word-spacing:66.370222px;}
.ws1d{word-spacing:71.796389px;}
.ws49{word-spacing:75.627120px;}
.ws24{word-spacing:75.875772px;}
.ws2e{word-spacing:77.100219px;}
.ws1b{word-spacing:78.374794px;}
.ws19{word-spacing:78.421937px;}
.ws30{word-spacing:81.160585px;}
.ws31{word-spacing:81.359400px;}
.ws2a{word-spacing:81.394985px;}
.ws3a{word-spacing:83.056647px;}
.ws33{word-spacing:89.040825px;}
.ws3d{word-spacing:92.343352px;}
.ws15{word-spacing:96.527736px;}
.ws14{word-spacing:97.194594px;}
.ws40{word-spacing:111.278304px;}
.ws10{word-spacing:113.614637px;}
.ws11{word-spacing:118.736952px;}
.ws17{word-spacing:121.451564px;}
.ws41{word-spacing:122.770339px;}
.ws56{word-spacing:149.218928px;}
.ws22{word-spacing:158.939059px;}
.ws2c{word-spacing:161.142493px;}
.wse{word-spacing:223.870378px;}
.ws2f{word-spacing:228.116403px;}
.ws84{word-spacing:269.873951px;}
.wsd{word-spacing:273.403477px;}
.ws20{word-spacing:299.949358px;}
.ws21{word-spacing:330.850286px;}
.ws6c{word-spacing:337.914231px;}
.ws6d{word-spacing:365.172143px;}
.ws26{word-spacing:430.099268px;}
.ws16{word-spacing:452.572471px;}
.ws71{word-spacing:494.947294px;}
.ws1a{word-spacing:530.248797px;}
.ws1c{word-spacing:552.752382px;}
.wsf{word-spacing:654.243648px;}
.ws34{word-spacing:657.303882px;}
.ws1e{word-spacing:660.615361px;}
.ws3f{word-spacing:1012.133919px;}
.ws53{word-spacing:1229.877019px;}
._9c{margin-left:-1404.171407px;}
._9e{margin-left:-1269.317687px;}
._43{margin-left:-1107.696763px;}
._7a{margin-left:-1091.815264px;}
._a7{margin-left:-831.992843px;}
._a2{margin-left:-761.357415px;}
._96{margin-left:-654.393697px;}
._a8{margin-left:-601.413791px;}
._5c{margin-left:-532.602511px;}
._4e{margin-left:-510.648716px;}
._a5{margin-left:-473.599234px;}
._98{margin-left:-439.010326px;}
._4a{margin-left:-424.626840px;}
._4c{margin-left:-411.044720px;}
._ab{margin-left:-375.344629px;}
._a3{margin-left:-362.682253px;}
._58{margin-left:-237.451368px;}
._a1{margin-left:-233.633380px;}
._7b{margin-left:-216.157046px;}
._99{margin-left:-213.895880px;}
._95{margin-left:-212.166598px;}
._56{margin-left:-207.393011px;}
._8b{margin-left:-9.350544px;}
._35{margin-left:-7.752227px;}
._7f{margin-left:-6.219645px;}
._19{margin-left:-4.248000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._4{width:2.262000px;}
._5{width:3.312000px;}
._6{width:4.464000px;}
._a{width:6.192000px;}
._d{width:7.776000px;}
._e{width:9.102000px;}
._15{width:10.512000px;}
._14{width:11.736000px;}
._1f{width:12.816000px;}
._b{width:13.968000px;}
._c{width:15.120000px;}
._18{width:16.764000px;}
._8{width:19.512000px;}
._9{width:21.024000px;}
._7{width:22.896000px;}
._f{width:24.048000px;}
._1a{width:25.272000px;}
._26{width:26.280000px;}
._1e{width:27.720000px;}
._1d{width:29.376000px;}
._12{width:30.510000px;}
._13{width:31.824000px;}
._24{width:32.904000px;}
._20{width:33.912000px;}
._21{width:35.424000px;}
._27{width:36.432000px;}
._9a{width:38.376000px;}
._9b{width:39.414000px;}
._2d{width:40.608000px;}
._ac{width:41.838000px;}
._10{width:43.272000px;}
._11{width:44.496000px;}
._22{width:46.512000px;}
._23{width:47.766000px;}
._25{width:50.082000px;}
._ad{width:51.423303px;}
._a6{width:52.961557px;}
._8d{width:54.431952px;}
._6c{width:55.650184px;}
._8e{width:56.679926px;}
._16{width:58.032000px;}
._17{width:59.472000px;}
._b3{width:60.996955px;}
._72{width:62.147045px;}
._1b{width:63.720000px;}
._1c{width:65.580000px;}
._86{width:67.744996px;}
._2c{width:69.300000px;}
._87{width:71.241609px;}
._6a{width:73.183504px;}
._80{width:74.589291px;}
._6b{width:75.869518px;}
._a4{width:77.634482px;}
._41{width:78.682125px;}
._49{width:80.474976px;}
._65{width:84.111270px;}
._8a{width:85.120625px;}
._46{width:86.484801px;}
._8c{width:87.701478px;}
._67{width:88.941442px;}
._4f{width:90.931500px;}
._89{width:92.206958px;}
._76{width:93.546770px;}
._6e{width:96.915488px;}
._3d{width:101.016000px;}
._77{width:102.545322px;}
._55{width:103.789681px;}
._3c{width:106.200000px;}
._28{width:107.712000px;}
._7e{width:109.376741px;}
._85{width:111.066903px;}
._ae{width:112.519478px;}
._83{width:113.925955px;}
._36{width:116.616841px;}
._78{width:118.569007px;}
._97{width:119.993455px;}
._69{width:121.672990px;}
._32{width:123.271461px;}
._29{width:124.380000px;}
._61{width:126.802071px;}
._91{width:128.573471px;}
._2f{width:129.989252px;}
._31{width:132.172534px;}
._b0{width:133.200000px;}
._82{width:134.511983px;}
._44{width:136.485602px;}
._5b{width:137.907426px;}
._57{width:141.047538px;}
._54{width:142.632728px;}
._30{width:145.860032px;}
._48{width:147.338189px;}
._52{width:149.614229px;}
._59{width:151.691002px;}
._90{width:154.573325px;}
._8f{width:156.502347px;}
._9d{width:157.859982px;}
._3e{width:159.211642px;}
._79{width:160.891089px;}
._66{width:162.655261px;}
._50{width:164.460000px;}
._3a{width:165.547567px;}
._40{width:166.937101px;}
._5d{width:167.980460px;}
._51{width:169.170513px;}
._5a{width:170.987690px;}
._84{width:174.741384px;}
._62{width:179.132764px;}
._92{width:181.001990px;}
._73{width:186.745134px;}
._53{width:191.650412px;}
._4b{width:193.428000px;}
._34{width:195.096000px;}
._64{width:209.373417px;}
._5e{width:214.616922px;}
._75{width:218.832035px;}
._37{width:221.028691px;}
._aa{width:224.911238px;}
._4d{width:230.834255px;}
._6d{width:234.909983px;}
._60{width:236.270579px;}
._63{width:239.005530px;}
._39{width:247.206632px;}
._33{width:252.588933px;}
._a9{width:255.269836px;}
._2a{width:260.796000px;}
._68{width:270.689160px;}
._74{width:273.759973px;}
._af{width:280.099920px;}
._71{width:290.544410px;}
._45{width:295.919344px;}
._3f{width:297.318190px;}
._7c{width:313.061374px;}
._7d{width:317.892474px;}
._5f{width:334.416842px;}
._b1{width:337.628891px;}
._6f{width:359.887902px;}
._47{width:386.338384px;}
._3b{width:397.364176px;}
._88{width:407.847907px;}
._2b{width:410.448000px;}
._b2{width:415.749458px;}
._38{width:437.709102px;}
._9f{width:446.002368px;}
._42{width:474.192057px;}
._a0{width:496.829202px;}
._81{width:521.219725px;}
._94{width:523.016417px;}
._93{width:524.358345px;}
._2e{width:546.408000px;}
._70{width:610.629920px;}
.fc2{color:transparent;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs30{font-size:31.836108px;}
.fs41{font-size:35.677020px;}
.fs47{font-size:35.696836px;}
.fs2c{font-size:35.802080px;}
.fs1f{font-size:36.387819px;}
.fs31{font-size:43.791037px;}
.fs45{font-size:47.887045px;}
.fs13{font-size:48.146008px;}
.fs33{font-size:48.385166px;}
.fse{font-size:48.415340px;}
.fs3e{font-size:48.458509px;}
.fs3b{font-size:48.501689px;}
.fs23{font-size:48.505832px;}
.fs8{font-size:48.639034px;}
.fs43{font-size:48.745392px;}
.fs16{font-size:49.003747px;}
.fs1b{font-size:49.037288px;}
.fs48{font-size:49.136931px;}
.fs36{font-size:49.262666px;}
.fs2a{font-size:49.281800px;}
.fsc{font-size:49.996401px;}
.fs27{font-size:50.143801px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs42{font-size:61.833130px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2f{font-size:75.759321px;}
.fs32{font-size:79.798243px;}
.fs24{font-size:82.106960px;}
.fs46{font-size:82.674120px;}
.fsb{font-size:82.843281px;}
.fs40{font-size:82.925678px;}
.fs3a{font-size:83.072970px;}
.fs12{font-size:83.357285px;}
.fs15{font-size:83.536887px;}
.fs34{font-size:83.558835px;}
.fsf{font-size:83.653634px;}
.fs3c{font-size:83.829415px;}
.fs22{font-size:83.836576px;}
.fs3f{font-size:83.870497px;}
.fs9{font-size:83.972385px;}
.fs0{font-size:84.000000px;}
.fs35{font-size:84.296449px;}
.fs44{font-size:84.340540px;}
.fs1a{font-size:84.872228px;}
.fs17{font-size:84.879121px;}
.fs49{font-size:85.124787px;}
.fsa{font-size:85.357912px;}
.fs2b{font-size:85.375757px;}
.fs37{font-size:85.378904px;}
.fsd{font-size:86.532232px;}
.fs28{font-size:86.679021px;}
.fs1c{font-size:89.401083px;}
.fs2d{font-size:89.975684px;}
.fs2e{font-size:90.904850px;}
.fs26{font-size:90.941618px;}
.fs1e{font-size:90.971006px;}
.fs3d{font-size:104.674521px;}
.fs38{font-size:106.614614px;}
.fs11{font-size:109.225557px;}
.fs21{font-size:109.898178px;}
.fs14{font-size:110.153124px;}
.fs7{font-size:110.437054px;}
.fs18{font-size:111.273322px;}
.fs19{font-size:111.711241px;}
.fs25{font-size:113.449701px;}
.fs1d{font-size:113.749396px;}
.fs10{font-size:130.928046px;}
.fs20{font-size:131.762862px;}
.fs6{font-size:132.039418px;}
.fs39{font-size:133.186969px;}
.fs29{font-size:155.384478px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y16a{bottom:3.113996px;}
.y16f{bottom:3.113998px;}
.yc6{bottom:3.326642px;}
.ybd{bottom:3.326645px;}
.y1e7{bottom:3.332601px;}
.y1d1{bottom:3.332635px;}
.y225{bottom:3.332638px;}
.y1d3{bottom:3.332640px;}
.y1fe{bottom:3.332664px;}
.y201{bottom:3.332669px;}
.y1f2{bottom:3.332675px;}
.yba{bottom:3.332678px;}
.y1f7{bottom:3.332682px;}
.y11d{bottom:3.707498px;}
.y116{bottom:3.733881px;}
.y122{bottom:3.733891px;}
.y9d{bottom:3.733895px;}
.y1b0{bottom:3.733910px;}
.ye3{bottom:3.733918px;}
.yde{bottom:3.733937px;}
.y162{bottom:3.733940px;}
.y15f{bottom:3.733941px;}
.y119{bottom:3.744501px;}
.yec{bottom:3.744524px;}
.y20{bottom:3.900000px;}
.y1e{bottom:3.915000px;}
.y97{bottom:4.251530px;}
.y171{bottom:4.526281px;}
.y1dc{bottom:4.746517px;}
.y183{bottom:4.817777px;}
.y163{bottom:4.817833px;}
.y98{bottom:4.822420px;}
.y1e2{bottom:4.844947px;}
.y17a{bottom:4.844965px;}
.y15a{bottom:4.845007px;}
.y156{bottom:5.038248px;}
.y107{bottom:5.153524px;}
.y140{bottom:5.341501px;}
.ye7{bottom:5.375879px;}
.yd7{bottom:5.375901px;}
.y7{bottom:5.400000px;}
.y134{bottom:5.406638px;}
.y18a{bottom:5.486066px;}
.y1c4{bottom:5.641836px;}
.y1b8{bottom:5.785587px;}
.y22d{bottom:5.940672px;}
.y230{bottom:5.940674px;}
.yad{bottom:5.979772px;}
.yb{bottom:6.000000px;}
.y20d{bottom:6.198490px;}
.y211{bottom:6.198493px;}
.y20f{bottom:6.198495px;}
.y6b{bottom:6.300000px;}
.y71{bottom:6.450000px;}
.y194{bottom:6.459503px;}
.y19d{bottom:6.459505px;}
.y19a{bottom:6.459506px;}
.yc{bottom:6.750000px;}
.y236{bottom:6.800049px;}
.yfc{bottom:6.859228px;}
.y11e{bottom:6.895881px;}
.y11a{bottom:6.933037px;}
.yed{bottom:6.933064px;}
.y9b{bottom:6.933066px;}
.y220{bottom:6.989843px;}
.y21e{bottom:6.989845px;}
.y14b{bottom:7.665201px;}
.y14f{bottom:7.665224px;}
.y129{bottom:8.065297px;}
.yb6{bottom:8.103548px;}
.y8d{bottom:8.103558px;}
.y90{bottom:8.103579px;}
.y137{bottom:8.207588px;}
.y106{bottom:8.310941px;}
.yaa{bottom:8.753495px;}
.y10b{bottom:8.970683px;}
.y144{bottom:8.970702px;}
.yac{bottom:9.077666px;}
.y18d{bottom:9.142740px;}
.y17d{bottom:9.142766px;}
.y1ca{bottom:9.142767px;}
.y1ef{bottom:9.142800px;}
.y216{bottom:9.178566px;}
.y1cd{bottom:9.178569px;}
.y204{bottom:9.178573px;}
.y1fd{bottom:9.178585px;}
.y1ea{bottom:9.178593px;}
.y117{bottom:9.191002px;}
.y123{bottom:9.191016px;}
.y9e{bottom:9.191033px;}
.y15e{bottom:9.191051px;}
.y1b1{bottom:9.191065px;}
.ye4{bottom:9.191075px;}
.y160{bottom:9.191077px;}
.y1af{bottom:9.191080px;}
.ydf{bottom:9.191082px;}
.yca{bottom:9.272851px;}
.ycb{bottom:9.309086px;}
.y181{bottom:9.454142px;}
.y110{bottom:9.454159px;}
.y1a3{bottom:9.454207px;}
.y1a9{bottom:9.454214px;}
.y1a5{bottom:9.454220px;}
.ye5{bottom:9.491184px;}
.yd6{bottom:9.491207px;}
.y161{bottom:10.160487px;}
.y155{bottom:10.652125px;}
.yf4{bottom:10.778792px;}
.yd0{bottom:10.800141px;}
.yce{bottom:10.800148px;}
.ycc{bottom:10.800170px;}
.ycf{bottom:10.800174px;}
.y177{bottom:10.936196px;}
.y13f{bottom:10.976033px;}
.y113{bottom:11.011353px;}
.y111{bottom:11.011365px;}
.y112{bottom:11.011371px;}
.yd8{bottom:11.011379px;}
.ye9{bottom:11.011381px;}
.ye8{bottom:11.011396px;}
.ye6{bottom:11.011401px;}
.yd9{bottom:11.011411px;}
.yb3{bottom:11.079640px;}
.y8b{bottom:11.079675px;}
.y127{bottom:11.226058px;}
.y1bb{bottom:11.247566px;}
.y1be{bottom:11.247575px;}
.y22b{bottom:11.482895px;}
.y240{bottom:11.850000px;}
.y23e{bottom:11.865000px;}
.yb2{bottom:12.083600px;}
.y8c{bottom:12.119548px;}
.y237{bottom:12.327278px;}
.y11f{bottom:12.531363px;}
.y118{bottom:12.568366px;}
.y9c{bottom:12.568403px;}
.y126{bottom:12.715564px;}
.yc5{bottom:12.867427px;}
.ybc{bottom:12.867450px;}
.y151{bottom:13.099222px;}
.yb4{bottom:13.589614px;}
.y8e{bottom:13.589633px;}
.y93{bottom:13.589650px;}
.y91{bottom:13.589654px;}
.yc2{bottom:13.589693px;}
.y21c{bottom:13.909073px;}
.y14d{bottom:14.070909px;}
.y22f{bottom:14.235924px;}
.y189{bottom:14.414343px;}
.y16e{bottom:15.605715px;}
.y128{bottom:16.748512px;}
.y180{bottom:19.204920px;}
.y1a4{bottom:19.204966px;}
.y1a2{bottom:19.204970px;}
.y1aa{bottom:19.204979px;}
.y1a8{bottom:19.204982px;}
.y221{bottom:19.275219px;}
.y21d{bottom:19.275227px;}
.y21f{bottom:19.275235px;}
.y1c3{bottom:19.404174px;}
.y22e{bottom:19.742454px;}
.y232{bottom:19.742455px;}
.y231{bottom:19.742457px;}
.ya{bottom:19.950000px;}
.ycd{bottom:20.327260px;}
.y6{bottom:20.550000px;}
.y172{bottom:21.146140px;}
.y16c{bottom:21.146145px;}
.y170{bottom:21.146148px;}
.y193{bottom:22.389651px;}
.yb5{bottom:23.020536px;}
.yc1{bottom:23.020552px;}
.y92{bottom:23.020557px;}
.y8f{bottom:23.020559px;}
.y212{bottom:23.038661px;}
.y210{bottom:23.038670px;}
.y20e{bottom:23.038679px;}
.y199{bottom:24.022496px;}
.y1dd{bottom:24.178664px;}
.y1d{bottom:24.615000px;}
.ya9{bottom:24.675289px;}
.y133{bottom:24.817970px;}
.yfb{bottom:25.513825px;}
.ya3{bottom:27.593121px;}
.y136{bottom:27.618649px;}
.y6e{bottom:28.050000px;}
.y6a{bottom:28.200000px;}
.ya4{bottom:28.566227px;}
.y77{bottom:29.100000px;}
.y23d{bottom:29.115000px;}
.y22c{bottom:29.305176px;}
.ya6{bottom:30.078627px;}
.y19e{bottom:30.300885px;}
.y196{bottom:30.300910px;}
.y19c{bottom:30.300914px;}
.y154{bottom:30.841157px;}
.y105{bottom:30.957537px;}
.yf7{bottom:30.957543px;}
.yff{bottom:30.957546px;}
.y13e{bottom:32.537623px;}
.y139{bottom:32.537627px;}
.y132{bottom:32.537628px;}
.y13a{bottom:32.537635px;}
.y9{bottom:33.900000px;}
.y16b{bottom:34.507310px;}
.y5{bottom:36.000000px;}
.y1b7{bottom:37.839020px;}
.y1c2{bottom:39.672284px;}
.y198{bottom:39.735677px;}
.y192{bottom:39.735679px;}
.y14e{bottom:39.801067px;}
.y16d{bottom:40.627133px;}
.yab{bottom:42.146624px;}
.ya8{bottom:42.614607px;}
.y104{bottom:43.114226px;}
.ya7{bottom:43.226698px;}
.y1ba{bottom:43.301741px;}
.y1bd{bottom:43.301749px;}
.y195{bottom:43.438312px;}
.y19b{bottom:43.438317px;}
.y13d{bottom:43.513318px;}
.yfa{bottom:44.167941px;}
.y1c{bottom:45.315000px;}
.y153{bottom:46.567434px;}
.yf3{bottom:48.086458px;}
.ya5{bottom:48.630035px;}
.y103{bottom:49.538324px;}
.y102{bottom:49.611648px;}
.yf6{bottom:49.611659px;}
.yfe{bottom:49.611663px;}
.y135{bottom:49.733884px;}
.y6d{bottom:49.950000px;}
.y70{bottom:50.100000px;}
.y76{bottom:50.850000px;}
.y197{bottom:52.837160px;}
.y191{bottom:52.837162px;}
.y13c{bottom:53.186064px;}
.y13b{bottom:54.651504px;}
.y138{bottom:54.651529px;}
.y131{bottom:54.651548px;}
.y1c1{bottom:55.446909px;}
.y14c{bottom:56.499499px;}
.y150{bottom:56.499504px;}
.y152{bottom:56.679092px;}
.y3{bottom:57.637500px;}
.y1b{bottom:66.015000px;}
.y1b6{bottom:69.892155px;}
.y1c0{bottom:73.702436px;}
.y1bf{bottom:75.319303px;}
.y1bc{bottom:75.319316px;}
.y1b9{bottom:75.319318px;}
.y2{bottom:81.637500px;}
.yf9{bottom:83.689916px;}
.yf2{bottom:86.665481px;}
.y1a{bottom:86.715000px;}
.y101{bottom:89.133643px;}
.yf5{bottom:89.133649px;}
.yfd{bottom:89.133652px;}
.y100{bottom:98.569199px;}
.yf8{bottom:98.569201px;}
.y19{bottom:107.415000px;}
.y79{bottom:109.987500px;}
.y3d{bottom:115.837500px;}
.y12c{bottom:120.187500px;}
.y257{bottom:120.937500px;}
.y23b{bottom:121.387500px;}
.y18f{bottom:124.837500px;}
.y68{bottom:126.637500px;}
.y18{bottom:128.115000px;}
.y78{bottom:133.687500px;}
.yb7{bottom:138.037500px;}
.yb1{bottom:138.075000px;}
.y3c{bottom:139.687500px;}
.y1e5{bottom:142.387500px;}
.y1e6{bottom:142.425000px;}
.y12b{bottom:144.037500px;}
.y256{bottom:144.787500px;}
.y23a{bottom:145.237500px;}
.y18e{bottom:148.687500px;}
.y67{bottom:150.495000px;}
.y75{bottom:151.245000px;}
.y3b{bottom:163.395000px;}
.y12a{bottom:167.745000px;}
.y125{bottom:167.775000px;}
.y255{bottom:168.630000px;}
.y239{bottom:168.930000px;}
.y18c{bottom:172.545000px;}
.y18b{bottom:172.575000px;}
.y66{bottom:174.345000px;}
.y1e3{bottom:182.130000px;}
.y1e4{bottom:182.175000px;}
.yb0{bottom:182.745000px;}
.y3a{bottom:187.245000px;}
.y254{bottom:192.330000px;}
.y238{bottom:192.795000px;}
.y65{bottom:198.195000px;}
.yaf{bottom:206.580000px;}
.y39{bottom:211.095000px;}
.y253{bottom:216.195000px;}
.y234{bottom:216.495000px;}
.y235{bottom:216.524980px;}
.y187{bottom:217.095000px;}
.y188{bottom:217.125000px;}
.y74{bottom:218.295000px;}
.y124{bottom:219.045000px;}
.y1e0{bottom:221.745000px;}
.y1e1{bottom:221.774980px;}
.y64{bottom:221.895000px;}
.yae{bottom:230.445000px;}
.ya2{bottom:230.475000px;}
.y38{bottom:234.795000px;}
.y252{bottom:240.045000px;}
.y120{bottom:242.880000px;}
.y121{bottom:242.924980px;}
.y63{bottom:245.745000px;}
.y1df{bottom:251.745000px;}
.y233{bottom:257.145000px;}
.y22a{bottom:257.174980px;}
.y37{bottom:258.645000px;}
.y186{bottom:261.795000px;}
.y185{bottom:261.825000px;}
.y251{bottom:263.745000px;}
.y62{bottom:269.595000px;}
.y1de{bottom:275.445000px;}
.y1db{bottom:275.474980px;}
.y11b{bottom:278.445000px;}
.y11c{bottom:278.475000px;}
.y36{bottom:282.495000px;}
.y73{bottom:284.595000px;}
.y250{bottom:287.580000px;}
.y61{bottom:293.295000px;}
.y184{bottom:301.545000px;}
.y35{bottom:306.195000px;}
.y229{bottom:306.630000px;}
.ya1{bottom:307.695000px;}
.y24f{bottom:311.445000px;}
.y60{bottom:317.130000px;}
.y114{bottom:318.195000px;}
.y115{bottom:318.225000px;}
.y1da{bottom:321.045000px;}
.y17e{bottom:325.245000px;}
.y182{bottom:325.274980px;}
.y17f{bottom:325.275000px;}
.y72{bottom:328.995000px;}
.y34{bottom:330.045000px;}
.y228{bottom:330.495000px;}
.ya0{bottom:331.545000px;}
.y24e{bottom:335.145000px;}
.y5f{bottom:340.995000px;}
.y1d9{bottom:344.745000px;}
.y33{bottom:353.880000px;}
.y227{bottom:354.330000px;}
.y9f{bottom:355.395000px;}
.y10e{bottom:357.795000px;}
.y10f{bottom:357.824959px;}
.y24d{bottom:358.995000px;}
.y5e{bottom:364.695000px;}
.y17b{bottom:364.995000px;}
.y17c{bottom:365.024959px;}
.y1d8{bottom:368.580000px;}
.y32{bottom:377.595000px;}
.y226{bottom:378.045000px;}
.y99{bottom:379.095000px;}
.y9a{bottom:379.124959px;}
.y24c{bottom:382.875000px;}
.y5d{bottom:388.575000px;}
.y1d7{bottom:392.475000px;}
.y6f{bottom:395.175000px;}
.y10d{bottom:397.575000px;}
.y179{bottom:398.924959px;}
.y178{bottom:398.925000px;}
.y31{bottom:401.475000px;}
.y224{bottom:401.924959px;}
.y223{bottom:401.925000px;}
.y24b{bottom:406.725000px;}
.y5c{bottom:412.425000px;}
.y1d6{bottom:416.175000px;}
.y96{bottom:418.874959px;}
.y95{bottom:418.875000px;}
.y10c{bottom:421.425000px;}
.y30{bottom:425.325000px;}
.y176{bottom:428.925000px;}
.y21b{bottom:430.124959px;}
.y222{bottom:430.125000px;}
.y24a{bottom:430.425000px;}
.y5b{bottom:436.125000px;}
.y1d5{bottom:440.025000px;}
.y10a{bottom:445.124959px;}
.y109{bottom:445.125000px;}
.y8a{bottom:445.574959px;}
.y94{bottom:445.575000px;}
.y2f{bottom:449.025000px;}
.y249{bottom:454.275000px;}
.y5a{bottom:459.975000px;}
.y6c{bottom:461.475000px;}
.y1d4{bottom:463.875000px;}
.y2e{bottom:472.875000px;}
.y175{bottom:473.475000px;}
.y21a{bottom:475.725000px;}
.y248{bottom:478.125000px;}
.yf1{bottom:481.724959px;}
.y108{bottom:481.725000px;}
.y59{bottom:483.825000px;}
.y1d0{bottom:487.574959px;}
.y1d2{bottom:487.575000px;}
.y89{bottom:490.125000px;}
.y2d{bottom:496.725000px;}
.y174{bottom:497.325000px;}
.y247{bottom:497.925000px;}
.y219{bottom:499.575000px;}
.y58{bottom:507.525000px;}
.y88{bottom:513.975000px;}
.y1cf{bottom:515.925000px;}
.y2c{bottom:520.575000px;}
.y169{bottom:521.174959px;}
.y173{bottom:521.175000px;}
.y218{bottom:523.275000px;}
.y69{bottom:527.625000px;}
.y57{bottom:531.375000px;}
.y87{bottom:537.825000px;}
.y1ce{bottom:539.775000px;}
.y2b{bottom:544.275000px;}
.y217{bottom:547.125000px;}
.y56{bottom:555.225000px;}
.y86{bottom:561.525000px;}
.y1cc{bottom:563.474959px;}
.y1cb{bottom:563.475000px;}
.y2a{bottom:568.125000px;}
.y215{bottom:570.974959px;}
.y214{bottom:570.975000px;}
.y55{bottom:579.075000px;}
.y168{bottom:582.975000px;}
.y85{bottom:585.375000px;}
.y29{bottom:591.975000px;}
.y1c9{bottom:597.524959px;}
.y1c8{bottom:597.525000px;}
.yf0{bottom:601.575000px;}
.y54{bottom:602.775000px;}
.y20c{bottom:604.874959px;}
.y213{bottom:604.875000px;}
.y167{bottom:606.825000px;}
.y84{bottom:609.225000px;}
.y28{bottom:615.675000px;}
.yef{bottom:625.275000px;}
.y53{bottom:626.625000px;}
.y166{bottom:630.525000px;}
.y1c7{bottom:631.575000px;}
.y83{bottom:632.925000px;}
.y27{bottom:639.525000px;}
.yee{bottom:649.125000px;}
.y52{bottom:650.475000px;}
.y165{bottom:654.375000px;}
.y1c6{bottom:655.275000px;}
.y82{bottom:656.775000px;}
.y20b{bottom:658.575000px;}
.y26{bottom:663.375000px;}
.yeb{bottom:672.974959px;}
.yea{bottom:672.975000px;}
.y51{bottom:674.175000px;}
.y164{bottom:678.225000px;}
.y81{bottom:680.625000px;}
.y20a{bottom:682.425000px;}
.y25{bottom:687.075000px;}
.y1b5{bottom:690.974919px;}
.y1c5{bottom:690.975000px;}
.y50{bottom:698.025000px;}
.y15d{bottom:701.924919px;}
.y15c{bottom:701.925000px;}
.y80{bottom:704.325000px;}
.y209{bottom:706.125000px;}
.y24{bottom:710.925000px;}
.ye2{bottom:712.574919px;}
.ye1{bottom:712.575000px;}
.y4f{bottom:721.875000px;}
.y7f{bottom:728.175000px;}
.y208{bottom:729.974919px;}
.y207{bottom:729.975000px;}
.y23{bottom:734.775000px;}
.y15b{bottom:737.670000px;}
.y4e{bottom:745.620000px;}
.y7e{bottom:752.070000px;}
.ydd{bottom:752.324919px;}
.ye0{bottom:752.370000px;}
.y206{bottom:758.370000px;}
.y159{bottom:761.324919px;}
.y158{bottom:761.370000px;}
.y22{bottom:767.520000px;}
.y4d{bottom:769.470000px;}
.y7d{bottom:775.770000px;}
.y205{bottom:782.070000px;}
.y21{bottom:784.320000px;}
.ydc{bottom:788.070000px;}
.y14a{bottom:791.324919px;}
.y157{bottom:791.370000px;}
.y4c{bottom:793.320000px;}
.y1b4{bottom:795.270000px;}
.y7c{bottom:799.620000px;}
.y246{bottom:799.770000px;}
.y1f{bottom:805.020000px;}
.y203{bottom:805.874919px;}
.y202{bottom:805.920000px;}
.ydb{bottom:811.770000px;}
.y4b{bottom:817.020000px;}
.y1b3{bottom:819.120000px;}
.y7b{bottom:823.470000px;}
.y245{bottom:823.620000px;}
.y17{bottom:825.705000px;}
.yd5{bottom:835.574919px;}
.yda{bottom:835.620000px;}
.y200{bottom:839.924919px;}
.y1ff{bottom:839.955000px;}
.y4a{bottom:840.870000px;}
.y1b2{bottom:842.970000px;}
.y7a{bottom:843.420000px;}
.y244{bottom:847.320000px;}
.y49{bottom:864.720000px;}
.y1ae{bottom:866.624919px;}
.y1ad{bottom:866.670000px;}
.y1fc{bottom:868.124919px;}
.y1fb{bottom:868.170000px;}
.y243{bottom:871.170000px;}
.yd4{bottom:875.370000px;}
.y149{bottom:877.620000px;}
.y48{bottom:888.420000px;}
.y242{bottom:895.020000px;}
.yd3{bottom:899.070000px;}
.y148{bottom:901.470000px;}
.y1fa{bottom:902.220000px;}
.y1ac{bottom:902.370000px;}
.y47{bottom:912.270000px;}
.y241{bottom:918.720000px;}
.yd2{bottom:922.920000px;}
.y147{bottom:925.320000px;}
.y1f9{bottom:926.070000px;}
.y1ab{bottom:926.220000px;}
.y23f{bottom:935.970000px;}
.y46{bottom:936.120000px;}
.yc9{bottom:946.574919px;}
.yd1{bottom:946.620000px;}
.y146{bottom:949.020000px;}
.y1f6{bottom:949.724919px;}
.y1f8{bottom:949.770000px;}
.y1a7{bottom:949.874919px;}
.y1a6{bottom:949.920000px;}
.y45{bottom:959.970000px;}
.y145{bottom:972.870000px;}
.y16{bottom:974.220000px;}
.y1f5{bottom:978.074919px;}
.y1f4{bottom:978.120000px;}
.y23c{bottom:981.255000px;}
.y44{bottom:983.670000px;}
.yc8{bottom:987.270000px;}
.y1a1{bottom:989.624919px;}
.y1a0{bottom:989.670000px;}
.y15{bottom:993.420000px;}
.y143{bottom:996.524919px;}
.y142{bottom:996.570000px;}
.y1f3{bottom:1006.470000px;}
.y43{bottom:1007.520000px;}
.yc7{bottom:1011.120000px;}
.y14{bottom:1014.120000px;}
.y190{bottom:1029.374919px;}
.y19f{bottom:1029.420000px;}
.y1f1{bottom:1030.124919px;}
.y1f0{bottom:1030.170000px;}
.y42{bottom:1031.370000px;}
.y130{bottom:1033.124919px;}
.y141{bottom:1033.170000px;}
.y13{bottom:1034.820000px;}
.yc4{bottom:1034.924919px;}
.yc3{bottom:1034.970000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y1ee{bottom:1058.474919px;}
.y1ed{bottom:1058.520000px;}
.yc0{bottom:1067.924919px;}
.ybf{bottom:1067.970000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y1ec{bottom:1092.570000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.ybb{bottom:1112.624919px;}
.ybe{bottom:1112.700000px;}
.y12f{bottom:1114.650000px;}
.y1eb{bottom:1116.300000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y12e{bottom:1138.424919px;}
.y12d{bottom:1138.500000px;}
.y1e9{bottom:1140.074919px;}
.y1e8{bottom:1140.150000px;}
.yb9{bottom:1145.774919px;}
.yb8{bottom:1145.850000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h1f{height:18.000939px;}
.h21{height:19.649643px;}
.he{height:20.685000px;}
.hf{height:20.700000px;}
.h99{height:21.299546px;}
.h84{height:21.299566px;}
.h93{height:21.299586px;}
.h33{height:21.299627px;}
.h98{height:22.950625px;}
.h81{height:22.950646px;}
.h75{height:22.950687px;}
.h35{height:26.100034px;}
.h85{height:27.000188px;}
.h82{height:27.000229px;}
.h9a{height:27.000270px;}
.h56{height:28.650066px;}
.h5a{height:28.650087px;}
.h26{height:28.650107px;}
.h45{height:28.650148px;}
.h52{height:29.549667px;}
.h6d{height:29.549708px;}
.h67{height:31.229854px;}
.h57{height:32.700352px;}
.h23{height:32.700393px;}
.h41{height:32.700433px;}
.hb2{height:33.599777px;}
.h39{height:33.599838px;}
.h95{height:35.015044px;}
.hab{height:35.034492px;}
.h5f{height:35.120302px;}
.h49{height:35.694887px;}
.h31{height:37.648861px;}
.h16{height:37.648902px;}
.h38{height:37.648943px;}
.h94{height:38.548930px;}
.ha3{height:38.550431px;}
.h6b{height:40.562303px;}
.haa{height:42.598268px;}
.h68{height:42.957125px;}
.hb5{height:43.035000px;}
.hb3{height:43.050000px;}
.h11{height:43.650000px;}
.h5b{height:44.250654px;}
.ha8{height:44.356311px;}
.h8b{height:44.925637px;}
.h50{height:44.929474px;}
.h1d{height:45.052855px;}
.ha1{height:45.151371px;}
.h6{height:45.300000px;}
.hb0{height:45.514042px;}
.h9c{height:46.650662px;}
.ha6{height:46.975133px;}
.ha4{height:46.998516px;}
.h2d{height:47.229165px;}
.h72{height:47.463769px;}
.h6f{height:47.487395px;}
.h27{height:47.493368px;}
.h46{height:47.517008px;}
.h8e{height:47.559377px;}
.h89{height:47.578073px;}
.h4e{height:47.582137px;}
.h87{height:47.601755px;}
.h1b{height:47.712802px;}
.h19{height:47.736552px;}
.h9f{height:47.817135px;}
.h9d{height:47.840936px;}
.h36{height:48.070570px;}
.h3d{height:48.103472px;}
.hae{height:48.201218px;}
.hac{height:48.225211px;}
.h7d{height:48.324558px;}
.h60{height:48.343328px;}
.h7b{height:48.348612px;}
.h5d{height:48.367392px;}
.h3{height:48.600000px;}
.h24{height:49.044321px;}
.h43{height:49.068733px;}
.h58{height:49.188915px;}
.h7{height:52.998047px;}
.h7a{height:54.748449px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.hb4{height:60.468750px;}
.h96{height:60.685836px;}
.hb6{height:64.546875px;}
.hc{height:64.775391px;}
.h12{height:65.400000px;}
.h14{height:65.437500px;}
.h13{height:65.550000px;}
.h9{height:65.645508px;}
.h86{height:66.299432px;}
.h15{height:66.300000px;}
.h6c{height:70.173550px;}
.h29{height:70.351837px;}
.h10{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h6a{height:73.914681px;}
.h97{height:74.004654px;}
.h69{height:74.316638px;}
.h66{height:74.353630px;}
.h65{height:74.551820px;}
.ha9{height:76.578519px;}
.h30{height:77.211313px;}
.h34{height:77.377673px;}
.h74{height:77.398003px;}
.h8c{height:77.648633px;}
.h51{height:77.655266px;}
.h91{height:77.686686px;}
.h1e{height:77.781061px;}
.h71{height:78.121680px;}
.ha2{height:78.122072px;}
.h78{height:78.223809px;}
.h40{height:78.614559px;}
.h37{height:78.620944px;}
.hb1{height:78.848496px;}
.h63{height:79.080963px;}
.h6e{height:79.351291px;}
.h48{height:80.152170px;}
.h53{height:80.583491px;}
.ha7{height:81.099760px;}
.ha5{height:81.140128px;}
.h22{height:81.265699px;}
.h92{height:81.387017px;}
.h83{height:81.531577px;}
.h2e{height:81.769914px;}
.h2c{height:81.810616px;}
.h79{height:81.946097px;}
.h73{height:81.967627px;}
.h9b{height:81.986886px;}
.h70{height:82.008427px;}
.h28{height:82.060620px;}
.h77{height:82.101466px;}
.h8a{height:82.233054px;}
.h4f{height:82.240078px;}
.h90{height:82.273353px;}
.h88{height:82.273986px;}
.h4d{height:82.281014px;}
.h8f{height:82.314306px;}
.h1c{height:82.373301px;}
.h1a{height:82.414303px;}
.h2{height:82.441406px;}
.h76{height:82.691194px;}
.ha0{height:82.734445px;}
.h9e{height:82.775627px;}
.h3f{height:82.809499px;}
.h3e{height:83.256009px;}
.h3c{height:83.297451px;}
.h62{height:83.341735px;}
.haf{height:83.503758px;}
.had{height:83.545323px;}
.h20{height:83.732444px;}
.h61{height:83.749949px;}
.h7e{height:83.753036px;}
.h5e{height:83.791637px;}
.h7c{height:83.794725px;}
.h64{height:84.202393px;}
.h55{height:84.236450px;}
.h47{height:84.263671px;}
.h25{height:84.884401px;}
.h44{height:84.926653px;}
.h59{height:85.028395px;}
.h7f{height:86.006469px;}
.h2f{height:94.789615px;}
.h8d{height:97.346589px;}
.h2b{height:101.172306px;}
.h4c{height:101.795333px;}
.h32{height:102.031483px;}
.h18{height:102.294479px;}
.h3a{height:103.069088px;}
.h3b{height:103.474719px;}
.h54{height:105.085001px;}
.h42{height:105.362599px;}
.h4a{height:112.795948px;}
.h2a{height:121.274659px;}
.h4b{height:122.047924px;}
.h17{height:122.304089px;}
.h80{height:123.367032px;}
.h5c{height:143.927907px;}
.hd{height:144.900000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w4b{width:19.649933px;}
.w4a{width:19.649944px;}
.w3b{width:19.649964px;}
.w3c{width:21.299117px;}
.w10{width:21.299158px;}
.w3d{width:21.299199px;}
.w25{width:22.949779px;}
.w19{width:22.949799px;}
.w22{width:22.949840px;}
.w39{width:24.600107px;}
.w32{width:25.350010px;}
.we{width:26.100617px;}
.w21{width:26.100678px;}
.w30{width:26.999441px;}
.w15{width:26.999461px;}
.w2b{width:27.899082px;}
.w20{width:28.649795px;}
.wd{width:34.350179px;}
.w24{width:35.999851px;}
.w47{width:35.999857px;}
.w1b{width:35.999933px;}
.w51{width:37.649695px;}
.w12{width:37.649716px;}
.w2e{width:38.548908px;}
.wf{width:40.799600px;}
.w34{width:42.600256px;}
.w13{width:44.999927px;}
.w29{width:46.649839px;}
.w3e{width:46.649900px;}
.w27{width:47.550003px;}
.w2a{width:47.550023px;}
.w53{width:54.900803px;}
.w31{width:58.798255px;}
.w42{width:58.798291px;}
.w40{width:61.350908px;}
.w45{width:61.351993px;}
.w4e{width:61.352008px;}
.w46{width:62.998744px;}
.w35{width:62.998759px;}
.w2f{width:63.901732px;}
.w1d{width:64.651299px;}
.w44{width:64.651339px;}
.w5b{width:66.750000px;}
.w56{width:67.050000px;}
.w33{width:67.951151px;}
.w14{width:67.951172px;}
.w5c{width:74.250000px;}
.w57{width:74.550000px;}
.w5a{width:81.637500px;}
.w55{width:81.937500px;}
.w5d{width:87.450000px;}
.w58{width:87.600000px;}
.w48{width:88.351007px;}
.w37{width:95.696205px;}
.w59{width:96.450000px;}
.w54{width:96.600000px;}
.w4f{width:100.647230px;}
.w1e{width:104.699369px;}
.w1a{width:117.903730px;}
.w17{width:138.305965px;}
.w49{width:140.703549px;}
.w38{width:144.903511px;}
.w18{width:166.788650px;}
.w50{width:170.098218px;}
.w3f{width:172.653749px;}
.w1f{width:175.803557px;}
.w6{width:178.350000px;}
.w4d{width:180.007917px;}
.w9{width:190.995000px;}
.w1c{width:196.354116px;}
.wa{width:200.100000px;}
.w4c{width:217.649299px;}
.w2c{width:224.993442px;}
.w36{width:238.947088px;}
.wc{width:251.989957px;}
.w28{width:254.553534px;}
.w43{width:255.309589px;}
.w5{width:262.995000px;}
.w23{width:275.702266px;}
.w52{width:281.401094px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w16{width:300.313446px;}
.w2d{width:333.746898px;}
.w11{width:336.160043px;}
.w3a{width:338.849580px;}
.w26{width:346.047038px;}
.w41{width:348.303141px;}
.wb{width:391.845000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x54{left:1.044611px;}
.x2d{left:2.631482px;}
.x28{left:4.301217px;}
.xab{left:5.344605px;}
.x4{left:6.900000px;}
.xcc{left:8.100000px;}
.xaf{left:11.401519px;}
.x9{left:12.435000px;}
.x33{left:14.164787px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x88{left:18.344083px;}
.x4a{left:19.392857px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xac{left:23.690670px;}
.x2a{left:25.048055px;}
.x84{left:27.668994px;}
.x7b{left:29.732419px;}
.xb{left:32.100000px;}
.x9c{left:34.823923px;}
.x7f{left:35.859447px;}
.x41{left:37.386068px;}
.x35{left:38.395293px;}
.x9f{left:39.498876px;}
.x22{left:40.553635px;}
.x3{left:42.599987px;}
.x5d{left:45.347153px;}
.x40{left:46.652457px;}
.x8f{left:47.959093px;}
.x56{left:49.645658px;}
.x57{left:52.515503px;}
.x47{left:54.618928px;}
.x3b{left:56.674648px;}
.x6d{left:57.876425px;}
.x27{left:58.951099px;}
.x44{left:60.820373px;}
.x90{left:62.994618px;}
.x60{left:65.739963px;}
.x81{left:66.946608px;}
.x8d{left:68.628014px;}
.xca{left:69.673731px;}
.x66{left:70.901847px;}
.xad{left:72.164557px;}
.x5c{left:73.959949px;}
.x7a{left:76.685848px;}
.x63{left:82.779522px;}
.x62{left:84.115505px;}
.x99{left:85.199987px;}
.x8e{left:86.906772px;}
.xa2{left:89.035405px;}
.xc7{left:90.396034px;}
.x36{left:91.753059px;}
.x7d{left:94.034872px;}
.x1c{left:95.699987px;}
.x53{left:98.338020px;}
.x1a{left:100.200000px;}
.x38{left:101.380206px;}
.x10{left:103.649987px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x46{left:108.121296px;}
.xc2{left:109.296661px;}
.x26{left:110.420650px;}
.x11{left:111.599987px;}
.x75{left:112.803749px;}
.x30{left:115.424990px;}
.x29{left:118.949840px;}
.x6{left:121.687500px;}
.xc1{left:124.387487px;}
.xa0{left:127.121294px;}
.xa{left:128.130000px;}
.xa1{left:129.187574px;}
.x25{left:131.310965px;}
.x3a{left:134.079408px;}
.xcb{left:135.974990px;}
.x74{left:137.614861px;}
.x2c{left:140.024990px;}
.x3d{left:142.588506px;}
.x9d{left:144.117434px;}
.xbc{left:146.587487px;}
.xbd{left:148.237487px;}
.x65{left:153.064847px;}
.x7e{left:154.435757px;}
.x31{left:156.179987px;}
.x61{left:160.752403px;}
.x9b{left:162.454632px;}
.x52{left:163.673286px;}
.x9e{left:167.129585px;}
.x64{left:169.275907px;}
.x23{left:172.840510px;}
.x2e{left:174.329987px;}
.x7c{left:178.397168px;}
.x78{left:179.474980px;}
.x97{left:181.574980px;}
.x45{left:184.731496px;}
.x87{left:188.774980px;}
.x24{left:191.596658px;}
.xc9{left:193.166423px;}
.x79{left:202.394987px;}
.x3e{left:206.689977px;}
.x43{left:210.655325px;}
.x37{left:215.276592px;}
.x42{left:219.927677px;}
.xbe{left:225.944987px;}
.x94{left:227.744987px;}
.x95{left:233.624980px;}
.x89{left:235.394987px;}
.x3c{left:238.770526px;}
.x51{left:242.851299px;}
.xc4{left:245.129987px;}
.x39{left:247.506215px;}
.x98{left:249.494987px;}
.xbf{left:257.474980px;}
.x96{left:260.594987px;}
.x80{left:263.882198px;}
.xc8{left:265.844987px;}
.xc3{left:275.744987px;}
.xc0{left:277.079987px;}
.xc5{left:301.574980px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x2f{left:321.224980px;}
.x83{left:324.674980px;}
.x9a{left:330.224980px;}
.x92{left:339.074980px;}
.x2b{left:347.744987px;}
.x85{left:350.279987px;}
.x32{left:372.374959px;}
.x91{left:376.394987px;}
.x3f{left:378.824987px;}
.x93{left:385.724987px;}
.x82{left:388.724987px;}
.x34{left:393.674987px;}
.x8a{left:395.174987px;}
.x86{left:398.324959px;}
.xc6{left:402.224987px;}
.x8b{left:408.074959px;}
.x21{left:434.174987px;}
.x8c{left:435.974987px;}
.x1d{left:457.274987px;}
.x50{left:467.925000px;}
.xb7{left:472.874987px;}
.x6a{left:476.024959px;}
.x1e{left:478.574987px;}
.x6b{left:498.974987px;}
.x4b{left:502.274987px;}
.x20{left:510.374987px;}
.xa4{left:545.324959px;}
.x68{left:550.274959px;}
.xcd{left:553.875000px;}
.x48{left:556.274959px;}
.x4c{left:559.124959px;}
.xa8{left:565.274959px;}
.xb0{left:569.174987px;}
.x49{left:593.924987px;}
.x59{left:597.524959px;}
.xb1{left:603.675000px;}
.x4e{left:606.974959px;}
.xb9{left:612.374959px;}
.x69{left:614.924987px;}
.x5a{left:620.474987px;}
.xc{left:625.425000px;}
.x4d{left:627.074987px;}
.x17{left:629.474987px;}
.x4f{left:633.974987px;}
.x14{left:635.669987px;}
.xba{left:639.404987px;}
.xa5{left:641.069987px;}
.x13{left:648.704987px;}
.x1f{left:649.770000px;}
.xa6{left:653.024959px;}
.x6c{left:654.974959px;}
.x6f{left:658.574959px;}
.x16{left:675.119987px;}
.x58{left:677.204987px;}
.xa7{left:680.069987px;}
.xbb{left:684.374919px;}
.x70{left:687.254987px;}
.x12{left:696.569987px;}
.xa9{left:698.369987px;}
.xce{left:702.870000px;}
.x67{left:706.769987px;}
.x5e{left:709.724919px;}
.xf{left:713.655000px;}
.x71{left:718.574919px;}
.x5b{left:732.674919px;}
.x72{left:744.704987px;}
.x5f{left:745.754987px;}
.xa3{left:749.369987px;}
.xb8{left:755.204987px;}
.x55{left:768.254987px;}
.xb2{left:770.174919px;}
.xcf{left:777.420000px;}
.x76{left:779.475000px;}
.x15{left:785.069987px;}
.xb5{left:789.225000px;}
.xb3{left:791.504987px;}
.xae{left:796.154987px;}
.xb4{left:803.924919px;}
.xb6{left:805.619987px;}
.x77{left:815.504987px;}
.x2{left:819.119987px;}
.xaa{left:825.975000px;}
.x73{left:827.624919px;}
.x6e{left:830.819987px;}
.xd0{left:837.569987px;}
.x18{left:850.619987px;}
@media print{
.vd{vertical-align:-72.770161pt;}
.v6{vertical-align:-66.327399pt;}
.va{vertical-align:-63.082418pt;}
.vc{vertical-align:-61.673524pt;}
.v1{vertical-align:-56.610295pt;}
.v4{vertical-align:-53.527120pt;}
.ve{vertical-align:-43.182780pt;}
.v7{vertical-align:-32.658297pt;}
.vf{vertical-align:-29.001228pt;}
.v10{vertical-align:-24.601640pt;}
.v5{vertical-align:-20.037269pt;}
.v3{vertical-align:-12.804389pt;}
.v8{vertical-align:-11.581803pt;}
.vb{vertical-align:-5.021437pt;}
.v9{vertical-align:-3.454887pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.625158pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls73{letter-spacing:-0.195474pt;}
.ls76{letter-spacing:-0.053333pt;}
.ls26{letter-spacing:-0.016711pt;}
.ls16{letter-spacing:-0.016587pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.004735pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls7e{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls75{letter-spacing:0.133842pt;}
.ls6a{letter-spacing:0.160000pt;}
.ls77{letter-spacing:0.192000pt;}
.ls7d{letter-spacing:0.218667pt;}
.ls2{letter-spacing:0.266667pt;}
.lsb{letter-spacing:4.432450pt;}
.ls29{letter-spacing:7.876289pt;}
.lsc{letter-spacing:12.328602pt;}
.ls32{letter-spacing:14.543402pt;}
.ls18{letter-spacing:15.298264pt;}
.ls39{letter-spacing:15.969890pt;}
.ls68{letter-spacing:16.402937pt;}
.ls12{letter-spacing:16.616591pt;}
.ls58{letter-spacing:17.932991pt;}
.ls5b{letter-spacing:18.321466pt;}
.ls5a{letter-spacing:18.484566pt;}
.ls66{letter-spacing:18.605616pt;}
.ls4f{letter-spacing:18.865130pt;}
.ls10{letter-spacing:19.136376pt;}
.ls44{letter-spacing:21.014406pt;}
.ls14{letter-spacing:21.452511pt;}
.ls17{letter-spacing:21.868882pt;}
.ls3d{letter-spacing:22.092837pt;}
.ls25{letter-spacing:22.138758pt;}
.ls40{letter-spacing:22.154709pt;}
.ls65{letter-spacing:22.201770pt;}
.ls43{letter-spacing:22.638246pt;}
.ls34{letter-spacing:22.744230pt;}
.ls3e{letter-spacing:22.757315pt;}
.ls38{letter-spacing:23.238479pt;}
.ls37{letter-spacing:24.448680pt;}
.ls21{letter-spacing:25.062896pt;}
.ls22{letter-spacing:26.313323pt;}
.ls1a{letter-spacing:26.920798pt;}
.ls47{letter-spacing:27.282364pt;}
.ls59{letter-spacing:27.990365pt;}
.ls6f{letter-spacing:28.908608pt;}
.ls4e{letter-spacing:29.379944pt;}
.ls57{letter-spacing:29.589427pt;}
.ls70{letter-spacing:31.008295pt;}
.ls5e{letter-spacing:33.988563pt;}
.ls6c{letter-spacing:34.459899pt;}
.ls2f{letter-spacing:34.468278pt;}
.ls46{letter-spacing:38.122102pt;}
.ls2b{letter-spacing:38.380032pt;}
.ls45{letter-spacing:38.844307pt;}
.ls2a{letter-spacing:39.050651pt;}
.ls48{letter-spacing:39.537983pt;}
.ls24{letter-spacing:39.541099pt;}
.ls4a{letter-spacing:39.643278pt;}
.ls19{letter-spacing:43.794745pt;}
.ls49{letter-spacing:44.907989pt;}
.ls4b{letter-spacing:46.066226pt;}
.ls3a{letter-spacing:46.463396pt;}
.lsd{letter-spacing:46.578322pt;}
.ls4d{letter-spacing:47.604936pt;}
.ls56{letter-spacing:47.866789pt;}
.ls6b{letter-spacing:47.919160pt;}
.ls72{letter-spacing:49.452784pt;}
.ls51{letter-spacing:49.582129pt;}
.ls63{letter-spacing:49.745228pt;}
.ls64{letter-spacing:51.593685pt;}
.ls54{letter-spacing:52.474525pt;}
.ls5d{letter-spacing:55.911236pt;}
.ls27{letter-spacing:57.369185pt;}
.ls1d{letter-spacing:65.239643pt;}
.ls23{letter-spacing:67.853164pt;}
.ls67{letter-spacing:68.468549pt;}
.ls1b{letter-spacing:70.546890pt;}
.ls20{letter-spacing:71.491776pt;}
.ls53{letter-spacing:74.084775pt;}
.ls33{letter-spacing:75.200000pt;}
.ls5c{letter-spacing:76.285670pt;}
.ls6d{letter-spacing:77.713056pt;}
.ls41{letter-spacing:78.119931pt;}
.ls61{letter-spacing:80.768822pt;}
.ls6e{letter-spacing:83.449905pt;}
.ls69{letter-spacing:84.929668pt;}
.ls42{letter-spacing:86.018770pt;}
.ls60{letter-spacing:86.158972pt;}
.ls52{letter-spacing:87.094924pt;}
.ls50{letter-spacing:87.366756pt;}
.ls2c{letter-spacing:92.150996pt;}
.ls3b{letter-spacing:94.710898pt;}
.ls1e{letter-spacing:96.870692pt;}
.ls79{letter-spacing:106.074667pt;}
.lsf{letter-spacing:110.400000pt;}
.ls7b{letter-spacing:128.341333pt;}
.ls7c{letter-spacing:128.474667pt;}
.ls35{letter-spacing:156.275965pt;}
.ls55{letter-spacing:159.263864pt;}
.ls7a{letter-spacing:160.341333pt;}
.ls78{letter-spacing:160.474667pt;}
.ls36{letter-spacing:166.228486pt;}
.ls62{letter-spacing:169.731805pt;}
.ls5f{letter-spacing:173.451648pt;}
.ls3f{letter-spacing:181.736230pt;}
.ls2e{letter-spacing:186.034644pt;}
.ls2d{letter-spacing:190.391026pt;}
.lse{letter-spacing:203.645310pt;}
.ls28{letter-spacing:238.896356pt;}
.ls13{letter-spacing:253.182869pt;}
.ls3c{letter-spacing:284.484796pt;}
.ls11{letter-spacing:314.235784pt;}
.ls31{letter-spacing:433.838585pt;}
.ls1f{letter-spacing:471.244327pt;}
.ls74{letter-spacing:626.313395pt;}
.ls1c{letter-spacing:638.077657pt;}
.ls4c{letter-spacing:813.144817pt;}
.ls30{letter-spacing:815.084588pt;}
.ls71{letter-spacing:872.514954pt;}
.ws29{word-spacing:-107.629656pt;}
.ws70{word-spacing:-86.233227pt;}
.ws76{word-spacing:-80.843753pt;}
.ws7b{word-spacing:-77.787311pt;}
.ws79{word-spacing:-66.347088pt;}
.ws5a{word-spacing:-66.327449pt;}
.ws57{word-spacing:-66.065596pt;}
.ws75{word-spacing:-64.000000pt;}
.ws38{word-spacing:-57.296642pt;}
.ws4c{word-spacing:-57.090298pt;}
.ws78{word-spacing:-51.670602pt;}
.ws39{word-spacing:-38.453016pt;}
.ws7a{word-spacing:-34.533610pt;}
.ws25{word-spacing:-27.988975pt;}
.ws18{word-spacing:-24.214510pt;}
.wsa{word-spacing:-16.021333pt;}
.ws8c{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws8b{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws5b{word-spacing:-11.550351pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws83{word-spacing:-3.243315pt;}
.ws9{word-spacing:0.000000pt;}
.ws46{word-spacing:0.875441pt;}
.ws88{word-spacing:3.934657pt;}
.ws48{word-spacing:4.713913pt;}
.ws23{word-spacing:13.504115pt;}
.ws4e{word-spacing:18.837958pt;}
.ws85{word-spacing:19.400860pt;}
.ws7f{word-spacing:19.492036pt;}
.ws51{word-spacing:19.656121pt;}
.ws72{word-spacing:20.171341pt;}
.ws73{word-spacing:20.226304pt;}
.ws86{word-spacing:20.346673pt;}
.ws4d{word-spacing:20.425493pt;}
.ws7e{word-spacing:20.581388pt;}
.ws80{word-spacing:20.711375pt;}
.ws32{word-spacing:20.865992pt;}
.ws89{word-spacing:21.008768pt;}
.ws27{word-spacing:22.643963pt;}
.ws37{word-spacing:22.858081pt;}
.ws2d{word-spacing:22.921427pt;}
.ws3b{word-spacing:23.613685pt;}
.ws4f{word-spacing:24.584866pt;}
.ws7d{word-spacing:25.356829pt;}
.ws68{word-spacing:25.720286pt;}
.ws4a{word-spacing:26.397914pt;}
.ws74{word-spacing:26.931763pt;}
.ws4b{word-spacing:27.475380pt;}
.ws55{word-spacing:27.841511pt;}
.ws5e{word-spacing:27.943138pt;}
.ws6e{word-spacing:28.010451pt;}
.ws6f{word-spacing:28.157874pt;}
.ws62{word-spacing:28.459490pt;}
.ws5c{word-spacing:28.837319pt;}
.ws77{word-spacing:29.074830pt;}
.ws61{word-spacing:29.228665pt;}
.ws5f{word-spacing:29.382500pt;}
.ws54{word-spacing:30.048114pt;}
.ws69{word-spacing:30.118827pt;}
.ws58{word-spacing:30.382428pt;}
.ws7c{word-spacing:31.769748pt;}
.ws87{word-spacing:31.967327pt;}
.ws81{word-spacing:32.311798pt;}
.ws52{word-spacing:32.557822pt;}
.ws8a{word-spacing:32.763585pt;}
.ws5d{word-spacing:33.755311pt;}
.ws60{word-spacing:34.382140pt;}
.ws43{word-spacing:35.789538pt;}
.ws2b{word-spacing:36.435805pt;}
.ws47{word-spacing:37.536505pt;}
.ws35{word-spacing:38.527564pt;}
.ws6a{word-spacing:40.332390pt;}
.ws1f{word-spacing:40.530671pt;}
.ws36{word-spacing:41.433899pt;}
.ws6b{word-spacing:42.196179pt;}
.ws3c{word-spacing:42.458482pt;}
.ws67{word-spacing:43.090797pt;}
.ws28{word-spacing:43.996833pt;}
.ws50{word-spacing:44.119065pt;}
.ws66{word-spacing:44.883348pt;}
.ws59{word-spacing:45.456675pt;}
.ws65{word-spacing:48.200064pt;}
.ws82{word-spacing:48.702063pt;}
.ws63{word-spacing:49.299875pt;}
.ws45{word-spacing:52.225886pt;}
.ws13{word-spacing:52.312035pt;}
.ws44{word-spacing:57.524288pt;}
.wsc{word-spacing:57.666069pt;}
.ws64{word-spacing:58.150211pt;}
.ws42{word-spacing:58.874531pt;}
.ws12{word-spacing:58.890590pt;}
.ws3e{word-spacing:58.995753pt;}
.ws1d{word-spacing:63.819012pt;}
.ws49{word-spacing:67.224107pt;}
.ws24{word-spacing:67.445131pt;}
.ws2e{word-spacing:68.533528pt;}
.ws1b{word-spacing:69.666483pt;}
.ws19{word-spacing:69.708388pt;}
.ws30{word-spacing:72.142742pt;}
.ws31{word-spacing:72.319467pt;}
.ws2a{word-spacing:72.351098pt;}
.ws3a{word-spacing:73.828131pt;}
.ws33{word-spacing:79.147400pt;}
.ws3d{word-spacing:82.082979pt;}
.ws15{word-spacing:85.802432pt;}
.ws14{word-spacing:86.395195pt;}
.ws40{word-spacing:98.914048pt;}
.ws10{word-spacing:100.990788pt;}
.ws11{word-spacing:105.543957pt;}
.ws17{word-spacing:107.956945pt;}
.ws41{word-spacing:109.129190pt;}
.ws56{word-spacing:132.639047pt;}
.ws22{word-spacing:141.279163pt;}
.ws2c{word-spacing:143.237771pt;}
.wse{word-spacing:198.995891pt;}
.ws2f{word-spacing:202.770136pt;}
.ws84{word-spacing:239.887957pt;}
.wsd{word-spacing:243.025313pt;}
.ws20{word-spacing:266.621652pt;}
.ws21{word-spacing:294.089143pt;}
.ws6c{word-spacing:300.368205pt;}
.ws6d{word-spacing:324.597460pt;}
.ws26{word-spacing:382.310461pt;}
.ws16{word-spacing:402.286641pt;}
.ws71{word-spacing:439.953150pt;}
.ws1a{word-spacing:471.332264pt;}
.ws1c{word-spacing:491.335450pt;}
.wsf{word-spacing:581.549909pt;}
.ws34{word-spacing:584.270118pt;}
.ws1e{word-spacing:587.213654pt;}
.ws3f{word-spacing:899.674595pt;}
.ws53{word-spacing:1093.224017pt;}
._9c{margin-left:-1248.152361pt;}
._9e{margin-left:-1128.282389pt;}
._43{margin-left:-984.619345pt;}
._7a{margin-left:-970.502457pt;}
._a7{margin-left:-739.549194pt;}
._a2{margin-left:-676.762147pt;}
._96{margin-left:-581.683286pt;}
._a8{margin-left:-534.590037pt;}
._5c{margin-left:-473.424454pt;}
._4e{margin-left:-453.909970pt;}
._a5{margin-left:-420.977097pt;}
._98{margin-left:-390.231401pt;}
._4a{margin-left:-377.446080pt;}
._4c{margin-left:-365.373085pt;}
._ab{margin-left:-333.639670pt;}
._a3{margin-left:-322.384225pt;}
._58{margin-left:-211.067882pt;}
._a1{margin-left:-207.674116pt;}
._7b{margin-left:-192.139597pt;}
._99{margin-left:-190.129671pt;}
._95{margin-left:-188.592531pt;}
._56{margin-left:-184.349343pt;}
._8b{margin-left:-8.311595pt;}
._35{margin-left:-6.890869pt;}
._7f{margin-left:-5.528573pt;}
._19{margin-left:-3.776000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._4{width:2.010667pt;}
._5{width:2.944000pt;}
._6{width:3.968000pt;}
._a{width:5.504000pt;}
._d{width:6.912000pt;}
._e{width:8.090667pt;}
._15{width:9.344000pt;}
._14{width:10.432000pt;}
._1f{width:11.392000pt;}
._b{width:12.416000pt;}
._c{width:13.440000pt;}
._18{width:14.901333pt;}
._8{width:17.344000pt;}
._9{width:18.688000pt;}
._7{width:20.352000pt;}
._f{width:21.376000pt;}
._1a{width:22.464000pt;}
._26{width:23.360000pt;}
._1e{width:24.640000pt;}
._1d{width:26.112000pt;}
._12{width:27.120000pt;}
._13{width:28.288000pt;}
._24{width:29.248000pt;}
._20{width:30.144000pt;}
._21{width:31.488000pt;}
._27{width:32.384000pt;}
._9a{width:34.112000pt;}
._9b{width:35.034667pt;}
._2d{width:36.096000pt;}
._ac{width:37.189333pt;}
._10{width:38.464000pt;}
._11{width:39.552000pt;}
._22{width:41.344000pt;}
._23{width:42.458667pt;}
._25{width:44.517333pt;}
._ad{width:45.709603pt;}
._a6{width:47.076940pt;}
._8d{width:48.383958pt;}
._6c{width:49.466830pt;}
._8e{width:50.382156pt;}
._16{width:51.584000pt;}
._17{width:52.864000pt;}
._b3{width:54.219515pt;}
._72{width:55.241818pt;}
._1b{width:56.640000pt;}
._1c{width:58.293333pt;}
._86{width:60.217774pt;}
._2c{width:61.600000pt;}
._87{width:63.325874pt;}
._6a{width:65.052003pt;}
._80{width:66.301592pt;}
._6b{width:67.439571pt;}
._a4{width:69.008429pt;}
._41{width:69.939666pt;}
._49{width:71.533312pt;}
._65{width:74.765573pt;}
._8a{width:75.662778pt;}
._46{width:76.875378pt;}
._8c{width:77.956869pt;}
._67{width:79.059060pt;}
._4f{width:80.828000pt;}
._89{width:81.961740pt;}
._76{width:83.152685pt;}
._6e{width:86.147101pt;}
._3d{width:89.792000pt;}
._77{width:91.151397pt;}
._55{width:92.257494pt;}
._3c{width:94.400000pt;}
._28{width:95.744000pt;}
._7e{width:97.223770pt;}
._85{width:98.726136pt;}
._ae{width:100.017314pt;}
._83{width:101.267516pt;}
._36{width:103.659414pt;}
._78{width:105.394673pt;}
._97{width:106.660849pt;}
._69{width:108.153769pt;}
._32{width:109.574632pt;}
._29{width:110.560000pt;}
._61{width:112.712952pt;}
._91{width:114.287530pt;}
._2f{width:115.546001pt;}
._31{width:117.486697pt;}
._b0{width:118.400000pt;}
._82{width:119.566207pt;}
._44{width:121.320535pt;}
._5b{width:122.584379pt;}
._57{width:125.375589pt;}
._54{width:126.784648pt;}
._30{width:129.653362pt;}
._48{width:130.967279pt;}
._52{width:132.990426pt;}
._59{width:134.836447pt;}
._90{width:137.398511pt;}
._8f{width:139.113197pt;}
._9d{width:140.319984pt;}
._3e{width:141.521459pt;}
._79{width:143.014302pt;}
._66{width:144.582455pt;}
._50{width:146.186667pt;}
._3a{width:147.153393pt;}
._40{width:148.388534pt;}
._5d{width:149.315965pt;}
._51{width:150.373790pt;}
._5a{width:151.989058pt;}
._84{width:155.325675pt;}
._62{width:159.229124pt;}
._92{width:160.890658pt;}
._73{width:165.995675pt;}
._53{width:170.355922pt;}
._4b{width:171.936000pt;}
._34{width:173.418667pt;}
._64{width:186.109704pt;}
._5e{width:190.770597pt;}
._75{width:194.517364pt;}
._37{width:196.469948pt;}
._aa{width:199.921100pt;}
._4d{width:205.186004pt;}
._6d{width:208.808874pt;}
._60{width:210.018293pt;}
._63{width:212.449360pt;}
._39{width:219.739229pt;}
._33{width:224.523496pt;}
._a9{width:226.906521pt;}
._2a{width:231.818667pt;}
._68{width:240.612587pt;}
._74{width:243.342198pt;}
._af{width:248.977707pt;}
._71{width:258.261698pt;}
._45{width:263.039417pt;}
._3f{width:264.282836pt;}
._7c{width:278.276777pt;}
._7d{width:282.571088pt;}
._5f{width:297.259415pt;}
._b1{width:300.114570pt;}
._6f{width:319.900357pt;}
._47{width:343.411897pt;}
._3b{width:353.212601pt;}
._88{width:362.531473pt;}
._2b{width:364.842667pt;}
._b2{width:369.555074pt;}
._38{width:389.074757pt;}
._9f{width:396.446550pt;}
._42{width:421.504050pt;}
._a0{width:441.625957pt;}
._81{width:463.306422pt;}
._94{width:464.903482pt;}
._93{width:466.096307pt;}
._2e{width:485.696000pt;}
._70{width:542.782151pt;}
.fs30{font-size:28.298763pt;}
.fs41{font-size:31.712906pt;}
.fs47{font-size:31.730521pt;}
.fs2c{font-size:31.824071pt;}
.fs1f{font-size:32.344728pt;}
.fs31{font-size:38.925366pt;}
.fs45{font-size:42.566262pt;}
.fs13{font-size:42.796451pt;}
.fs33{font-size:43.009037pt;}
.fse{font-size:43.035858pt;}
.fs3e{font-size:43.074230pt;}
.fs3b{font-size:43.112612pt;}
.fs23{font-size:43.116295pt;}
.fs8{font-size:43.234697pt;}
.fs43{font-size:43.329237pt;}
.fs16{font-size:43.558886pt;}
.fs1b{font-size:43.588700pt;}
.fs48{font-size:43.677272pt;}
.fs36{font-size:43.789036pt;}
.fs2a{font-size:43.806044pt;}
.fsc{font-size:44.441245pt;}
.fs27{font-size:44.572268pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs42{font-size:54.962782pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2f{font-size:67.341618pt;}
.fs32{font-size:70.931772pt;}
.fs24{font-size:72.983964pt;}
.fs46{font-size:73.488107pt;}
.fsb{font-size:73.638472pt;}
.fs40{font-size:73.711713pt;}
.fs3a{font-size:73.842640pt;}
.fs12{font-size:74.095364pt;}
.fs15{font-size:74.255011pt;}
.fs34{font-size:74.274520pt;}
.fsf{font-size:74.358785pt;}
.fs3c{font-size:74.515035pt;}
.fs22{font-size:74.521401pt;}
.fs3f{font-size:74.551553pt;}
.fs9{font-size:74.642120pt;}
.fs0{font-size:74.666667pt;}
.fs35{font-size:74.930177pt;}
.fs44{font-size:74.969368pt;}
.fs1a{font-size:75.441981pt;}
.fs17{font-size:75.448108pt;}
.fs49{font-size:75.666477pt;}
.fsa{font-size:75.873700pt;}
.fs2b{font-size:75.889562pt;}
.fs37{font-size:75.892359pt;}
.fsd{font-size:76.917539pt;}
.fs28{font-size:77.048019pt;}
.fs1c{font-size:79.467629pt;}
.fs2d{font-size:79.978386pt;}
.fs2e{font-size:80.804311pt;}
.fs26{font-size:80.836994pt;}
.fs1e{font-size:80.863116pt;}
.fs3d{font-size:93.044018pt;}
.fs38{font-size:94.768546pt;}
.fs11{font-size:97.089384pt;}
.fs21{font-size:97.687269pt;}
.fs14{font-size:97.913888pt;}
.fs7{font-size:98.166271pt;}
.fs18{font-size:98.909620pt;}
.fs19{font-size:99.298881pt;}
.fs25{font-size:100.844179pt;}
.fs1d{font-size:101.110574pt;}
.fs10{font-size:116.380485pt;}
.fs20{font-size:117.122544pt;}
.fs6{font-size:117.368371pt;}
.fs39{font-size:118.388417pt;}
.fs29{font-size:138.119536pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y16a{bottom:2.767997pt;}
.y16f{bottom:2.767999pt;}
.yc6{bottom:2.957016pt;}
.ybd{bottom:2.957018pt;}
.y1e7{bottom:2.962312pt;}
.y1d1{bottom:2.962342pt;}
.y225{bottom:2.962345pt;}
.y1d3{bottom:2.962347pt;}
.y1fe{bottom:2.962368pt;}
.y201{bottom:2.962372pt;}
.y1f2{bottom:2.962378pt;}
.yba{bottom:2.962380pt;}
.y1f7{bottom:2.962384pt;}
.y11d{bottom:3.295553pt;}
.y116{bottom:3.319006pt;}
.y122{bottom:3.319014pt;}
.y9d{bottom:3.319018pt;}
.y1b0{bottom:3.319031pt;}
.ye3{bottom:3.319039pt;}
.yde{bottom:3.319055pt;}
.y162{bottom:3.319057pt;}
.y15f{bottom:3.319059pt;}
.y119{bottom:3.328445pt;}
.yec{bottom:3.328466pt;}
.y20{bottom:3.466667pt;}
.y1e{bottom:3.480000pt;}
.y97{bottom:3.779138pt;}
.y171{bottom:4.023361pt;}
.y1dc{bottom:4.219126pt;}
.y183{bottom:4.282468pt;}
.y163{bottom:4.282519pt;}
.y98{bottom:4.286596pt;}
.y1e2{bottom:4.306619pt;}
.y17a{bottom:4.306636pt;}
.y15a{bottom:4.306673pt;}
.y156{bottom:4.478443pt;}
.y107{bottom:4.580910pt;}
.y140{bottom:4.748001pt;}
.ye7{bottom:4.778559pt;}
.yd7{bottom:4.778578pt;}
.y7{bottom:4.800000pt;}
.y134{bottom:4.805901pt;}
.y18a{bottom:4.876503pt;}
.y1c4{bottom:5.014965pt;}
.y1b8{bottom:5.142744pt;}
.y22d{bottom:5.280597pt;}
.y230{bottom:5.280599pt;}
.yad{bottom:5.315353pt;}
.yb{bottom:5.333333pt;}
.y20d{bottom:5.509769pt;}
.y211{bottom:5.509772pt;}
.y20f{bottom:5.509773pt;}
.y6b{bottom:5.600000pt;}
.y71{bottom:5.733333pt;}
.y194{bottom:5.741780pt;}
.y19d{bottom:5.741782pt;}
.y19a{bottom:5.741783pt;}
.yc{bottom:6.000000pt;}
.y236{bottom:6.044488pt;}
.yfc{bottom:6.097092pt;}
.y11e{bottom:6.129672pt;}
.y11a{bottom:6.162700pt;}
.yed{bottom:6.162724pt;}
.y9b{bottom:6.162725pt;}
.y220{bottom:6.213194pt;}
.y21e{bottom:6.213195pt;}
.y14b{bottom:6.813512pt;}
.y14f{bottom:6.813532pt;}
.y129{bottom:7.169153pt;}
.yb6{bottom:7.203154pt;}
.y8d{bottom:7.203163pt;}
.y90{bottom:7.203182pt;}
.y137{bottom:7.295634pt;}
.y106{bottom:7.387503pt;}
.yaa{bottom:7.780885pt;}
.y10b{bottom:7.973940pt;}
.y144{bottom:7.973957pt;}
.yac{bottom:8.069036pt;}
.y18d{bottom:8.126880pt;}
.y17d{bottom:8.126903pt;}
.y1ca{bottom:8.126904pt;}
.y1ef{bottom:8.126933pt;}
.y216{bottom:8.158725pt;}
.y1cd{bottom:8.158728pt;}
.y204{bottom:8.158731pt;}
.y1fd{bottom:8.158743pt;}
.y1ea{bottom:8.158749pt;}
.y117{bottom:8.169779pt;}
.y123{bottom:8.169792pt;}
.y9e{bottom:8.169807pt;}
.y15e{bottom:8.169823pt;}
.y1b1{bottom:8.169836pt;}
.ye4{bottom:8.169844pt;}
.y160{bottom:8.169846pt;}
.y1af{bottom:8.169849pt;}
.ydf{bottom:8.169851pt;}
.yca{bottom:8.242535pt;}
.ycb{bottom:8.274743pt;}
.y181{bottom:8.403682pt;}
.y110{bottom:8.403697pt;}
.y1a3{bottom:8.403740pt;}
.y1a9{bottom:8.403746pt;}
.y1a5{bottom:8.403751pt;}
.ye5{bottom:8.436608pt;}
.yd6{bottom:8.436628pt;}
.y161{bottom:9.031544pt;}
.y155{bottom:9.468556pt;}
.yf4{bottom:9.581149pt;}
.yd0{bottom:9.600126pt;}
.yce{bottom:9.600131pt;}
.ycc{bottom:9.600151pt;}
.ycf{bottom:9.600155pt;}
.y177{bottom:9.721063pt;}
.y13f{bottom:9.756474pt;}
.y113{bottom:9.787870pt;}
.y111{bottom:9.787880pt;}
.y112{bottom:9.787885pt;}
.yd8{bottom:9.787892pt;}
.ye9{bottom:9.787894pt;}
.ye8{bottom:9.787908pt;}
.ye6{bottom:9.787912pt;}
.yd9{bottom:9.787920pt;}
.yb3{bottom:9.848569pt;}
.y8b{bottom:9.848600pt;}
.y127{bottom:9.978718pt;}
.y1bb{bottom:9.997837pt;}
.y1be{bottom:9.997845pt;}
.y22b{bottom:10.207018pt;}
.y240{bottom:10.533333pt;}
.y23e{bottom:10.546667pt;}
.yb2{bottom:10.740978pt;}
.y8c{bottom:10.772931pt;}
.y237{bottom:10.957580pt;}
.y11f{bottom:11.138990pt;}
.y118{bottom:11.171881pt;}
.y9c{bottom:11.171914pt;}
.y126{bottom:11.302723pt;}
.yc5{bottom:11.437713pt;}
.ybc{bottom:11.437733pt;}
.y151{bottom:11.643753pt;}
.yb4{bottom:12.079657pt;}
.y8e{bottom:12.079674pt;}
.y93{bottom:12.079689pt;}
.y91{bottom:12.079692pt;}
.yc2{bottom:12.079727pt;}
.y21c{bottom:12.363620pt;}
.y14d{bottom:12.507475pt;}
.y22f{bottom:12.654155pt;}
.y189{bottom:12.812749pt;}
.y16e{bottom:13.871747pt;}
.y128{bottom:14.887566pt;}
.y180{bottom:17.071040pt;}
.y1a4{bottom:17.071081pt;}
.y1a2{bottom:17.071084pt;}
.y1aa{bottom:17.071093pt;}
.y1a8{bottom:17.071095pt;}
.y221{bottom:17.133528pt;}
.y21d{bottom:17.133535pt;}
.y21f{bottom:17.133542pt;}
.y1c3{bottom:17.248154pt;}
.y22e{bottom:17.548848pt;}
.y232{bottom:17.548849pt;}
.y231{bottom:17.548851pt;}
.ya{bottom:17.733333pt;}
.ycd{bottom:18.068675pt;}
.y6{bottom:18.266667pt;}
.y172{bottom:18.796569pt;}
.y16c{bottom:18.796574pt;}
.y170{bottom:18.796576pt;}
.y193{bottom:19.901912pt;}
.yb5{bottom:20.462699pt;}
.yc1{bottom:20.462713pt;}
.y92{bottom:20.462718pt;}
.y8f{bottom:20.462719pt;}
.y212{bottom:20.478809pt;}
.y210{bottom:20.478818pt;}
.y20e{bottom:20.478826pt;}
.y199{bottom:21.353330pt;}
.y1dd{bottom:21.492146pt;}
.y1d{bottom:21.880000pt;}
.ya9{bottom:21.933591pt;}
.y133{bottom:22.060418pt;}
.yfb{bottom:22.678956pt;}
.ya3{bottom:24.527219pt;}
.y136{bottom:24.549910pt;}
.y6e{bottom:24.933333pt;}
.y6a{bottom:25.066667pt;}
.ya4{bottom:25.392202pt;}
.y77{bottom:25.866667pt;}
.y23d{bottom:25.880000pt;}
.y22c{bottom:26.049045pt;}
.ya6{bottom:26.736557pt;}
.y19e{bottom:26.934120pt;}
.y196{bottom:26.934142pt;}
.y19c{bottom:26.934146pt;}
.y154{bottom:27.414362pt;}
.y105{bottom:27.517810pt;}
.yf7{bottom:27.517816pt;}
.yff{bottom:27.517819pt;}
.y13e{bottom:28.922331pt;}
.y139{bottom:28.922335pt;}
.y132{bottom:28.922336pt;}
.y13a{bottom:28.922342pt;}
.y9{bottom:30.133333pt;}
.y16b{bottom:30.673165pt;}
.y5{bottom:32.000000pt;}
.y1b7{bottom:33.634685pt;}
.y1c2{bottom:35.264253pt;}
.y198{bottom:35.320602pt;}
.y192{bottom:35.320604pt;}
.y14e{bottom:35.378726pt;}
.y16d{bottom:36.113007pt;}
.yab{bottom:37.463666pt;}
.ya8{bottom:37.879650pt;}
.y104{bottom:38.323756pt;}
.ya7{bottom:38.423731pt;}
.y1ba{bottom:38.490436pt;}
.y1bd{bottom:38.490444pt;}
.y195{bottom:38.611833pt;}
.y19b{bottom:38.611838pt;}
.y13d{bottom:38.678505pt;}
.yfa{bottom:39.260392pt;}
.y1c{bottom:40.280000pt;}
.y153{bottom:41.393275pt;}
.yf3{bottom:42.743518pt;}
.ya5{bottom:43.226698pt;}
.y103{bottom:44.034066pt;}
.y102{bottom:44.099243pt;}
.yf6{bottom:44.099252pt;}
.yfe{bottom:44.099256pt;}
.y135{bottom:44.207897pt;}
.y6d{bottom:44.400000pt;}
.y70{bottom:44.533333pt;}
.y76{bottom:45.200000pt;}
.y197{bottom:46.966365pt;}
.y191{bottom:46.966366pt;}
.y13c{bottom:47.276501pt;}
.y13b{bottom:48.579114pt;}
.y138{bottom:48.579137pt;}
.y131{bottom:48.579154pt;}
.y1c1{bottom:49.286141pt;}
.y14c{bottom:50.221777pt;}
.y150{bottom:50.221781pt;}
.y152{bottom:50.381415pt;}
.y3{bottom:51.233333pt;}
.y1b{bottom:58.680000pt;}
.y1b6{bottom:62.126360pt;}
.y1c0{bottom:65.513276pt;}
.y1bf{bottom:66.950492pt;}
.y1bc{bottom:66.950503pt;}
.y1b9{bottom:66.950505pt;}
.y2{bottom:72.566667pt;}
.yf9{bottom:74.391037pt;}
.yf2{bottom:77.035983pt;}
.y1a{bottom:77.080000pt;}
.y101{bottom:79.229905pt;}
.yf5{bottom:79.229910pt;}
.yfd{bottom:79.229913pt;}
.y100{bottom:87.617066pt;}
.yf8{bottom:87.617068pt;}
.y19{bottom:95.480000pt;}
.y79{bottom:97.766667pt;}
.y3d{bottom:102.966667pt;}
.y12c{bottom:106.833333pt;}
.y257{bottom:107.500000pt;}
.y23b{bottom:107.900000pt;}
.y18f{bottom:110.966667pt;}
.y68{bottom:112.566667pt;}
.y18{bottom:113.880000pt;}
.y78{bottom:118.833333pt;}
.yb7{bottom:122.700000pt;}
.yb1{bottom:122.733333pt;}
.y3c{bottom:124.166667pt;}
.y1e5{bottom:126.566667pt;}
.y1e6{bottom:126.600000pt;}
.y12b{bottom:128.033333pt;}
.y256{bottom:128.700000pt;}
.y23a{bottom:129.100000pt;}
.y18e{bottom:132.166667pt;}
.y67{bottom:133.773333pt;}
.y75{bottom:134.440000pt;}
.y3b{bottom:145.240000pt;}
.y12a{bottom:149.106667pt;}
.y125{bottom:149.133333pt;}
.y255{bottom:149.893333pt;}
.y239{bottom:150.160000pt;}
.y18c{bottom:153.373333pt;}
.y18b{bottom:153.400000pt;}
.y66{bottom:154.973333pt;}
.y1e3{bottom:161.893333pt;}
.y1e4{bottom:161.933333pt;}
.yb0{bottom:162.440000pt;}
.y3a{bottom:166.440000pt;}
.y254{bottom:170.960000pt;}
.y238{bottom:171.373333pt;}
.y65{bottom:176.173333pt;}
.yaf{bottom:183.626667pt;}
.y39{bottom:187.640000pt;}
.y253{bottom:192.173333pt;}
.y234{bottom:192.440000pt;}
.y235{bottom:192.466649pt;}
.y187{bottom:192.973333pt;}
.y188{bottom:193.000000pt;}
.y74{bottom:194.040000pt;}
.y124{bottom:194.706667pt;}
.y1e0{bottom:197.106667pt;}
.y1e1{bottom:197.133315pt;}
.y64{bottom:197.240000pt;}
.yae{bottom:204.840000pt;}
.ya2{bottom:204.866667pt;}
.y38{bottom:208.706667pt;}
.y252{bottom:213.373333pt;}
.y120{bottom:215.893333pt;}
.y121{bottom:215.933315pt;}
.y63{bottom:218.440000pt;}
.y1df{bottom:223.773333pt;}
.y233{bottom:228.573333pt;}
.y22a{bottom:228.599982pt;}
.y37{bottom:229.906667pt;}
.y186{bottom:232.706667pt;}
.y185{bottom:232.733333pt;}
.y251{bottom:234.440000pt;}
.y62{bottom:239.640000pt;}
.y1de{bottom:244.840000pt;}
.y1db{bottom:244.866649pt;}
.y11b{bottom:247.506667pt;}
.y11c{bottom:247.533333pt;}
.y36{bottom:251.106667pt;}
.y73{bottom:252.973333pt;}
.y250{bottom:255.626667pt;}
.y61{bottom:260.706667pt;}
.y184{bottom:268.040000pt;}
.y35{bottom:272.173333pt;}
.y229{bottom:272.560000pt;}
.ya1{bottom:273.506667pt;}
.y24f{bottom:276.840000pt;}
.y60{bottom:281.893333pt;}
.y114{bottom:282.840000pt;}
.y115{bottom:282.866667pt;}
.y1da{bottom:285.373333pt;}
.y17e{bottom:289.106667pt;}
.y182{bottom:289.133315pt;}
.y17f{bottom:289.133333pt;}
.y72{bottom:292.440000pt;}
.y34{bottom:293.373333pt;}
.y228{bottom:293.773333pt;}
.ya0{bottom:294.706667pt;}
.y24e{bottom:297.906667pt;}
.y5f{bottom:303.106667pt;}
.y1d9{bottom:306.440000pt;}
.y33{bottom:314.560000pt;}
.y227{bottom:314.960000pt;}
.y9f{bottom:315.906667pt;}
.y10e{bottom:318.040000pt;}
.y10f{bottom:318.066630pt;}
.y24d{bottom:319.106667pt;}
.y5e{bottom:324.173333pt;}
.y17b{bottom:324.440000pt;}
.y17c{bottom:324.466630pt;}
.y1d8{bottom:327.626667pt;}
.y32{bottom:335.640000pt;}
.y226{bottom:336.040000pt;}
.y99{bottom:336.973333pt;}
.y9a{bottom:336.999964pt;}
.y24c{bottom:340.333333pt;}
.y5d{bottom:345.400000pt;}
.y1d7{bottom:348.866667pt;}
.y6f{bottom:351.266667pt;}
.y10d{bottom:353.400000pt;}
.y179{bottom:354.599964pt;}
.y178{bottom:354.600000pt;}
.y31{bottom:356.866667pt;}
.y224{bottom:357.266630pt;}
.y223{bottom:357.266667pt;}
.y24b{bottom:361.533333pt;}
.y5c{bottom:366.600000pt;}
.y1d6{bottom:369.933333pt;}
.y96{bottom:372.333297pt;}
.y95{bottom:372.333333pt;}
.y10c{bottom:374.600000pt;}
.y30{bottom:378.066667pt;}
.y176{bottom:381.266667pt;}
.y21b{bottom:382.333297pt;}
.y222{bottom:382.333333pt;}
.y24a{bottom:382.600000pt;}
.y5b{bottom:387.666667pt;}
.y1d5{bottom:391.133333pt;}
.y10a{bottom:395.666630pt;}
.y109{bottom:395.666667pt;}
.y8a{bottom:396.066630pt;}
.y94{bottom:396.066667pt;}
.y2f{bottom:399.133333pt;}
.y249{bottom:403.800000pt;}
.y5a{bottom:408.866667pt;}
.y6c{bottom:410.200000pt;}
.y1d4{bottom:412.333333pt;}
.y2e{bottom:420.333333pt;}
.y175{bottom:420.866667pt;}
.y21a{bottom:422.866667pt;}
.y248{bottom:425.000000pt;}
.yf1{bottom:428.199964pt;}
.y108{bottom:428.200000pt;}
.y59{bottom:430.066667pt;}
.y1d0{bottom:433.399964pt;}
.y1d2{bottom:433.400000pt;}
.y89{bottom:435.666667pt;}
.y2d{bottom:441.533333pt;}
.y174{bottom:442.066667pt;}
.y247{bottom:442.600000pt;}
.y219{bottom:444.066667pt;}
.y58{bottom:451.133333pt;}
.y88{bottom:456.866667pt;}
.y1cf{bottom:458.600000pt;}
.y2c{bottom:462.733333pt;}
.y169{bottom:463.266630pt;}
.y173{bottom:463.266667pt;}
.y218{bottom:465.133333pt;}
.y69{bottom:469.000000pt;}
.y57{bottom:472.333333pt;}
.y87{bottom:478.066667pt;}
.y1ce{bottom:479.800000pt;}
.y2b{bottom:483.800000pt;}
.y217{bottom:486.333333pt;}
.y56{bottom:493.533333pt;}
.y86{bottom:499.133333pt;}
.y1cc{bottom:500.866630pt;}
.y1cb{bottom:500.866667pt;}
.y2a{bottom:505.000000pt;}
.y215{bottom:507.533297pt;}
.y214{bottom:507.533333pt;}
.y55{bottom:514.733333pt;}
.y168{bottom:518.200000pt;}
.y85{bottom:520.333333pt;}
.y29{bottom:526.200000pt;}
.y1c9{bottom:531.133297pt;}
.y1c8{bottom:531.133333pt;}
.yf0{bottom:534.733333pt;}
.y54{bottom:535.800000pt;}
.y20c{bottom:537.666630pt;}
.y213{bottom:537.666667pt;}
.y167{bottom:539.400000pt;}
.y84{bottom:541.533333pt;}
.y28{bottom:547.266667pt;}
.yef{bottom:555.800000pt;}
.y53{bottom:557.000000pt;}
.y166{bottom:560.466667pt;}
.y1c7{bottom:561.400000pt;}
.y83{bottom:562.600000pt;}
.y27{bottom:568.466667pt;}
.yee{bottom:577.000000pt;}
.y52{bottom:578.200000pt;}
.y165{bottom:581.666667pt;}
.y1c6{bottom:582.466667pt;}
.y82{bottom:583.800000pt;}
.y20b{bottom:585.400000pt;}
.y26{bottom:589.666667pt;}
.yeb{bottom:598.199964pt;}
.yea{bottom:598.200000pt;}
.y51{bottom:599.266667pt;}
.y164{bottom:602.866667pt;}
.y81{bottom:605.000000pt;}
.y20a{bottom:606.600000pt;}
.y25{bottom:610.733333pt;}
.y1b5{bottom:614.199928pt;}
.y1c5{bottom:614.200000pt;}
.y50{bottom:620.466667pt;}
.y15d{bottom:623.933261pt;}
.y15c{bottom:623.933333pt;}
.y80{bottom:626.066667pt;}
.y209{bottom:627.666667pt;}
.y24{bottom:631.933333pt;}
.ye2{bottom:633.399928pt;}
.ye1{bottom:633.400000pt;}
.y4f{bottom:641.666667pt;}
.y7f{bottom:647.266667pt;}
.y208{bottom:648.866594pt;}
.y207{bottom:648.866667pt;}
.y23{bottom:653.133333pt;}
.y15b{bottom:655.706667pt;}
.y4e{bottom:662.773333pt;}
.y7e{bottom:668.506667pt;}
.ydd{bottom:668.733261pt;}
.ye0{bottom:668.773333pt;}
.y206{bottom:674.106667pt;}
.y159{bottom:676.733261pt;}
.y158{bottom:676.773333pt;}
.y22{bottom:682.240000pt;}
.y4d{bottom:683.973333pt;}
.y7d{bottom:689.573333pt;}
.y205{bottom:695.173333pt;}
.y21{bottom:697.173333pt;}
.ydc{bottom:700.506667pt;}
.y14a{bottom:703.399928pt;}
.y157{bottom:703.440000pt;}
.y4c{bottom:705.173333pt;}
.y1b4{bottom:706.906667pt;}
.y7c{bottom:710.773333pt;}
.y246{bottom:710.906667pt;}
.y1f{bottom:715.573333pt;}
.y203{bottom:716.333261pt;}
.y202{bottom:716.373333pt;}
.ydb{bottom:721.573333pt;}
.y4b{bottom:726.240000pt;}
.y1b3{bottom:728.106667pt;}
.y7b{bottom:731.973333pt;}
.y245{bottom:732.106667pt;}
.y17{bottom:733.960000pt;}
.yd5{bottom:742.733261pt;}
.yda{bottom:742.773333pt;}
.y200{bottom:746.599928pt;}
.y1ff{bottom:746.626667pt;}
.y4a{bottom:747.440000pt;}
.y1b2{bottom:749.306667pt;}
.y7a{bottom:749.706667pt;}
.y244{bottom:753.173333pt;}
.y49{bottom:768.640000pt;}
.y1ae{bottom:770.333261pt;}
.y1ad{bottom:770.373333pt;}
.y1fc{bottom:771.666594pt;}
.y1fb{bottom:771.706667pt;}
.y243{bottom:774.373333pt;}
.yd4{bottom:778.106667pt;}
.y149{bottom:780.106667pt;}
.y48{bottom:789.706667pt;}
.y242{bottom:795.573333pt;}
.yd3{bottom:799.173333pt;}
.y148{bottom:801.306667pt;}
.y1fa{bottom:801.973333pt;}
.y1ac{bottom:802.106667pt;}
.y47{bottom:810.906667pt;}
.y241{bottom:816.640000pt;}
.yd2{bottom:820.373333pt;}
.y147{bottom:822.506667pt;}
.y1f9{bottom:823.173333pt;}
.y1ab{bottom:823.306667pt;}
.y23f{bottom:831.973333pt;}
.y46{bottom:832.106667pt;}
.yc9{bottom:841.399928pt;}
.yd1{bottom:841.440000pt;}
.y146{bottom:843.573333pt;}
.y1f6{bottom:844.199928pt;}
.y1f8{bottom:844.240000pt;}
.y1a7{bottom:844.333261pt;}
.y1a6{bottom:844.373333pt;}
.y45{bottom:853.306667pt;}
.y145{bottom:864.773333pt;}
.y16{bottom:865.973333pt;}
.y1f5{bottom:869.399928pt;}
.y1f4{bottom:869.440000pt;}
.y23c{bottom:872.226667pt;}
.y44{bottom:874.373333pt;}
.yc8{bottom:877.573333pt;}
.y1a1{bottom:879.666594pt;}
.y1a0{bottom:879.706667pt;}
.y15{bottom:883.040000pt;}
.y143{bottom:885.799928pt;}
.y142{bottom:885.840000pt;}
.y1f3{bottom:894.640000pt;}
.y43{bottom:895.573333pt;}
.yc7{bottom:898.773333pt;}
.y14{bottom:901.440000pt;}
.y190{bottom:914.999928pt;}
.y19f{bottom:915.040000pt;}
.y1f1{bottom:915.666594pt;}
.y1f0{bottom:915.706667pt;}
.y42{bottom:916.773333pt;}
.y130{bottom:918.333261pt;}
.y141{bottom:918.373333pt;}
.y13{bottom:919.840000pt;}
.yc4{bottom:919.933261pt;}
.yc3{bottom:919.973333pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y1ee{bottom:940.866594pt;}
.y1ed{bottom:940.906667pt;}
.yc0{bottom:949.266594pt;}
.ybf{bottom:949.306667pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y1ec{bottom:971.173333pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.ybb{bottom:988.999928pt;}
.ybe{bottom:989.066667pt;}
.y12f{bottom:990.800000pt;}
.y1eb{bottom:992.266667pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y12e{bottom:1011.933261pt;}
.y12d{bottom:1012.000000pt;}
.y1e9{bottom:1013.399928pt;}
.y1e8{bottom:1013.466667pt;}
.yb9{bottom:1018.466594pt;}
.yb8{bottom:1018.533333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h1f{height:16.000835pt;}
.h21{height:17.466349pt;}
.he{height:18.386667pt;}
.hf{height:18.400000pt;}
.h99{height:18.932930pt;}
.h84{height:18.932948pt;}
.h93{height:18.932966pt;}
.h33{height:18.933002pt;}
.h98{height:20.400556pt;}
.h81{height:20.400574pt;}
.h75{height:20.400610pt;}
.h35{height:23.200030pt;}
.h85{height:24.000167pt;}
.h82{height:24.000203pt;}
.h9a{height:24.000240pt;}
.h56{height:25.466726pt;}
.h5a{height:25.466744pt;}
.h26{height:25.466762pt;}
.h45{height:25.466798pt;}
.h52{height:26.266371pt;}
.h6d{height:26.266407pt;}
.h67{height:27.759870pt;}
.h57{height:29.066979pt;}
.h23{height:29.067016pt;}
.h41{height:29.067052pt;}
.hb2{height:29.866468pt;}
.h39{height:29.866522pt;}
.h95{height:31.124483pt;}
.hab{height:31.141771pt;}
.h5f{height:31.218046pt;}
.h49{height:31.728788pt;}
.h31{height:33.465655pt;}
.h16{height:33.465691pt;}
.h38{height:33.465727pt;}
.h94{height:34.265715pt;}
.ha3{height:34.267050pt;}
.h6b{height:36.055380pt;}
.haa{height:37.865127pt;}
.h68{height:38.184111pt;}
.hb5{height:38.253333pt;}
.hb3{height:38.266667pt;}
.h11{height:38.800000pt;}
.h5b{height:39.333914pt;}
.ha8{height:39.427832pt;}
.h8b{height:39.933899pt;}
.h50{height:39.937311pt;}
.h1d{height:40.046983pt;}
.ha1{height:40.134552pt;}
.h6{height:40.266667pt;}
.hb0{height:40.456926pt;}
.h9c{height:41.467255pt;}
.ha6{height:41.755674pt;}
.ha4{height:41.776458pt;}
.h2d{height:41.981480pt;}
.h72{height:42.190017pt;}
.h6f{height:42.211018pt;}
.h27{height:42.216327pt;}
.h46{height:42.237341pt;}
.h8e{height:42.275002pt;}
.h89{height:42.291620pt;}
.h4e{height:42.295233pt;}
.h87{height:42.312671pt;}
.h1b{height:42.411380pt;}
.h19{height:42.432491pt;}
.h9f{height:42.504120pt;}
.h9d{height:42.525277pt;}
.h36{height:42.729396pt;}
.h3d{height:42.758642pt;}
.hae{height:42.845527pt;}
.hac{height:42.866854pt;}
.h7d{height:42.955163pt;}
.h60{height:42.971847pt;}
.h7b{height:42.976544pt;}
.h5d{height:42.993237pt;}
.h3{height:43.200000pt;}
.h24{height:43.594952pt;}
.h43{height:43.616652pt;}
.h58{height:43.723480pt;}
.h7{height:47.109375pt;}
.h7a{height:48.665288pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.hb4{height:53.750000pt;}
.h96{height:53.942965pt;}
.hb6{height:57.375000pt;}
.hc{height:57.578125pt;}
.h12{height:58.133333pt;}
.h14{height:58.166667pt;}
.h13{height:58.266667pt;}
.h9{height:58.351562pt;}
.h86{height:58.932829pt;}
.h15{height:58.933333pt;}
.h6c{height:62.376489pt;}
.h29{height:62.534966pt;}
.h10{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h6a{height:65.701939pt;}
.h97{height:65.781915pt;}
.h69{height:66.059234pt;}
.h66{height:66.092116pt;}
.h65{height:66.268284pt;}
.ha9{height:68.069794pt;}
.h30{height:68.632278pt;}
.h34{height:68.780154pt;}
.h74{height:68.798225pt;}
.h8c{height:69.021007pt;}
.h51{height:69.026903pt;}
.h91{height:69.054832pt;}
.h1e{height:69.138721pt;}
.h71{height:69.441493pt;}
.ha2{height:69.441842pt;}
.h78{height:69.532275pt;}
.h40{height:69.879608pt;}
.h37{height:69.885283pt;}
.hb1{height:70.087552pt;}
.h63{height:70.294189pt;}
.h6e{height:70.534481pt;}
.h48{height:71.246373pt;}
.h53{height:71.629770pt;}
.ha7{height:72.088675pt;}
.ha5{height:72.124558pt;}
.h22{height:72.236177pt;}
.h92{height:72.344016pt;}
.h83{height:72.472513pt;}
.h2e{height:72.684368pt;}
.h2c{height:72.720548pt;}
.h79{height:72.840975pt;}
.h73{height:72.860113pt;}
.h9b{height:72.877232pt;}
.h70{height:72.896379pt;}
.h28{height:72.942773pt;}
.h77{height:72.979081pt;}
.h8a{height:73.096048pt;}
.h4f{height:73.102292pt;}
.h90{height:73.131870pt;}
.h88{height:73.132432pt;}
.h4d{height:73.138679pt;}
.h8f{height:73.168272pt;}
.h1c{height:73.220712pt;}
.h1a{height:73.257159pt;}
.h2{height:73.281250pt;}
.h76{height:73.503284pt;}
.ha0{height:73.541729pt;}
.h9e{height:73.578335pt;}
.h3f{height:73.608444pt;}
.h3e{height:74.005342pt;}
.h3c{height:74.042178pt;}
.h62{height:74.081542pt;}
.haf{height:74.225563pt;}
.had{height:74.262509pt;}
.h20{height:74.428839pt;}
.h61{height:74.444400pt;}
.h7e{height:74.447143pt;}
.h5e{height:74.481455pt;}
.h7c{height:74.484200pt;}
.h64{height:74.846572pt;}
.h55{height:74.876845pt;}
.h47{height:74.901041pt;}
.h25{height:75.452801pt;}
.h44{height:75.490359pt;}
.h59{height:75.580796pt;}
.h7f{height:76.450195pt;}
.h2f{height:84.257436pt;}
.h8d{height:86.530302pt;}
.h2b{height:89.930938pt;}
.h4c{height:90.484741pt;}
.h32{height:90.694651pt;}
.h18{height:90.928425pt;}
.h3a{height:91.616967pt;}
.h3b{height:91.977528pt;}
.h54{height:93.408890pt;}
.h42{height:93.655644pt;}
.h4a{height:100.263065pt;}
.h2a{height:107.799697pt;}
.h4b{height:108.487044pt;}
.h17{height:108.714746pt;}
.h80{height:109.659584pt;}
.h5c{height:127.935918pt;}
.hd{height:128.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w4b{width:17.466608pt;}
.w4a{width:17.466617pt;}
.w3b{width:17.466635pt;}
.w3c{width:18.932549pt;}
.w10{width:18.932585pt;}
.w3d{width:18.932621pt;}
.w25{width:20.399803pt;}
.w19{width:20.399821pt;}
.w22{width:20.399858pt;}
.w39{width:21.866762pt;}
.w32{width:22.533342pt;}
.we{width:23.200548pt;}
.w21{width:23.200603pt;}
.w30{width:23.999503pt;}
.w15{width:23.999521pt;}
.w2b{width:24.799184pt;}
.w20{width:25.466484pt;}
.wd{width:30.533492pt;}
.w24{width:31.999868pt;}
.w47{width:31.999873pt;}
.w1b{width:31.999940pt;}
.w51{width:33.466396pt;}
.w12{width:33.466414pt;}
.w2e{width:34.265696pt;}
.wf{width:36.266311pt;}
.w34{width:37.866894pt;}
.w13{width:39.999935pt;}
.w29{width:41.466523pt;}
.w3e{width:41.466578pt;}
.w27{width:42.266669pt;}
.w2a{width:42.266687pt;}
.w53{width:48.800713pt;}
.w31{width:52.265116pt;}
.w42{width:52.265147pt;}
.w40{width:54.534140pt;}
.w45{width:54.535105pt;}
.w4e{width:54.535118pt;}
.w46{width:55.998883pt;}
.w35{width:55.998897pt;}
.w2f{width:56.801540pt;}
.w1d{width:57.467821pt;}
.w44{width:57.467857pt;}
.w5b{width:59.333333pt;}
.w56{width:59.600000pt;}
.w33{width:60.401023pt;}
.w14{width:60.401041pt;}
.w5c{width:66.000000pt;}
.w57{width:66.266667pt;}
.w5a{width:72.566667pt;}
.w55{width:72.833333pt;}
.w5d{width:77.733333pt;}
.w58{width:77.866667pt;}
.w48{width:78.534229pt;}
.w37{width:85.063293pt;}
.w59{width:85.733333pt;}
.w54{width:85.866667pt;}
.w4f{width:89.464204pt;}
.w1e{width:93.066106pt;}
.w1a{width:104.803315pt;}
.w17{width:122.938636pt;}
.w49{width:125.069822pt;}
.w38{width:128.803121pt;}
.w18{width:148.256577pt;}
.w50{width:151.198416pt;}
.w3f{width:153.469999pt;}
.w1f{width:156.269828pt;}
.w6{width:158.533333pt;}
.w4d{width:160.007038pt;}
.w9{width:169.773333pt;}
.w1c{width:174.536992pt;}
.wa{width:177.866667pt;}
.w4c{width:193.466044pt;}
.w2c{width:199.994171pt;}
.w36{width:212.397412pt;}
.wc{width:223.991073pt;}
.w28{width:226.269808pt;}
.w43{width:226.941857pt;}
.w5{width:233.773333pt;}
.w23{width:245.068681pt;}
.w52{width:250.134305pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w16{width:266.945286pt;}
.w2d{width:296.663909pt;}
.w11{width:298.808927pt;}
.w3a{width:301.199626pt;}
.w26{width:307.597367pt;}
.w41{width:309.602792pt;}
.wb{width:348.306667pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x54{left:0.928543pt;}
.x2d{left:2.339095pt;}
.x28{left:3.823304pt;}
.xab{left:4.750760pt;}
.x4{left:6.133333pt;}
.xcc{left:7.200000pt;}
.xaf{left:10.134684pt;}
.x9{left:11.053333pt;}
.x33{left:12.590922pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x88{left:16.305852pt;}
.x4a{left:17.238095pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xac{left:21.058373pt;}
.x2a{left:22.264938pt;}
.x84{left:24.594661pt;}
.x7b{left:26.428817pt;}
.xb{left:28.533333pt;}
.x9c{left:30.954598pt;}
.x7f{left:31.875064pt;}
.x41{left:33.232061pt;}
.x35{left:34.129150pt;}
.x9f{left:35.110112pt;}
.x22{left:36.047676pt;}
.x3{left:37.866655pt;}
.x5d{left:40.308581pt;}
.x40{left:41.468851pt;}
.x8f{left:42.630305pt;}
.x56{left:44.129474pt;}
.x57{left:46.680447pt;}
.x47{left:48.550159pt;}
.x3b{left:50.377465pt;}
.x6d{left:51.445711pt;}
.x27{left:52.400977pt;}
.x44{left:54.062554pt;}
.x90{left:55.995216pt;}
.x60{left:58.435523pt;}
.x81{left:59.508096pt;}
.x8d{left:61.002679pt;}
.xca{left:61.932205pt;}
.x66{left:63.023864pt;}
.xad{left:64.146273pt;}
.x5c{left:65.742177pt;}
.x7a{left:68.165198pt;}
.x63{left:73.581797pt;}
.x62{left:74.769338pt;}
.x99{left:75.733322pt;}
.x8e{left:77.250464pt;}
.xa2{left:79.142582pt;}
.xc7{left:80.352031pt;}
.x36{left:81.558275pt;}
.x7d{left:83.586553pt;}
.x1c{left:85.066655pt;}
.x53{left:87.411573pt;}
.x1a{left:89.066667pt;}
.x38{left:90.115738pt;}
.x10{left:92.133322pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x46{left:96.107819pt;}
.xc2{left:97.152587pt;}
.x26{left:98.151689pt;}
.x11{left:99.199988pt;}
.x75{left:100.269999pt;}
.x30{left:102.599991pt;}
.x29{left:105.733191pt;}
.x6{left:108.166667pt;}
.xc1{left:110.566655pt;}
.xa0{left:112.996705pt;}
.xa{left:113.893333pt;}
.xa1{left:114.833399pt;}
.x25{left:116.720858pt;}
.x3a{left:119.181696pt;}
.xcb{left:120.866658pt;}
.x74{left:122.324321pt;}
.x2c{left:124.466658pt;}
.x3d{left:126.745339pt;}
.x9d{left:128.104385pt;}
.xbc{left:130.299988pt;}
.xbd{left:131.766655pt;}
.x65{left:136.057641pt;}
.x7e{left:137.276229pt;}
.x31{left:138.826655pt;}
.x61{left:142.891025pt;}
.x9b{left:144.404117pt;}
.x52{left:145.487365pt;}
.x9e{left:148.559631pt;}
.x64{left:150.467473pt;}
.x23{left:153.636009pt;}
.x2e{left:154.959988pt;}
.x7c{left:158.575260pt;}
.x78{left:159.533315pt;}
.x97{left:161.399982pt;}
.x45{left:164.205774pt;}
.x87{left:167.799982pt;}
.x24{left:170.308140pt;}
.xc9{left:171.703487pt;}
.x79{left:179.906655pt;}
.x3e{left:183.724424pt;}
.x43{left:187.249178pt;}
.x37{left:191.356970pt;}
.x42{left:195.491268pt;}
.xbe{left:200.839988pt;}
.x94{left:202.439988pt;}
.x95{left:207.666649pt;}
.x89{left:209.239988pt;}
.x3c{left:212.240468pt;}
.x51{left:215.867821pt;}
.xc4{left:217.893322pt;}
.x39{left:220.005525pt;}
.x98{left:221.773322pt;}
.xbf{left:228.866649pt;}
.x96{left:231.639988pt;}
.x80{left:234.561954pt;}
.xc8{left:236.306655pt;}
.xc3{left:245.106655pt;}
.xc0{left:246.293322pt;}
.xc5{left:268.066649pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x2f{left:285.533315pt;}
.x83{left:288.599982pt;}
.x9a{left:293.533315pt;}
.x92{left:301.399982pt;}
.x2b{left:309.106655pt;}
.x85{left:311.359988pt;}
.x32{left:330.999964pt;}
.x91{left:334.573322pt;}
.x3f{left:336.733322pt;}
.x93{left:342.866655pt;}
.x82{left:345.533322pt;}
.x34{left:349.933322pt;}
.x8a{left:351.266655pt;}
.x86{left:354.066630pt;}
.xc6{left:357.533322pt;}
.x8b{left:362.733297pt;}
.x21{left:385.933322pt;}
.x8c{left:387.533322pt;}
.x1d{left:406.466655pt;}
.x50{left:415.933333pt;}
.xb7{left:420.333322pt;}
.x6a{left:423.133297pt;}
.x1e{left:425.399988pt;}
.x6b{left:443.533322pt;}
.x4b{left:446.466655pt;}
.x20{left:453.666655pt;}
.xa4{left:484.733297pt;}
.x68{left:489.133297pt;}
.xcd{left:492.333333pt;}
.x48{left:494.466630pt;}
.x4c{left:496.999964pt;}
.xa8{left:502.466630pt;}
.xb0{left:505.933322pt;}
.x49{left:527.933322pt;}
.x59{left:531.133297pt;}
.xb1{left:536.600000pt;}
.x4e{left:539.533297pt;}
.xb9{left:544.333297pt;}
.x69{left:546.599988pt;}
.x5a{left:551.533322pt;}
.xc{left:555.933333pt;}
.x4d{left:557.399988pt;}
.x17{left:559.533322pt;}
.x4f{left:563.533322pt;}
.x14{left:565.039988pt;}
.xba{left:568.359988pt;}
.xa5{left:569.839988pt;}
.x13{left:576.626655pt;}
.x1f{left:577.573333pt;}
.xa6{left:580.466630pt;}
.x6c{left:582.199964pt;}
.x6f{left:585.399964pt;}
.x16{left:600.106655pt;}
.x58{left:601.959988pt;}
.xa7{left:604.506655pt;}
.xbb{left:608.333261pt;}
.x70{left:610.893322pt;}
.x12{left:619.173322pt;}
.xa9{left:620.773322pt;}
.xce{left:624.773333pt;}
.x67{left:628.239988pt;}
.x5e{left:630.866594pt;}
.xf{left:634.360000pt;}
.x71{left:638.733261pt;}
.x5b{left:651.266594pt;}
.x72{left:661.959988pt;}
.x5f{left:662.893322pt;}
.xa3{left:666.106655pt;}
.xb8{left:671.293322pt;}
.x55{left:682.893322pt;}
.xb2{left:684.599928pt;}
.xcf{left:691.040000pt;}
.x76{left:692.866667pt;}
.x15{left:697.839988pt;}
.xb5{left:701.533333pt;}
.xb3{left:703.559988pt;}
.xae{left:707.693322pt;}
.xb4{left:714.599928pt;}
.xb6{left:716.106655pt;}
.x77{left:724.893322pt;}
.x2{left:728.106655pt;}
.xaa{left:734.200000pt;}
.x73{left:735.666594pt;}
.x6e{left:738.506655pt;}
.xd0{left:744.506655pt;}
.x18{left:756.106655pt;}
}




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