
    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_a0c3d0a30919488588acca15.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.848145;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_0a534c7f28a0c47bdcd6cec9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_98b63317c99abd4ee630f75e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_81e306ed75d3106004c6ffda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854980;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_fb376a2b04bd66ab46318ec4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_19492e4d1fb7cb16c1bf9cf1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bbdd6e8e2e7656c35a051c86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_72df08ff885b508534f0f318.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2a63918c7ae47c09c32b8bea.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.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_fb062b772aaa1ef7db3c09f9.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_171fe4576c826feaea038583.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d9e7e9ec6030605ad05513a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4d69c00a9705f5d56f926151.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.fff{font-family:fff;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b981f5833cbbf737a7ef6409.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d239d937828f877706a8734a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4a2dd98346f4923b569ff5a9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4fd1d77b2666a7a4bfe38734.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ff5b0e300f5947dd08d02d8f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.972168;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;}
.m17{transform:matrix(0.235801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235801,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m4{transform:matrix(0.241459,0.000000,-0.080478,0.236692,0,0);-ms-transform:matrix(0.241459,0.000000,-0.080478,0.236692,0,0);-webkit-transform:matrix(0.241459,0.000000,-0.080478,0.236692,0,0);}
.m9{transform:matrix(0.241931,0.000000,-0.080635,0.236639,0,0);-ms-transform:matrix(0.241931,0.000000,-0.080635,0.236639,0,0);-webkit-transform:matrix(0.241931,0.000000,-0.080635,0.236639,0,0);}
.m11{transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242465,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245033,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247337,0.000000,-0.082437,0.236017,0,0);-ms-transform:matrix(0.247337,0.000000,-0.082437,0.236017,0,0);-webkit-transform:matrix(0.247337,0.000000,-0.082437,0.236017,0,0);}
.m18{transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,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);}
.m19{transform:matrix(0.251131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251131,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251278,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252431,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255034,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255576,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255591,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.256183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256183,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.259023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259023,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259058,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.260845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260845,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261481,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261990,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.264513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264513,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.265598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265598,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.266023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266023,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.266557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266557,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.266583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266583,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.266983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266983,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267199,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-82.800000px;}
.v9{vertical-align:-77.040000px;}
.v10{vertical-align:-75.600000px;}
.v8{vertical-align:-56.880000px;}
.vf{vertical-align:-53.181232px;}
.v6{vertical-align:-41.760000px;}
.vc{vertical-align:-36.969352px;}
.ve{vertical-align:-28.442077px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-13.680000px;}
.va{vertical-align:-12.262727px;}
.v4{vertical-align:-5.760000px;}
.vb{vertical-align:-3.202276px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.v7{vertical-align:48.240000px;}
.ls59{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.567600px;}
.ls10{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.305400px;}
.ls3a{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.216000px;}
.ls4e{letter-spacing:-0.169639px;}
.ls31{letter-spacing:-0.138000px;}
.ls34{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.106800px;}
.ls5d{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls33{letter-spacing:0.054720px;}
.ls29{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.150000px;}
.ls45{letter-spacing:0.152400px;}
.ls17{letter-spacing:0.152640px;}
.ls4{letter-spacing:0.156000px;}
.ls15{letter-spacing:0.163200px;}
.ls6{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.187200px;}
.lsd{letter-spacing:0.198720px;}
.ls32{letter-spacing:0.241800px;}
.ls5b{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.285120px;}
.ls5a{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.312480px;}
.ls1{letter-spacing:0.322560px;}
.ls8{letter-spacing:0.326640px;}
.ls3{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.ls5c{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.581760px;}
.ls2a{letter-spacing:0.979726px;}
.ls7{letter-spacing:1.440000px;}
.ls21{letter-spacing:5.040000px;}
.ls2e{letter-spacing:6.480000px;}
.ls18{letter-spacing:8.640000px;}
.lsb{letter-spacing:9.360000px;}
.ls3b{letter-spacing:10.944000px;}
.ls35{letter-spacing:12.960000px;}
.ls23{letter-spacing:18.720000px;}
.ls30{letter-spacing:20.160000px;}
.lsa{letter-spacing:36.305280px;}
.ls4b{letter-spacing:58.602562px;}
.ls3e{letter-spacing:59.515631px;}
.ls1d{letter-spacing:60.766314px;}
.ls19{letter-spacing:61.232850px;}
.ls47{letter-spacing:63.900178px;}
.ls3d{letter-spacing:63.956866px;}
.ls40{letter-spacing:64.030899px;}
.ls1e{letter-spacing:65.675949px;}
.ls1f{letter-spacing:65.932028px;}
.ls1a{letter-spacing:65.969052px;}
.ls54{letter-spacing:68.650020px;}
.ls4c{letter-spacing:68.685998px;}
.ls4d{letter-spacing:70.821314px;}
.ls20{letter-spacing:71.764735px;}
.ls36{letter-spacing:75.600000px;}
.ls2b{letter-spacing:80.223910px;}
.ls4a{letter-spacing:82.393446px;}
.ls41{letter-spacing:82.466541px;}
.ls44{letter-spacing:82.522467px;}
.ls2d{letter-spacing:84.960000px;}
.ls42{letter-spacing:127.615737px;}
.ls43{letter-spacing:149.895021px;}
.ls50{letter-spacing:166.832189px;}
.ls53{letter-spacing:167.059058px;}
.ls55{letter-spacing:182.553375px;}
.ls25{letter-spacing:213.007984px;}
.ls51{letter-spacing:222.482371px;}
.ls26{letter-spacing:232.963469px;}
.ls28{letter-spacing:234.757220px;}
.ls56{letter-spacing:243.336000px;}
.ls27{letter-spacing:248.322465px;}
.ls48{letter-spacing:292.597845px;}
.ls49{letter-spacing:329.396458px;}
.ls46{letter-spacing:501.240690px;}
.ls3c{letter-spacing:501.685361px;}
.ls3f{letter-spacing:502.309266px;}
.ls38{letter-spacing:543.576000px;}
.ls39{letter-spacing:545.016000px;}
.ls52{letter-spacing:562.288258px;}
.ls2c{letter-spacing:757.901280px;}
.ls58{letter-spacing:762.826132px;}
.ls2f{letter-spacing:788.141280px;}
.ls4f{letter-spacing:1257.276000px;}
.ls57{letter-spacing:1258.716000px;}
.ls12{letter-spacing:1308.756000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws31{word-spacing:-98.264368px;}
.ws37{word-spacing:-72.000000px;}
.ws33{word-spacing:-66.481800px;}
.ws34{word-spacing:-66.294720px;}
.ws8{word-spacing:-66.240000px;}
.ws32{word-spacing:-66.102000px;}
.ws12{word-spacing:-41.760000px;}
.ws0{word-spacing:-30.060000px;}
.ws1{word-spacing:-23.940000px;}
.ws4{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.060000px;}
.ws2{word-spacing:-19.440000px;}
.ws14{word-spacing:-18.141654px;}
.ws7{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.784000px;}
.ws36{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.822080px;}
.ws41{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws35{word-spacing:-16.453200px;}
.wsb{word-spacing:-16.254600px;}
.wsd{word-spacing:-16.102200px;}
.wsc{word-spacing:-15.992400px;}
.ws79{word-spacing:-15.948000px;}
.ws3{word-spacing:-15.840000px;}
.ws7a{word-spacing:-15.300000px;}
.ws7b{word-spacing:-14.940000px;}
.ws7c{word-spacing:-14.886720px;}
.ws13{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
.ws65{word-spacing:3.393307px;}
.ws51{word-spacing:3.456365px;}
.ws5a{word-spacing:3.670464px;}
.ws66{word-spacing:3.754297px;}
.ws52{word-spacing:3.888410px;}
.ws67{word-spacing:3.898693px;}
.ws53{word-spacing:4.032426px;}
.ws78{word-spacing:5.347236px;}
.ws55{word-spacing:9.553729px;}
.ws50{word-spacing:10.513110px;}
.ws74{word-spacing:13.174868px;}
.ws2e{word-spacing:15.929813px;}
.ws59{word-spacing:16.076632px;}
.ws24{word-spacing:16.223450px;}
.ws29{word-spacing:16.370269px;}
.ws21{word-spacing:16.694445px;}
.ws73{word-spacing:18.415700px;}
.ws54{word-spacing:18.465790px;}
.ws77{word-spacing:18.608383px;}
.ws1b{word-spacing:19.923595px;}
.ws11{word-spacing:20.206199px;}
.ws63{word-spacing:20.793031px;}
.ws30{word-spacing:21.655737px;}
.ws61{word-spacing:21.803803px;}
.ws44{word-spacing:22.392211px;}
.ws3a{word-spacing:22.412076px;}
.ws1f{word-spacing:23.609350px;}
.ws18{word-spacing:26.918048px;}
.ws2f{word-spacing:27.014614px;}
.ws25{word-spacing:27.308251px;}
.ws2a{word-spacing:27.528479px;}
.ws22{word-spacing:27.873104px;}
.ws3f{word-spacing:28.515879px;}
.ws4e{word-spacing:29.883154px;}
.ws16{word-spacing:32.075575px;}
.ws19{word-spacing:34.548361px;}
.ws5f{word-spacing:34.655051px;}
.wsf{word-spacing:34.830965px;}
.ws43{word-spacing:35.341061px;}
.ws39{word-spacing:35.372414px;}
.ws62{word-spacing:37.470774px;}
.ws4f{word-spacing:37.731983px;}
.ws1d{word-spacing:38.860110px;}
.ws15{word-spacing:48.101882px;}
.ws5d{word-spacing:48.152555px;}
.ws6a{word-spacing:48.175672px;}
.ws4b{word-spacing:50.333313px;}
.ws6f{word-spacing:50.477328px;}
.ws3e{word-spacing:50.854515px;}
.ws5c{word-spacing:53.655704px;}
.ws47{word-spacing:53.708802px;}
.ws69{word-spacing:53.833610px;}
.ws3d{word-spacing:54.190151px;}
.ws42{word-spacing:54.250757px;}
.ws38{word-spacing:54.298885px;}
.ws17{word-spacing:56.364280px;}
.ws48{word-spacing:57.120206px;}
.ws6c{word-spacing:58.201870px;}
.ws70{word-spacing:58.470172px;}
.ws5e{word-spacing:60.367878px;}
.ws6e{word-spacing:60.531609px;}
.ws4d{word-spacing:62.154106px;}
.ws6d{word-spacing:63.402180px;}
.ws1c{word-spacing:64.537077px;}
.ws49{word-spacing:67.021596px;}
.ws6b{word-spacing:67.146404px;}
.ws3c{word-spacing:67.478158px;}
.ws45{word-spacing:67.605876px;}
.ws3b{word-spacing:67.665852px;}
.ws40{word-spacing:67.734191px;}
.ws4a{word-spacing:69.351335px;}
.ws1a{word-spacing:73.298105px;}
.ws10{word-spacing:73.707135px;}
.ws46{word-spacing:74.426838px;}
.ws68{word-spacing:74.593248px;}
.ws60{word-spacing:93.640837px;}
.ws4c{word-spacing:93.825904px;}
.ws71{word-spacing:118.668527px;}
.ws2b{word-spacing:171.043617px;}
.ws5b{word-spacing:173.539533px;}
.ws26{word-spacing:180.513414px;}
.ws28{word-spacing:180.953870px;}
.ws2d{word-spacing:199.053203px;}
.ws2c{word-spacing:208.525859px;}
.ws58{word-spacing:222.288820px;}
.ws23{word-spacing:229.000388px;}
.ws27{word-spacing:229.170301px;}
.ws57{word-spacing:231.761476px;}
.ws76{word-spacing:266.991256px;}
.ws56{word-spacing:276.131288px;}
.ws1e{word-spacing:290.014286px;}
.ws64{word-spacing:297.022670px;}
.ws72{word-spacing:297.463400px;}
.ws75{word-spacing:581.950680px;}
._92{margin-left:-2191.120197px;}
._96{margin-left:-2150.147174px;}
._8b{margin-left:-2128.737273px;}
._8c{margin-left:-2107.818658px;}
._bf{margin-left:-1440.068072px;}
._be{margin-left:-1438.671998px;}
._4f{margin-left:-1169.797786px;}
._4c{margin-left:-1167.830765px;}
._46{margin-left:-1128.541772px;}
._42{margin-left:-1125.307600px;}
._5b{margin-left:-1073.135307px;}
._52{margin-left:-947.126974px;}
._55{margin-left:-927.935834px;}
._3c{margin-left:-481.243470px;}
._3a{margin-left:-479.465927px;}
._5f{margin-left:-182.028426px;}
._21{margin-left:-15.840000px;}
._1b{margin-left:-13.680000px;}
._6a{margin-left:-5.983493px;}
._4d{margin-left:-4.673663px;}
._22{margin-left:-3.507656px;}
._11{margin-left:-2.370240px;}
._1{margin-left:-1.080000px;}
._0{width:1.212240px;}
._3{width:2.373600px;}
._2{width:3.796080px;}
._5{width:5.031360px;}
._6{width:6.165120px;}
._4{width:8.067600px;}
._7{width:9.321840px;}
._8{width:10.929600px;}
._b{width:12.850560px;}
._c{width:13.997040px;}
._d{width:15.520320px;}
._c0{width:16.917984px;}
._9{width:17.951040px;}
._a{width:19.143360px;}
._10{width:21.150720px;}
._1a{width:22.487280px;}
._12{width:23.527680px;}
._13{width:24.644160px;}
._f{width:25.674240px;}
._e{width:27.224640px;}
._15{width:28.284480px;}
._14{width:29.543040px;}
._17{width:31.363440px;}
._16{width:32.457600px;}
._70{width:34.444800px;}
._b5{width:35.448403px;}
._64{width:37.906837px;}
._41{width:39.660203px;}
._54{width:41.678019px;}
._93{width:43.091246px;}
._9e{width:45.039725px;}
._40{width:46.579567px;}
._9d{width:48.358935px;}
._19{width:49.878720px;}
._18{width:51.321600px;}
._2b{width:53.412190px;}
._29{width:54.542607px;}
._44{width:55.848471px;}
._25{width:57.509951px;}
._28{width:58.660602px;}
._86{width:60.521387px;}
._24{width:62.243571px;}
._b2{width:63.652050px;}
._33{width:64.742409px;}
._59{width:65.756982px;}
._1d{width:66.906540px;}
._2e{width:68.550591px;}
._1e{width:69.610356px;}
._af{width:70.890482px;}
._23{width:72.276020px;}
._79{width:73.860215px;}
._a6{width:75.092477px;}
._73{width:76.485057px;}
._27{width:77.633819px;}
._26{width:80.400890px;}
._3e{width:81.631117px;}
._38{width:82.810329px;}
._43{width:84.792455px;}
._76{width:85.867520px;}
._2c{width:87.628608px;}
._3b{width:89.657353px;}
._9f{width:90.752916px;}
._34{width:94.728388px;}
._5e{width:96.511680px;}
._c1{width:100.495920px;}
._81{width:103.906968px;}
._94{width:106.013791px;}
._45{width:110.701191px;}
._53{width:111.704083px;}
._6e{width:113.329898px;}
._37{width:114.967268px;}
._4e{width:116.193384px;}
._20{width:120.530684px;}
._2a{width:121.661100px;}
._7e{width:124.112101px;}
._7d{width:127.381446px;}
._68{width:129.386842px;}
._3f{width:130.521696px;}
._a7{width:136.040111px;}
._4a{width:140.211721px;}
._7a{width:141.864459px;}
._71{width:143.902980px;}
._32{width:148.185266px;}
._39{width:150.029371px;}
._51{width:152.177433px;}
._7b{width:154.095588px;}
._ab{width:160.269460px;}
._7c{width:161.500829px;}
._87{width:163.055062px;}
._a5{width:164.128883px;}
._99{width:165.492511px;}
._6b{width:167.555093px;}
._91{width:169.326425px;}
._50{width:172.022929px;}
._b7{width:176.625523px;}
._95{width:178.139361px;}
._a1{width:179.572877px;}
._a3{width:180.637970px;}
._4b{width:182.862511px;}
._ad{width:185.635482px;}
._a9{width:187.252765px;}
._5a{width:188.401358px;}
._5d{width:189.889882px;}
._b8{width:192.428963px;}
._82{width:200.469161px;}
._35{width:201.999249px;}
._83{width:206.734468px;}
._2d{width:208.208631px;}
._1c{width:209.268397px;}
._9b{width:214.456053px;}
._74{width:215.975181px;}
._9a{width:218.269334px;}
._47{width:225.586711px;}
._77{width:227.482363px;}
._5c{width:228.963537px;}
._56{width:231.018997px;}
._58{width:232.780954px;}
._65{width:237.790244px;}
._97{width:246.067899px;}
._bc{width:247.933000px;}
._a2{width:252.027827px;}
._8f{width:253.637788px;}
._72{width:256.354485px;}
._98{width:260.969983px;}
._6d{width:262.728803px;}
._b1{width:278.532952px;}
._a4{width:280.691936px;}
._48{width:298.416135px;}
._2f{width:299.941410px;}
._1f{width:301.863849px;}
._90{width:305.376329px;}
._66{width:308.884755px;}
._88{width:316.026883px;}
._75{width:317.870769px;}
._6c{width:326.502783px;}
._57{width:332.392512px;}
._84{width:336.851558px;}
._b4{width:344.442245px;}
._b0{width:360.832740px;}
._85{width:375.735662px;}
._aa{width:380.205069px;}
._a8{width:394.807540px;}
._30{width:396.140412px;}
._36{width:408.397756px;}
._a0{width:421.997449px;}
._b6{width:433.940713px;}
._ac{width:437.331123px;}
._9c{width:438.336993px;}
._8d{width:446.102110px;}
._31{width:449.386544px;}
._ae{width:456.744214px;}
._b3{width:491.691913px;}
._ba{width:516.513074px;}
._89{width:537.718093px;}
._bb{width:565.063556px;}
._8e{width:578.570980px;}
._bd{width:582.135804px;}
._8a{width:584.916367px;}
._3d{width:601.577350px;}
._78{width:612.638128px;}
._69{width:629.185020px;}
._49{width:642.993669px;}
._6f{width:644.917498px;}
._67{width:659.974773px;}
._b9{width:672.500605px;}
._60{width:695.858640px;}
._7f{width:855.162271px;}
._61{width:864.779040px;}
._62{width:1024.104480px;}
._80{width:1170.069764px;}
._63{width:1321.464480px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:5.760000px;}
.fse{font-size:12.240000px;}
.fs1b{font-size:18.000000px;}
.fsf{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs17{font-size:30.805603px;}
.fsc{font-size:36.000000px;}
.fs12{font-size:40.902961px;}
.fs2a{font-size:41.318170px;}
.fs26{font-size:41.354825px;}
.fs1f{font-size:41.449593px;}
.fs28{font-size:41.525020px;}
.fs2c{font-size:41.602480px;}
.fs2f{font-size:41.690523px;}
.fs23{font-size:41.712465px;}
.fs5{font-size:41.760000px;}
.fs18{font-size:42.374969px;}
.fs1c{font-size:42.478276px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs11{font-size:69.822393px;}
.fs13{font-size:70.651046px;}
.fs21{font-size:70.796838px;}
.fs2e{font-size:71.296485px;}
.fs2b{font-size:71.540610px;}
.fs27{font-size:71.604076px;}
.fs20{font-size:71.656055px;}
.fs29{font-size:71.828411px;}
.fs8{font-size:72.000000px;}
.fs2d{font-size:72.007601px;}
.fs24{font-size:72.161832px;}
.fs30{font-size:72.198024px;}
.fs22{font-size:72.304439px;}
.fs15{font-size:72.566615px;}
.fs32{font-size:72.789328px;}
.fs25{font-size:73.194122px;}
.fs19{font-size:73.320962px;}
.fs1e{font-size:73.409278px;}
.fs1d{font-size:73.543809px;}
.fs14{font-size:74.623255px;}
.fs16{font-size:74.640162px;}
.fs1a{font-size:77.664856px;}
.fs3{font-size:77.760000px;}
.fsd{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs31{font-size:108.000000px;}
.fs0{font-size:120.240000px;}
.y3a6{bottom:-10.080000px;}
.y399{bottom:-7.740000px;}
.y2ec{bottom:-4.500000px;}
.y2ab{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y165{bottom:2.664245px;}
.y168{bottom:2.951293px;}
.y15f{bottom:2.951295px;}
.yf9{bottom:2.993513px;}
.y10f{bottom:3.600000px;}
.y116{bottom:3.776267px;}
.y1d9{bottom:3.776303px;}
.y224{bottom:3.776323px;}
.y13d{bottom:3.780000px;}
.y140{bottom:3.810607px;}
.y267{bottom:3.810613px;}
.y13a{bottom:3.810635px;}
.y12b{bottom:3.810636px;}
.y265{bottom:3.810670px;}
.y2c0{bottom:3.810675px;}
.yfc{bottom:3.960000px;}
.y151{bottom:4.292485px;}
.ye5{bottom:4.308050px;}
.y14b{bottom:4.596491px;}
.y2d6{bottom:4.752085px;}
.y14d{bottom:4.785797px;}
.y1d4{bottom:4.785816px;}
.ye7{bottom:4.821504px;}
.yd4{bottom:4.821542px;}
.yd6{bottom:4.821580px;}
.y2c9{bottom:5.006041px;}
.y291{bottom:5.267302px;}
.yf7{bottom:5.499783px;}
.y3ae{bottom:5.580000px;}
.y248{bottom:5.748813px;}
.y277{bottom:5.906402px;}
.y236{bottom:5.911656px;}
.y113{bottom:5.940000px;}
.y270{bottom:6.015793px;}
.y22c{bottom:6.021143px;}
.y397{bottom:7.020000px;}
.y2e4{bottom:7.108437px;}
.y316{bottom:7.590280px;}
.y310{bottom:7.590299px;}
.y29b{bottom:7.590319px;}
.y288{bottom:7.628451px;}
.y282{bottom:7.628456px;}
.yf5{bottom:7.692733px;}
.y23f{bottom:8.077441px;}
.y20b{bottom:8.460000px;}
.y117{bottom:8.513593px;}
.y1da{bottom:8.513661px;}
.y12c{bottom:8.547964px;}
.y141{bottom:8.547965px;}
.y266{bottom:8.548002px;}
.y268{bottom:8.548004px;}
.y14e{bottom:9.321572px;}
.y1d5{bottom:9.321603px;}
.ye8{bottom:9.357254px;}
.yd7{bottom:9.357296px;}
.yd5{bottom:9.357325px;}
.yd8{bottom:9.357335px;}
.y3ac{bottom:9.540000px;}
.y2cc{bottom:9.649241px;}
.y2cf{bottom:9.649243px;}
.y2da{bottom:9.649247px;}
.yf8{bottom:10.233816px;}
.y273{bottom:10.646108px;}
.y230{bottom:10.655567px;}
.y20e{bottom:10.980000px;}
.y15e{bottom:11.041420px;}
.y167{bottom:11.041422px;}
.y16c{bottom:11.340000px;}
.y28b{bottom:12.278100px;}
.y2de{bottom:12.278102px;}
.y295{bottom:12.278107px;}
.y14a{bottom:12.631488px;}
.y243{bottom:12.698314px;}
.y13c{bottom:13.140000px;}
.y119{bottom:15.300000px;}
.y115{bottom:16.753358px;}
.y1d8{bottom:16.753375px;}
.y223{bottom:16.753378px;}
.y2d5{bottom:16.759767px;}
.y12a{bottom:16.786995px;}
.y139{bottom:16.787014px;}
.y13f{bottom:16.787017px;}
.y2bf{bottom:16.787022px;}
.y264{bottom:16.787042px;}
.y276{bottom:17.647021px;}
.y235{bottom:17.662692px;}
.yf6{bottom:18.448179px;}
.y281{bottom:20.341890px;}
.y23e{bottom:20.739055px;}
.y290{bottom:21.686844px;}
.y31f{bottom:21.780000px;}
.y247{bottom:21.940653px;}
.y10e{bottom:22.500000px;}
.y137{bottom:22.680000px;}
.y14f{bottom:23.625000px;}
.y396{bottom:24.330000px;}
.y112{bottom:24.840000px;}
.y13b{bottom:25.380000px;}
.y3ab{bottom:26.820000px;}
.y3a4{bottom:29.880000px;}
.y20d{bottom:30.060000px;}
.y16b{bottom:30.420000px;}
.y2c8{bottom:32.466642px;}
.y26f{bottom:33.250578px;}
.y22b{bottom:33.280115px;}
.y2d4{bottom:34.025928px;}
.y2e3{bottom:34.411076px;}
.y2cb{bottom:37.108956px;}
.y2d9{bottom:37.108959px;}
.y287{bottom:37.378445px;}
.y280{bottom:37.378449px;}
.y23d{bottom:37.585191px;}
.y271{bottom:37.845024px;}
.y237{bottom:37.878631px;}
.y234{bottom:37.878632px;}
.y22d{bottom:37.878637px;}
.y22f{bottom:37.878639px;}
.y28f{bottom:38.941383px;}
.y118{bottom:39.600000px;}
.y136{bottom:41.580000px;}
.y395{bottom:41.610000px;}
.y16a{bottom:41.760000px;}
.y284{bottom:42.028688px;}
.y2dd{bottom:42.028691px;}
.y294{bottom:42.028694px;}
.y249{bottom:42.205908px;}
.y246{bottom:42.205909px;}
.y240{bottom:42.205913px;}
.y242{bottom:42.205916px;}
.y111{bottom:43.740000px;}
.y3aa{bottom:44.100000px;}
.y131{bottom:47.010000px;}
.y3a3{bottom:47.160000px;}
.y2d3{bottom:47.556024px;}
.y275{bottom:48.162065px;}
.y233{bottom:48.204807px;}
.y148{bottom:49.005000px;}
.y15c{bottom:49.320000px;}
.y27f{bottom:50.092477px;}
.y23c{bottom:50.247250px;}
.y28e{bottom:55.324002px;}
.y245{bottom:55.341756px;}
.y394{bottom:58.890000px;}
.y2c7{bottom:60.071768px;}
.y26e{bottom:60.449642px;}
.y22a{bottom:60.503283px;}
.y169{bottom:60.660000px;}
.y135{bottom:60.690000px;}
.y3a9{bottom:61.380000px;}
.y3b0{bottom:61.500000px;}
.y2d2{bottom:63.299920px;}
.y274{bottom:63.658462px;}
.y232{bottom:63.714951px;}
.y3a2{bottom:64.440000px;}
.y2ce{bottom:64.715559px;}
.y2d1{bottom:64.715560px;}
.y2d8{bottom:64.715567px;}
.y272{bottom:65.079809px;}
.y231{bottom:65.137555px;}
.y22e{bottom:65.137557px;}
.yc0{bottom:66.000000px;}
.y23b{bottom:67.093333px;}
.y286{bottom:67.166104px;}
.y27e{bottom:67.166108px;}
.y15b{bottom:68.220000px;}
.y12f{bottom:70.050000px;}
.y241{bottom:71.714057px;}
.y28a{bottom:71.779275px;}
.y293{bottom:71.779281px;}
.y147{bottom:72.225000px;}
.y244{bottom:72.514627px;}
.y28d{bottom:72.578542px;}
.y393{bottom:75.990000px;}
.y3a8{bottom:78.660000px;}
.y163{bottom:79.560000px;}
.y134{bottom:79.590000px;}
.y23a{bottom:79.755392px;}
.y27d{bottom:79.843064px;}
.y3a1{bottom:81.720000px;}
.y15a{bottom:87.300000px;}
.y2c6{bottom:89.091063px;}
.y12e{bottom:89.130000px;}
.y146{bottom:91.125000px;}
.y392{bottom:93.270000px;}
.y2d7{bottom:93.734848px;}
.y2d0{bottom:93.734858px;}
.y2ca{bottom:93.734860px;}
.y2cd{bottom:93.734861px;}
.y1fa{bottom:96.000000px;}
.y285{bottom:98.332815px;}
.y27c{bottom:98.332825px;}
.y133{bottom:98.670000px;}
.y3a0{bottom:99.000000px;}
.y6c{bottom:102.000000px;}
.y162{bottom:102.780000px;}
.y292{bottom:102.945983px;}
.y28c{bottom:102.945995px;}
.y283{bottom:102.945997px;}
.y289{bottom:102.945998px;}
.yfe{bottom:103.500000px;}
.y159{bottom:106.200000px;}
.y16e{bottom:108.000000px;}
.y1a1{bottom:109.500000px;}
.y155{bottom:110.205000px;}
.y27b{bottom:111.011264px;}
.y12d{bottom:113.430000px;}
.y145{bottom:115.425000px;}
.y39f{bottom:116.280000px;}
.y1cc{bottom:117.000000px;}
.y132{bottom:117.570000px;}
.y2ee{bottom:120.000000px;}
.y34d{bottom:121.500000px;}
.y161{bottom:121.680000px;}
.y158{bottom:125.280000px;}
.y34{bottom:126.000000px;}
.y33{bottom:127.500000px;}
.y154{bottom:129.105000px;}
.y92{bottom:133.416000px;}
.y39e{bottom:133.560000px;}
.y31d{bottom:135.936000px;}
.y128{bottom:136.470000px;}
.y143{bottom:138.645000px;}
.y16d{bottom:139.536000px;}
.y160{bottom:140.040000px;}
.y1f8{bottom:140.796000px;}
.y37c{bottom:140.976000px;}
.y2a8{bottom:142.056000px;}
.y2aa{bottom:143.820000px;}
.y210{bottom:144.000000px;}
.y2ea{bottom:144.036000px;}
.y157{bottom:144.180000px;}
.y19f{bottom:145.656000px;}
.y259{bottom:147.000000px;}
.y153{bottom:148.185000px;}
.y31{bottom:149.436000px;}
.y39d{bottom:150.660000px;}
.yf4{bottom:150.765000px;}
.y31b{bottom:151.290000px;}
.y91{bottom:152.490000px;}
.y126{bottom:153.585000px;}
.y6a{bottom:154.830000px;}
.ybf{bottom:155.010000px;}
.y34c{bottom:155.370000px;}
.y156{bottom:155.550000px;}
.y37b{bottom:158.250000px;}
.y258{bottom:158.790000px;}
.y209{bottom:159.150000px;}
.yfa{bottom:161.130000px;}
.y1f7{bottom:161.850000px;}
.y2a7{bottom:162.750000px;}
.y142{bottom:162.945000px;}
.y2e9{bottom:163.290000px;}
.y19e{bottom:164.550000px;}
.y152{bottom:167.085000px;}
.y39c{bottom:167.940000px;}
.y30{bottom:168.330000px;}
.y90{bottom:171.390000px;}
.y31c{bottom:172.290000px;}
.y125{bottom:172.665000px;}
.y69{bottom:173.730000px;}
.ybe{bottom:174.090000px;}
.y34b{bottom:174.270000px;}
.y2ac{bottom:175.500000px;}
.y37a{bottom:175.530000px;}
.y257{bottom:177.690000px;}
.y1f6{bottom:179.850000px;}
.y20c{bottom:180.030000px;}
.y1ca{bottom:180.390000px;}
.y2a6{bottom:183.450000px;}
.y19d{bottom:183.630000px;}
.y2e8{bottom:183.990000px;}
.yf3{bottom:184.710000px;}
.y39b{bottom:185.220000px;}
.y2f{bottom:187.230000px;}
.y1f5{bottom:187.770000px;}
.y208{bottom:188.850000px;}
.y8f{bottom:190.290000px;}
.y124{bottom:191.565000px;}
.y379{bottom:192.810000px;}
.ybd{bottom:192.990000px;}
.y68{bottom:193.170000px;}
.y256{bottom:196.770000px;}
.y1c9{bottom:199.650000px;}
.y2eb{bottom:200.520000px;}
.y19c{bottom:202.530000px;}
.y2a5{bottom:204.150000px;}
.y2e7{bottom:204.330000px;}
.yf2{bottom:205.410000px;}
.y31a{bottom:205.950000px;}
.y2e{bottom:206.310000px;}
.y1f4{bottom:206.850000px;}
.yfb{bottom:207.390000px;}
.y378{bottom:210.090000px;}
.y123{bottom:210.645000px;}
.ybc{bottom:212.070000px;}
.y34a{bottom:212.250000px;}
.y67{bottom:212.430000px;}
.y255{bottom:215.670000px;}
.y8e{bottom:218.190000px;}
.y1c8{bottom:218.550000px;}
.y19b{bottom:221.610000px;}
.yf0{bottom:222.240000px;}
.y2e6{bottom:223.410000px;}
.y2a4{bottom:224.490000px;}
.y31e{bottom:224.865000px;}
.y319{bottom:225.030000px;}
.y2d{bottom:225.210000px;}
.y1f3{bottom:225.750000px;}
.y377{bottom:227.370000px;}
.ybb{bottom:230.970000px;}
.yf1{bottom:231.150000px;}
.y66{bottom:231.690000px;}
.y166{bottom:232.139980px;}
.y164{bottom:232.140000px;}
.y122{bottom:233.325000px;}
.y254{bottom:234.750000px;}
.y1c7{bottom:237.630000px;}
.y2e2{bottom:238.590000px;}
.y19a{bottom:240.510000px;}
.y2c{bottom:242.850000px;}
.y2a3{bottom:243.570000px;}
.y318{bottom:243.930000px;}
.y207{bottom:244.290000px;}
.y376{bottom:244.470000px;}
.y1f2{bottom:244.650000px;}
.y8d{bottom:246.090000px;}
.yba{bottom:250.050000px;}
.y349{bottom:250.230000px;}
.y65{bottom:250.770000px;}
.y253{bottom:253.650000px;}
.y2b{bottom:256.350000px;}
.y1c6{bottom:256.530000px;}
.y315{bottom:259.140000px;}
.y199{bottom:259.410000px;}
.y2e5{bottom:259.590000px;}
.y121{bottom:259.785000px;}
.yef{bottom:261.570000px;}
.y375{bottom:261.750000px;}
.y1f1{bottom:263.730000px;}
.y317{bottom:266.610000px;}
.y348{bottom:269.130000px;}
.y8c{bottom:270.750000px;}
.y2a2{bottom:271.290000px;}
.y252{bottom:272.550000px;}
.y2a{bottom:275.250000px;}
.y1c5{bottom:275.430000px;}
.yb9{bottom:277.770000px;}
.y64{bottom:278.490000px;}
.y374{bottom:279.030000px;}
.y120{bottom:282.465000px;}
.y1f0{bottom:282.630000px;}
.y314{bottom:286.950000px;}
.y347{bottom:288.030000px;}
.y251{bottom:288.750000px;}
.yee{bottom:289.830000px;}
.y2a1{bottom:290.550000px;}
.y15d{bottom:292.589980px;}
.y29{bottom:294.330000px;}
.y250{bottom:295.050000px;}
.y2e1{bottom:295.590000px;}
.y373{bottom:296.310000px;}
.yb8{bottom:297.030000px;}
.y198{bottom:297.390000px;}
.y63{bottom:297.750000px;}
.y11f{bottom:301.575000px;}
.y1ef{bottom:301.710000px;}
.y1c4{bottom:303.330000px;}
.y313{bottom:305.850000px;}
.y346{bottom:307.110000px;}
.yed{bottom:309.090000px;}
.y2a0{bottom:309.450000px;}
.y28{bottom:313.230000px;}
.y372{bottom:313.590000px;}
.y24f{bottom:313.950000px;}
.y11a{bottom:315.750000px;}
.yb7{bottom:315.930000px;}
.y197{bottom:316.470000px;}
.y62{bottom:316.650000px;}
.y1ee{bottom:318.990000px;}
.y11e{bottom:320.475000px;}
.y1c3{bottom:322.410000px;}
.y2e0{bottom:324.750000px;}
.y312{bottom:324.930000px;}
.y345{bottom:326.010000px;}
.yec{bottom:328.170000px;}
.y29f{bottom:328.350000px;}
.y371{bottom:330.870000px;}
.y1ed{bottom:331.050000px;}
.y27{bottom:332.130000px;}
.y24e{bottom:333.030000px;}
.yb6{bottom:334.830000px;}
.y150{bottom:334.890000px;}
.y196{bottom:335.370000px;}
.y61{bottom:335.730000px;}
.y11d{bottom:339.555000px;}
.y30f{bottom:340.139980px;}
.y1c2{bottom:341.535000px;}
.y344{bottom:344.235000px;}
.y2df{bottom:346.755000px;}
.yeb{bottom:347.115000px;}
.y311{bottom:347.655000px;}
.y370{bottom:348.015000px;}
.y26{bottom:351.255000px;}
.y24d{bottom:351.975000px;}
.yb5{bottom:353.955000px;}
.y195{bottom:354.495000px;}
.y60{bottom:354.675000px;}
.y14c{bottom:355.739959px;}
.y29e{bottom:356.295000px;}
.y8b{bottom:357.555000px;}
.y11c{bottom:358.455000px;}
.y149{bottom:360.239959px;}
.y1c1{bottom:360.435000px;}
.y343{bottom:360.615000px;}
.y39a{bottom:361.695000px;}
.y36f{bottom:365.295000px;}
.yea{bottom:366.015000px;}
.y30e{bottom:367.815000px;}
.y2dc{bottom:368.939959px;}
.y1ec{bottom:369.255000px;}
.y25{bottom:370.155000px;}
.y24c{bottom:371.055000px;}
.y8a{bottom:371.595000px;}
.yb4{bottom:372.855000px;}
.y194{bottom:373.395000px;}
.y5f{bottom:373.575000px;}
.y11b{bottom:377.355000px;}
.y342{bottom:378.795000px;}
.y1c0{bottom:379.335000px;}
.y29d{bottom:381.315000px;}
.y36e{bottom:382.575000px;}
.y1eb{bottom:385.995000px;}
.y30d{bottom:386.895000px;}
.y24{bottom:389.235000px;}
.ye9{bottom:390.675000px;}
.y193{bottom:391.035000px;}
.yb3{bottom:391.935000px;}
.y29c{bottom:393.735000px;}
.y341{bottom:395.175000px;}
.y89{bottom:396.075000px;}
.y5e{bottom:398.235000px;}
.y36d{bottom:399.855000px;}
.ye6{bottom:401.115000px;}
.y1bf{bottom:403.995000px;}
.y192{bottom:404.355000px;}
.y29a{bottom:405.464959px;}
.ye4{bottom:405.615000px;}
.y30c{bottom:405.795000px;}
.y23{bottom:408.135000px;}
.ye3{bottom:410.115000px;}
.yb2{bottom:410.835000px;}
.y24b{bottom:412.995000px;}
.y5d{bottom:413.175000px;}
.y340{bottom:414.075000px;}
.y36c{bottom:417.135000px;}
.y1be{bottom:418.395000px;}
.y144{bottom:422.189959px;}
.y191{bottom:423.435000px;}
.y30b{bottom:424.695000px;}
.y2db{bottom:425.955000px;}
.y22{bottom:427.035000px;}
.y24a{bottom:432.075000px;}
.y33f{bottom:432.975000px;}
.y36b{bottom:434.235000px;}
.yb1{bottom:438.555000px;}
.y299{bottom:439.455000px;}
.ye2{bottom:440.535000px;}
.y5c{bottom:442.155000px;}
.y190{bottom:442.335000px;}
.y30a{bottom:443.775000px;}
.y1bd{bottom:444.495000px;}
.y5b{bottom:444.855000px;}
.y36a{bottom:451.515000px;}
.y21{bottom:452.055000px;}
.y5a{bottom:454.035000px;}
.y298{bottom:456.375000px;}
.yb0{bottom:457.815000px;}
.y1bc{bottom:458.355000px;}
.y3a5{bottom:459.255000px;}
.ye1{bottom:459.795000px;}
.y18f{bottom:459.975000px;}
.y309{bottom:462.675000px;}
.y20{bottom:468.435000px;}
.y369{bottom:468.795000px;}
.y13e{bottom:469.739959px;}
.y33e{bottom:470.955000px;}
.y59{bottom:473.115000px;}
.y18e{bottom:473.475000px;}
.yaf{bottom:476.715000px;}
.y1bb{bottom:477.435000px;}
.y297{bottom:481.035000px;}
.y308{bottom:481.755000px;}
.y206{bottom:481.935000px;}
.y368{bottom:486.075000px;}
.y296{bottom:486.435000px;}
.y88{bottom:487.335000px;}
.ye0{bottom:487.515000px;}
.y33d{bottom:490.035000px;}
.y239{bottom:491.339959px;}
.y58{bottom:492.015000px;}
.y18d{bottom:492.375000px;}
.y205{bottom:494.715000px;}
.yae{bottom:495.795000px;}
.y1ba{bottom:496.515000px;}
.y1f{bottom:498.855000px;}
.y307{bottom:500.655000px;}
.y27a{bottom:503.189959px;}
.y367{bottom:503.355000px;}
.y20a{bottom:503.535000px;}
.y87{bottom:506.415000px;}
.ydf{bottom:506.775000px;}
.y33c{bottom:508.935000px;}
.y57{bottom:511.095000px;}
.y2c5{bottom:511.139959px;}
.y18c{bottom:511.455000px;}
.yad{bottom:514.695000px;}
.y1b9{bottom:515.415000px;}
.y204{bottom:518.655000px;}
.y1e{bottom:519.555000px;}
.y306{bottom:519.735000px;}
.y366{bottom:520.635000px;}
.y86{bottom:525.315000px;}
.y33b{bottom:526.575000px;}
.y138{bottom:527.339959px;}
.y56{bottom:529.995000px;}
.y18b{bottom:530.355000px;}
.y238{bottom:533.235000px;}
.yac{bottom:533.595000px;}
.y1b8{bottom:534.495000px;}
.yde{bottom:534.855000px;}
.y365{bottom:537.735000px;}
.y305{bottom:538.635000px;}
.y33a{bottom:539.895000px;}
.y1ea{bottom:542.235000px;}
.y203{bottom:543.135000px;}
.y1d{bottom:546.735000px;}
.y55{bottom:548.895000px;}
.y18a{bottom:549.255000px;}
.y85{bottom:553.215000px;}
.y1b7{bottom:553.395000px;}
.ydd{bottom:554.115000px;}
.y364{bottom:555.015000px;}
.y127{bottom:556.635000px;}
.y304{bottom:557.535000px;}
.y339{bottom:558.975000px;}
.y279{bottom:560.235000px;}
.y1e9{bottom:560.955000px;}
.yab{bottom:561.495000px;}
.y2c4{bottom:562.035000px;}
.y54{bottom:567.975000px;}
.y189{bottom:568.335000px;}
.y1c{bottom:570.855000px;}
.y84{bottom:572.295000px;}
.y303{bottom:576.615000px;}
.y338{bottom:577.875000px;}
.yaa{bottom:580.575000px;}
.y229{bottom:584.339959px;}
.y391{bottom:585.255000px;}
.y53{bottom:585.795000px;}
.y363{bottom:589.575000px;}
.y1b{bottom:590.655000px;}
.y83{bottom:591.375000px;}
.ydc{bottom:591.735000px;}
.y1e8{bottom:592.275000px;}
.y188{bottom:592.815000px;}
.y130{bottom:594.614959px;}
.y398{bottom:595.335000px;}
.y302{bottom:595.515000px;}
.y337{bottom:596.955000px;}
.ya9{bottom:599.655000px;}
.y52{bottom:600.735000px;}
.y362{bottom:604.005000px;}
.y187{bottom:607.245000px;}
.y361{bottom:608.505000px;}
.y1e7{bottom:609.045000px;}
.y82{bottom:610.305000px;}
.y1a{bottom:610.485000px;}
.y301{bottom:614.625000px;}
.y1b6{bottom:615.885000px;}
.ya8{bottom:618.585000px;}
.y51{bottom:619.665000px;}
.ydb{bottom:620.565000px;}
.y228{bottom:621.825000px;}
.y2c3{bottom:625.785000px;}
.y81{bottom:629.205000px;}
.y278{bottom:629.925000px;}
.y19{bottom:630.285000px;}
.y1b5{bottom:631.005000px;}
.y186{bottom:634.605000px;}
.y336{bottom:634.785000px;}
.ya7{bottom:637.485000px;}
.y50{bottom:638.745000px;}
.y360{bottom:643.065000px;}
.y2c2{bottom:644.685000px;}
.y26d{bottom:645.240000px;}
.y185{bottom:645.405000px;}
.y80{bottom:645.945000px;}
.yda{bottom:649.545000px;}
.y18{bottom:650.085000px;}
.y300{bottom:652.425000px;}
.y335{bottom:652.605000px;}
.y1b4{bottom:652.965000px;}
.y7f{bottom:655.125000px;}
.ya6{bottom:656.565000px;}
.y4f{bottom:657.645000px;}
.y35f{bottom:660.345000px;}
.y129{bottom:661.064959px;}
.y184{bottom:664.305000px;}
.y1b3{bottom:665.025000px;}
.y334{bottom:665.925000px;}
.y2c1{bottom:666.465000px;}
.y2ff{bottom:668.085000px;}
.yd9{bottom:668.985000px;}
.y17{bottom:669.885000px;}
.y7e{bottom:674.205000px;}
.y4e{bottom:675.105000px;}
.ya5{bottom:675.465000px;}
.y35e{bottom:677.625000px;}
.y1b2{bottom:678.345000px;}
.y227{bottom:680.865000px;}
.y26c{bottom:682.665000px;}
.y183{bottom:683.205000px;}
.y333{bottom:684.825000px;}
.yd3{bottom:686.264919px;}
.y4d{bottom:686.985000px;}
.y16{bottom:689.685000px;}
.y2fe{bottom:692.385000px;}
.y7d{bottom:693.105000px;}
.y2be{bottom:694.514919px;}
.y35d{bottom:694.725000px;}
.yd2{bottom:695.265000px;}
.y1b1{bottom:697.425000px;}
.y182{bottom:702.285000px;}
.ya4{bottom:703.365000px;}
.y2bd{bottom:703.545000px;}
.y332{bottom:703.905000px;}
.y4c{bottom:705.885000px;}
.y226{bottom:708.765000px;}
.y110{bottom:709.125000px;}
.y15{bottom:709.485000px;}
.y7c{bottom:712.005000px;}
.y2fd{bottom:713.085000px;}
.yd1{bottom:715.245000px;}
.y1b0{bottom:716.325000px;}
.y3ad{bottom:718.125000px;}
.y3a7{bottom:719.205000px;}
.y390{bottom:720.465000px;}
.y181{bottom:721.185000px;}
.ya3{bottom:722.445000px;}
.y331{bottom:722.805000px;}
.y4b{bottom:724.965000px;}
.y1e6{bottom:725.505000px;}
.yd0{bottom:726.045000px;}
.y2bc{bottom:726.585000px;}
.y14{bottom:729.285000px;}
.y7b{bottom:731.085000px;}
.y222{bottom:733.214919px;}
.y2fc{bottom:733.785000px;}
.y1af{bottom:735.225000px;}
.y26b{bottom:738.825000px;}
.y114{bottom:739.740000px;}
.y180{bottom:740.265000px;}
.ya2{bottom:741.525000px;}
.y330{bottom:741.885000px;}
.y225{bottom:742.245000px;}
.y4a{bottom:743.865000px;}
.ycf{bottom:745.125000px;}
.y2bb{bottom:745.665000px;}
.y1e5{bottom:746.205000px;}
.y35c{bottom:746.565000px;}
.y38f{bottom:746.745000px;}
.y13{bottom:749.085000px;}
.y7a{bottom:749.985000px;}
.y1ae{bottom:754.305000px;}
.y2fb{bottom:754.485000px;}
.y26a{bottom:754.665000px;}
.y17f{bottom:759.165000px;}
.ya1{bottom:760.425000px;}
.y32f{bottom:760.785000px;}
.y49{bottom:761.685000px;}
.y35b{bottom:763.845000px;}
.yce{bottom:764.025000px;}
.y2ba{bottom:764.565000px;}
.y1e4{bottom:765.285000px;}
.y12{bottom:768.885000px;}
.y10d{bottom:769.065000px;}
.y38e{bottom:773.025000px;}
.y1ad{bottom:773.205000px;}
.y221{bottom:774.285000px;}
.y79{bottom:774.645000px;}
.y2fa{bottom:775.185000px;}
.y48{bottom:776.625000px;}
.y269{bottom:777.345000px;}
.y17e{bottom:778.065000px;}
.y32e{bottom:778.425000px;}
.ya0{bottom:779.325000px;}
.y263{bottom:780.389919px;}
.ycd{bottom:780.765000px;}
.y35a{bottom:781.125000px;}
.y2b9{bottom:783.645000px;}
.y1e3{bottom:784.365000px;}
.ycc{bottom:788.325000px;}
.y11{bottom:788.505000px;}
.y262{bottom:789.405000px;}
.y32d{bottom:791.745000px;}
.y1ac{bottom:792.285000px;}
.y220{bottom:793.365000px;}
.y47{bottom:795.705000px;}
.y2f9{bottom:795.885000px;}
.y17d{bottom:797.145000px;}
.y9f{bottom:798.405000px;}
.y38d{bottom:799.305000px;}
.ycb{bottom:800.565000px;}
.y2b8{bottom:802.905000px;}
.y1e2{bottom:803.265000px;}
.y10{bottom:805.065000px;}
.y10c{bottom:808.485000px;}
.y359{bottom:808.665000px;}
.y32c{bottom:810.825000px;}
.y1ab{bottom:811.185000px;}
.y10b{bottom:812.085000px;}
.y261{bottom:812.445000px;}
.y78{bottom:812.985000px;}
.y46{bottom:814.605000px;}
.y2f8{bottom:816.585000px;}
.y9e{bottom:817.305000px;}
.y10a{bottom:817.665000px;}
.yca{bottom:818.925000px;}
.y21f{bottom:819.105000px;}
.y1e1{bottom:822.345000px;}
.y2b7{bottom:823.605000px;}
.y17c{bottom:824.505000px;}
.y38c{bottom:825.405000px;}
.y109{bottom:826.845000px;}
.yf{bottom:827.745000px;}
.y32b{bottom:829.725000px;}
.y1aa{bottom:830.085000px;}
.y260{bottom:831.525000px;}
.y358{bottom:832.785000px;}
.y45{bottom:833.685000px;}
.y9d{bottom:836.385000px;}
.y2f7{bottom:837.285000px;}
.y21e{bottom:837.645000px;}
.yc9{bottom:838.365000px;}
.y1e0{bottom:841.245000px;}
.y2b6{bottom:841.965000px;}
.y1a9{bottom:847.725000px;}
.y32a{bottom:848.805000px;}
.y17b{bottom:850.245000px;}
.y44{bottom:850.965000px;}
.y108{bottom:851.685000px;}
.y2b5{bottom:852.585000px;}
.y9c{bottom:855.285000px;}
.ye{bottom:856.725000px;}
.y357{bottom:856.905000px;}
.yc8{bottom:857.625000px;}
.y2f6{bottom:857.985000px;}
.y25f{bottom:859.245000px;}
.y1df{bottom:860.145000px;}
.y1a8{bottom:861.225000px;}
.y43{bottom:862.845000px;}
.y21d{bottom:863.565000px;}
.y107{bottom:867.165000px;}
.y17a{bottom:867.345000px;}
.y329{bottom:867.705000px;}
.yd{bottom:868.245000px;}
.y2b4{bottom:871.530000px;}
.y9b{bottom:874.230000px;}
.y21c{bottom:876.390000px;}
.yc7{bottom:876.570000px;}
.y179{bottom:878.010000px;}
.y25e{bottom:878.730000px;}
.y1de{bottom:879.270000px;}
.y1a7{bottom:880.170000px;}
.y42{bottom:880.710000px;}
.yc{bottom:885.390000px;}
.y328{bottom:886.830000px;}
.y106{bottom:888.810000px;}
.y21b{bottom:889.890000px;}
.y2b3{bottom:890.790000px;}
.y9a{bottom:893.310000px;}
.y41{bottom:894.030000px;}
.y38b{bottom:895.290000px;}
.yc6{bottom:895.650000px;}
.y178{bottom:897.090000px;}
.y25d{bottom:897.630000px;}
.y1dd{bottom:898.170000px;}
.y1a6{bottom:899.250000px;}
.y2f5{bottom:899.430000px;}
.y77{bottom:902.130000px;}
.yb{bottom:903.390000px;}
.y327{bottom:905.730000px;}
.y25c{bottom:907.890000px;}
.y105{bottom:908.070000px;}
.y21a{bottom:908.790000px;}
.y2b2{bottom:911.490000px;}
.y99{bottom:912.210000px;}
.y38a{bottom:912.570000px;}
.y40{bottom:912.930000px;}
.yc5{bottom:914.550000px;}
.y1dc{bottom:917.250000px;}
.y1a5{bottom:918.150000px;}
.y25b{bottom:918.330000px;}
.y2f4{bottom:920.130000px;}
.y76{bottom:921.210000px;}
.y177{bottom:924.450000px;}
.y326{bottom:924.630000px;}
.ya{bottom:924.810000px;}
.y219{bottom:927.690000px;}
.y104{bottom:928.770000px;}
.y389{bottom:929.850000px;}
.y25a{bottom:930.210000px;}
.y3f{bottom:932.190000px;}
.y1db{bottom:933.450000px;}
.y1a4{bottom:937.230000px;}
.y1d7{bottom:937.739919px;}
.yc4{bottom:939.210000px;}
.y98{bottom:940.110000px;}
.y75{bottom:940.290000px;}
.y2f3{bottom:940.830000px;}
.y9{bottom:941.730000px;}
.y325{bottom:943.710000px;}
.y1d6{bottom:946.770000px;}
.y388{bottom:947.130000px;}
.y103{bottom:949.290000px;}
.y176{bottom:950.190000px;}
.y3e{bottom:952.890000px;}
.yc3{bottom:954.150000px;}
.y1a3{bottom:956.130000px;}
.y8{bottom:958.830000px;}
.y74{bottom:959.190000px;}
.y2f2{bottom:961.530000px;}
.y324{bottom:962.610000px;}
.y387{bottom:964.230000px;}
.y218{bottom:965.670000px;}
.y1d3{bottom:966.164919px;}
.y2a9{bottom:966.390000px;}
.y175{bottom:967.650000px;}
.y102{bottom:968.190000px;}
.y356{bottom:971.790000px;}
.y3d{bottom:973.590000px;}
.y1a2{bottom:973.770000px;}
.y1d2{bottom:975.210000px;}
.y355{bottom:975.570000px;}
.y7{bottom:976.830000px;}
.y73{bottom:978.090000px;}
.y174{bottom:979.710000px;}
.y386{bottom:981.510000px;}
.y323{bottom:981.690000px;}
.y2f1{bottom:982.230000px;}
.yc2{bottom:982.950000px;}
.y217{bottom:983.310000px;}
.y101{bottom:987.090000px;}
.y354{bottom:988.890000px;}
.y202{bottom:992.130000px;}
.y3c{bottom:994.110000px;}
.y2b1{bottom:994.290000px;}
.y173{bottom:995.010000px;}
.y1d1{bottom:996.810000px;}
.yc1{bottom:996.990000px;}
.y72{bottom:997.170000px;}
.y385{bottom:998.790000px;}
.y322{bottom:998.970000px;}
.y201{bottom:1001.850000px;}
.y2f0{bottom:1002.930000px;}
.y6{bottom:1004.370000px;}
.y100{bottom:1006.170000px;}
.y353{bottom:1007.790000px;}
.y3b{bottom:1013.010000px;}
.y384{bottom:1013.190000px;}
.y2b0{bottom:1014.990000px;}
.y216{bottom:1015.710000px;}
.y71{bottom:1016.070000px;}
.y5{bottom:1016.610000px;}
.y383{bottom:1017.690000px;}
.y321{bottom:1020.750000px;}
.y1d0{bottom:1021.470000px;}
.y200{bottom:1022.910000px;}
.y2ef{bottom:1023.630000px;}
.y97{bottom:1024.890000px;}
.yff{bottom:1025.070000px;}
.y352{bottom:1026.870000px;}
.y4{bottom:1030.470000px;}
.y3a{bottom:1032.090000px;}
.y172{bottom:1032.810000px;}
.y215{bottom:1034.790000px;}
.y382{bottom:1034.970000px;}
.y70{bottom:1035.150000px;}
.y1cf{bottom:1035.330000px;}
.y2af{bottom:1035.690000px;}
.y1ff{bottom:1042.350000px;}
.y96{bottom:1044.150000px;}
.y351{bottom:1045.770000px;}
.y171{bottom:1050.450000px;}
.y39{bottom:1050.990000px;}
.y381{bottom:1052.250000px;}
.y3{bottom:1052.430000px;}
.y214{bottom:1053.690000px;}
.y6f{bottom:1054.050000px;}
.y1fe{bottom:1056.030000px;}
.y2ae{bottom:1056.390000px;}
.y170{bottom:1062.330000px;}
.y95{bottom:1063.050000px;}
.y350{bottom:1064.850000px;}
.y380{bottom:1069.530000px;}
.y38{bottom:1069.890000px;}
.y213{bottom:1072.590000px;}
.y6e{bottom:1072.950000px;}
.y2{bottom:1075.650000px;}
.y1fd{bottom:1076.730000px;}
.y2ad{bottom:1077.090000px;}
.y1ce{bottom:1077.630000px;}
.y16f{bottom:1081.590000px;}
.y94{bottom:1081.950000px;}
.y34f{bottom:1082.490000px;}
.y37f{bottom:1086.810000px;}
.y37{bottom:1087.530000px;}
.y34e{bottom:1093.110000px;}
.y1fc{bottom:1097.430000px;}
.y212{bottom:1098.510000px;}
.y6d{bottom:1100.850000px;}
.y36{bottom:1101.030000px;}
.y37e{bottom:1104.090000px;}
.y1{bottom:1109.490000px;}
.y1fb{bottom:1118.130000px;}
.y211{bottom:1118.490000px;}
.y1cd{bottom:1119.750000px;}
.y35{bottom:1119.930000px;}
.y37d{bottom:1121.190000px;}
.y1cb{bottom:1134.000000px;}
.y2ed{bottom:1141.500000px;}
.yfd{bottom:1149.000000px;}
.y93{bottom:1150.500000px;}
.y6b{bottom:1152.000000px;}
.y1a0{bottom:1153.500000px;}
.y3af{bottom:1155.000000px;}
.y20f{bottom:1156.500000px;}
.y320{bottom:1158.000000px;}
.y32{bottom:1159.500000px;}
.y1f9{bottom:1173.000000px;}
.h18{height:5.653125px;}
.h16{height:5.805000px;}
.h64{height:12.006914px;}
.h2f{height:12.012891px;}
.h10{height:12.335625px;}
.h30{height:17.666016px;}
.h4a{height:19.424636px;}
.h2e{height:19.440000px;}
.h44{height:20.849134px;}
.h22{height:20.924733px;}
.h47{height:22.499567px;}
.h15{height:23.319141px;}
.h84{height:23.925417px;}
.h83{height:23.925437px;}
.h72{height:23.925457px;}
.h53{height:23.940000px;}
.h56{height:23.945625px;}
.h3f{height:23.999978px;}
.h25{height:27.000771px;}
.h42{height:27.000812px;}
.h1c{height:27.000852px;}
.h33{height:28.423954px;}
.h39{height:28.423994px;}
.h50{height:28.424035px;}
.ha{height:29.664141px;}
.h4d{height:29.678906px;}
.h27{height:30.074383px;}
.h28{height:30.234015px;}
.h19{height:30.476250px;}
.h13{height:35.332031px;}
.he{height:36.281250px;}
.h31{height:37.800000px;}
.h8{height:39.830273px;}
.h1f{height:40.124047px;}
.h1d{height:40.144019px;}
.h66{height:40.551524px;}
.h58{height:40.587499px;}
.h40{height:40.680509px;}
.h5e{height:40.754536px;}
.h6e{height:40.810246px;}
.h6c{height:40.830559px;}
.h77{height:40.916969px;}
.h48{height:40.938503px;}
.h5{height:40.985156px;}
.h2b{height:41.568024px;}
.h29{height:41.588714px;}
.h3c{height:41.669364px;}
.h34{height:41.690105px;}
.h4f{height:42.086250px;}
.hc{height:43.506914px;}
.h54{height:45.360000px;}
.h6{height:47.344922px;}
.h52{height:48.616875px;}
.h37{height:49.663828px;}
.h7e{height:50.926544px;}
.h87{height:52.435898px;}
.h11{height:52.998047px;}
.h6a{height:53.096546px;}
.h5c{height:53.143651px;}
.h62{height:53.310149px;}
.h71{height:53.443141px;}
.h7b{height:53.584471px;}
.h3b{height:56.880000px;}
.h4e{height:58.121719px;}
.hd{height:58.621992px;}
.h86{height:58.651172px;}
.h1a{height:58.844458px;}
.h32{height:59.040000px;}
.h88{height:60.226875px;}
.h63{height:64.978594px;}
.h3{height:65.010937px;}
.h1b{height:65.884219px;}
.h69{height:66.265887px;}
.h5b{height:66.324674px;}
.h61{height:66.532468px;}
.h70{height:66.698447px;}
.h17{height:66.757500px;}
.h7a{height:66.874830px;}
.h81{height:67.422537px;}
.h14{height:68.084282px;}
.h21{height:69.121248px;}
.h26{height:69.136907px;}
.h20{height:69.305640px;}
.h1e{height:69.340137px;}
.h43{height:69.448656px;}
.h73{height:69.973601px;}
.h68{height:70.178264px;}
.h67{height:70.213196px;}
.h5a{height:70.240522px;}
.h59{height:70.275485px;}
.h41{height:70.291511px;}
.h60{height:70.460585px;}
.h5f{height:70.495657px;}
.h6f{height:70.636363px;}
.h7{height:70.664062px;}
.h6d{height:70.671523px;}
.h49{height:70.787657px;}
.h79{height:70.823159px;}
.h78{height:70.858412px;}
.h45{height:70.927548px;}
.h23{height:71.184732px;}
.h24{height:71.220165px;}
.h80{height:71.403203px;}
.h7f{height:71.438745px;}
.h4b{height:71.800289px;}
.h2c{height:71.924713px;}
.h2d{height:71.938590px;}
.h2a{height:71.960514px;}
.h3d{height:72.011347px;}
.h3a{height:72.047192px;}
.h51{height:72.143317px;}
.h35{height:72.179227px;}
.h12{height:72.562500px;}
.h9{height:74.704922px;}
.h55{height:74.953125px;}
.hb{height:76.279219px;}
.h4{height:77.531484px;}
.h2{height:81.432070px;}
.h65{height:84.002321px;}
.h57{height:84.076884px;}
.hf{height:84.898125px;}
.h8d{height:92.520000px;}
.h8c{height:92.700000px;}
.h8a{height:92.736000px;}
.h5d{height:92.999712px;}
.h7c{height:93.983203px;}
.h7d{height:105.996094px;}
.h89{height:107.316000px;}
.h76{height:111.002503px;}
.h4c{height:114.997500px;}
.h75{height:118.008984px;}
.h6b{height:122.926032px;}
.h38{height:151.770000px;}
.h46{height:159.480000px;}
.h74{height:160.560000px;}
.h3e{height:182.370000px;}
.h8b{height:199.260000px;}
.h82{height:217.260000px;}
.h85{height:241.590000px;}
.h36{height:392.655000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:18.000286px;}
.w18{width:19.424950px;}
.w16{width:19.424981px;}
.w12{width:20.849760px;}
.w19{width:20.850830px;}
.w17{width:20.850861px;}
.w13{width:25.574875px;}
.w5{width:26.999379px;}
.w9{width:46.080000px;}
.w15{width:52.575494px;}
.w4{width:72.002183px;}
.w2b{width:108.900000px;}
.w2d{width:109.080000px;}
.wc{width:125.496000px;}
.wa{width:132.840000px;}
.wd{width:143.996120px;}
.w1c{width:143.996161px;}
.w3{width:178.577960px;}
.w7{width:214.501952px;}
.w8{width:223.498867px;}
.w6{width:236.861040px;}
.w10{width:268.577306px;}
.w1f{width:288.008009px;}
.w1d{width:288.008030px;}
.w1e{width:293.918003px;}
.w11{width:310.507716px;}
.we{width:317.916246px;}
.wf{width:328.512731px;}
.wb{width:387.075000px;}
.w27{width:392.925315px;}
.w1a{width:481.605000px;}
.w24{width:508.494547px;}
.w25{width:522.002648px;}
.w28{width:551.996541px;}
.w26{width:552.072141px;}
.w2a{width:552.345000px;}
.w2e{width:555.765000px;}
.w2c{width:556.845000px;}
.w21{width:576.005662px;}
.w20{width:578.996181px;}
.w23{width:602.989673px;}
.w22{width:624.885000px;}
.w29{width:633.345000px;}
.w1b{width:666.105000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:1.604939px;}
.x24{left:2.981942px;}
.x2e{left:8.334302px;}
.x41{left:9.540000px;}
.x38{left:10.800000px;}
.x1f{left:12.364832px;}
.x73{left:14.498251px;}
.x3f{left:15.705000px;}
.x48{left:17.820000px;}
.x79{left:19.388215px;}
.x7a{left:20.930412px;}
.x1e{left:22.358322px;}
.x3d{left:29.925000px;}
.x3c{left:36.174000px;}
.x2f{left:37.321352px;}
.x35{left:41.303148px;}
.x40{left:43.014000px;}
.x8c{left:44.024849px;}
.x44{left:45.271979px;}
.x2d{left:48.068065px;}
.x81{left:49.938609px;}
.x86{left:51.020252px;}
.x34{left:52.076783px;}
.x71{left:53.468615px;}
.x8a{left:57.232757px;}
.x32{left:60.073241px;}
.x29{left:61.480748px;}
.x47{left:66.414000px;}
.x8b{left:68.495903px;}
.x67{left:75.105000px;}
.x7d{left:76.193325px;}
.x8e{left:81.346438px;}
.x28{left:82.826861px;}
.x7e{left:85.446489px;}
.x20{left:87.101191px;}
.x7b{left:91.175059px;}
.x54{left:93.465000px;}
.x1d{left:94.979327px;}
.x80{left:97.637297px;}
.x7f{left:99.032755px;}
.x89{left:104.669904px;}
.x43{left:109.814908px;}
.x50{left:115.890414px;}
.x97{left:117.036000px;}
.x3b{left:123.156000px;}
.x5b{left:125.865000px;}
.xb{left:127.655987px;}
.xe{left:129.000000px;}
.x2c{left:130.534526px;}
.x82{left:134.316000px;}
.x33{left:137.129641px;}
.x5{left:141.155987px;}
.x57{left:144.945000px;}
.x1{left:149.435987px;}
.x78{left:159.240000px;}
.x7c{left:162.109946px;}
.x88{left:163.739990px;}
.x2a{left:165.468874px;}
.x61{left:168.329987px;}
.x62{left:169.769987px;}
.x85{left:174.269987px;}
.x9{left:178.409987px;}
.x59{left:179.865000px;}
.xf{left:181.649987px;}
.x46{left:184.005000px;}
.x1b{left:186.689987px;}
.x74{left:187.714588px;}
.x6f{left:190.788289px;}
.x49{left:193.545000px;}
.x60{left:195.000000px;}
.x6d{left:196.669059px;}
.x6e{left:197.761428px;}
.x4{left:199.289987px;}
.x10{left:202.500000px;}
.x70{left:205.033815px;}
.x5d{left:207.000000px;}
.x6c{left:208.739980px;}
.x66{left:211.530000px;}
.x19{left:213.000000px;}
.x96{left:214.500000px;}
.x69{left:216.000000px;}
.x2{left:219.449987px;}
.x39{left:220.500000px;}
.x17{left:222.000000px;}
.x68{left:229.899000px;}
.xc{left:232.500000px;}
.x14{left:243.929987px;}
.x3a{left:257.069987px;}
.x45{left:265.575000px;}
.x16{left:273.269987px;}
.x12{left:275.249987px;}
.x23{left:280.514980px;}
.x4b{left:283.251317px;}
.x4c{left:286.139980px;}
.x4a{left:291.315000px;}
.x4d{left:294.382304px;}
.x83{left:312.339000px;}
.x56{left:314.895000px;}
.x4f{left:315.989980px;}
.x51{left:327.855000px;}
.x53{left:329.339980px;}
.x31{left:334.739980px;}
.x1c{left:338.639980px;}
.x5f{left:342.074987px;}
.x5e{left:345.314987px;}
.x52{left:348.915000px;}
.x25{left:352.514987px;}
.x26{left:356.639959px;}
.x4e{left:357.915000px;}
.x5a{left:363.164959px;}
.x6a{left:374.489959px;}
.x42{left:378.240000px;}
.x27{left:383.654987px;}
.x6{left:387.614987px;}
.x5c{left:420.764959px;}
.x58{left:423.989959px;}
.x3{left:446.474987px;}
.x72{left:496.724987px;}
.x75{left:498.164987px;}
.x22{left:517.244987px;}
.x6b{left:518.504987px;}
.x92{left:520.664987px;}
.xa{left:541.004987px;}
.x55{left:546.014959px;}
.x30{left:553.784987px;}
.x36{left:558.284987px;}
.x8{left:572.504987px;}
.x7{left:586.004987px;}
.x91{left:592.134000px;}
.x77{left:595.904987px;}
.x95{left:599.154000px;}
.x65{left:610.304987px;}
.x84{left:620.214000px;}
.x2b{left:624.704987px;}
.x3e{left:644.505000px;}
.x98{left:663.990000px;}
.x99{left:665.070000px;}
.x9a{left:666.150000px;}
.x8d{left:672.269987px;}
.x94{left:679.829987px;}
.x8f{left:685.769987px;}
.x93{left:703.769987px;}
.x63{left:719.069987px;}
.x90{left:722.669987px;}
.x64{left:726.449987px;}
.x37{left:734.730000px;}
.x11{left:737.429987px;}
.x1a{left:747.000000px;}
.x87{left:753.269987px;}
.x76{left:754.500000px;}
.x13{left:757.589987px;}
.x18{left:760.500000px;}
.xd{left:762.000000px;}
.x15{left:765.509987px;}
@media print{
.vd{vertical-align:-73.600000pt;}
.v9{vertical-align:-68.480000pt;}
.v10{vertical-align:-67.200000pt;}
.v8{vertical-align:-50.560000pt;}
.vf{vertical-align:-47.272206pt;}
.v6{vertical-align:-37.120000pt;}
.vc{vertical-align:-32.861646pt;}
.ve{vertical-align:-25.281846pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-12.160000pt;}
.va{vertical-align:-10.900202pt;}
.v4{vertical-align:-5.120000pt;}
.vb{vertical-align:-2.846467pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.v7{vertical-align:42.880000pt;}
.ls59{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.504533pt;}
.ls10{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.271467pt;}
.ls3a{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls4e{letter-spacing:-0.150790pt;}
.ls31{letter-spacing:-0.122667pt;}
.ls34{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls5d{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls33{letter-spacing:0.048640pt;}
.ls29{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.133333pt;}
.ls45{letter-spacing:0.135467pt;}
.ls17{letter-spacing:0.135680pt;}
.ls4{letter-spacing:0.138667pt;}
.ls15{letter-spacing:0.145067pt;}
.ls6{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.166400pt;}
.lsd{letter-spacing:0.176640pt;}
.ls32{letter-spacing:0.214933pt;}
.ls5b{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.253440pt;}
.ls5a{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.277760pt;}
.ls1{letter-spacing:0.286720pt;}
.ls8{letter-spacing:0.290347pt;}
.ls3{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls5c{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.517120pt;}
.ls2a{letter-spacing:0.870867pt;}
.ls7{letter-spacing:1.280000pt;}
.ls21{letter-spacing:4.480000pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls18{letter-spacing:7.680000pt;}
.lsb{letter-spacing:8.320000pt;}
.ls3b{letter-spacing:9.728000pt;}
.ls35{letter-spacing:11.520000pt;}
.ls23{letter-spacing:16.640000pt;}
.ls30{letter-spacing:17.920000pt;}
.lsa{letter-spacing:32.271360pt;}
.ls4b{letter-spacing:52.091166pt;}
.ls3e{letter-spacing:52.902783pt;}
.ls1d{letter-spacing:54.014501pt;}
.ls19{letter-spacing:54.429200pt;}
.ls47{letter-spacing:56.800158pt;}
.ls3d{letter-spacing:56.850548pt;}
.ls40{letter-spacing:56.916355pt;}
.ls1e{letter-spacing:58.378621pt;}
.ls1f{letter-spacing:58.606247pt;}
.ls1a{letter-spacing:58.639157pt;}
.ls54{letter-spacing:61.022240pt;}
.ls4c{letter-spacing:61.054221pt;}
.ls4d{letter-spacing:62.952279pt;}
.ls20{letter-spacing:63.790876pt;}
.ls36{letter-spacing:67.200000pt;}
.ls2b{letter-spacing:71.310142pt;}
.ls4a{letter-spacing:73.238619pt;}
.ls41{letter-spacing:73.303592pt;}
.ls44{letter-spacing:73.353304pt;}
.ls2d{letter-spacing:75.520000pt;}
.ls42{letter-spacing:113.436211pt;}
.ls43{letter-spacing:133.240019pt;}
.ls50{letter-spacing:148.295279pt;}
.ls53{letter-spacing:148.496941pt;}
.ls55{letter-spacing:162.269667pt;}
.ls25{letter-spacing:189.340430pt;}
.ls51{letter-spacing:197.762108pt;}
.ls26{letter-spacing:207.078639pt;}
.ls28{letter-spacing:208.673084pt;}
.ls56{letter-spacing:216.298667pt;}
.ls27{letter-spacing:220.731080pt;}
.ls48{letter-spacing:260.086974pt;}
.ls49{letter-spacing:292.796851pt;}
.ls46{letter-spacing:445.547280pt;}
.ls3c{letter-spacing:445.942543pt;}
.ls3f{letter-spacing:446.497125pt;}
.ls38{letter-spacing:483.178667pt;}
.ls39{letter-spacing:484.458667pt;}
.ls52{letter-spacing:499.811785pt;}
.ls2c{letter-spacing:673.690027pt;}
.ls58{letter-spacing:678.067673pt;}
.ls2f{letter-spacing:700.570027pt;}
.ls4f{letter-spacing:1117.578667pt;}
.ls57{letter-spacing:1118.858667pt;}
.ls12{letter-spacing:1163.338667pt;}
.ws31{word-spacing:-87.346105pt;}
.ws37{word-spacing:-64.000000pt;}
.ws33{word-spacing:-59.094933pt;}
.ws34{word-spacing:-58.928640pt;}
.ws8{word-spacing:-58.880000pt;}
.ws32{word-spacing:-58.757333pt;}
.ws12{word-spacing:-37.120000pt;}
.ws0{word-spacing:-26.720000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws9{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.280000pt;}
.ws14{word-spacing:-16.125915pt;}
.ws7{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws36{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.952960pt;}
.ws41{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws35{word-spacing:-14.625067pt;}
.wsb{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.313067pt;}
.wsc{word-spacing:-14.215467pt;}
.ws79{word-spacing:-14.176000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws7a{word-spacing:-13.600000pt;}
.ws7b{word-spacing:-13.280000pt;}
.ws7c{word-spacing:-13.232640pt;}
.ws13{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
.ws65{word-spacing:3.016273pt;}
.ws51{word-spacing:3.072324pt;}
.ws5a{word-spacing:3.262635pt;}
.ws66{word-spacing:3.337153pt;}
.ws52{word-spacing:3.456365pt;}
.ws67{word-spacing:3.465505pt;}
.ws53{word-spacing:3.584378pt;}
.ws78{word-spacing:4.753099pt;}
.ws55{word-spacing:8.492204pt;}
.ws50{word-spacing:9.344986pt;}
.ws74{word-spacing:11.710994pt;}
.ws2e{word-spacing:14.159834pt;}
.ws59{word-spacing:14.290339pt;}
.ws24{word-spacing:14.420845pt;}
.ws29{word-spacing:14.551350pt;}
.ws21{word-spacing:14.839506pt;}
.ws73{word-spacing:16.369511pt;}
.ws54{word-spacing:16.414035pt;}
.ws77{word-spacing:16.540785pt;}
.ws1b{word-spacing:17.709862pt;}
.ws11{word-spacing:17.961066pt;}
.ws63{word-spacing:18.482694pt;}
.ws30{word-spacing:19.249544pt;}
.ws61{word-spacing:19.381158pt;}
.ws44{word-spacing:19.904187pt;}
.ws3a{word-spacing:19.921845pt;}
.ws1f{word-spacing:20.986089pt;}
.ws18{word-spacing:23.927154pt;}
.ws2f{word-spacing:24.012990pt;}
.ws25{word-spacing:24.274001pt;}
.ws2a{word-spacing:24.469759pt;}
.ws22{word-spacing:24.776092pt;}
.ws3f{word-spacing:25.347448pt;}
.ws4e{word-spacing:26.562804pt;}
.ws16{word-spacing:28.511622pt;}
.ws19{word-spacing:30.709654pt;}
.ws5f{word-spacing:30.804490pt;}
.wsf{word-spacing:30.960858pt;}
.ws43{word-spacing:31.414277pt;}
.ws39{word-spacing:31.442146pt;}
.ws62{word-spacing:33.307355pt;}
.ws4f{word-spacing:33.539540pt;}
.ws1d{word-spacing:34.542320pt;}
.ws15{word-spacing:42.757228pt;}
.ws5d{word-spacing:42.802271pt;}
.ws6a{word-spacing:42.822820pt;}
.ws4b{word-spacing:44.740723pt;}
.ws6f{word-spacing:44.868736pt;}
.ws3e{word-spacing:45.204013pt;}
.ws5c{word-spacing:47.693959pt;}
.ws47{word-spacing:47.741158pt;}
.ws69{word-spacing:47.852098pt;}
.ws3d{word-spacing:48.169023pt;}
.ws42{word-spacing:48.222895pt;}
.ws38{word-spacing:48.265676pt;}
.ws17{word-spacing:50.101582pt;}
.ws48{word-spacing:50.773516pt;}
.ws6c{word-spacing:51.734996pt;}
.ws70{word-spacing:51.973486pt;}
.ws5e{word-spacing:53.660336pt;}
.ws6e{word-spacing:53.805875pt;}
.ws4d{word-spacing:55.248094pt;}
.ws6d{word-spacing:56.357494pt;}
.ws1c{word-spacing:57.366291pt;}
.ws49{word-spacing:59.574752pt;}
.ws6b{word-spacing:59.685692pt;}
.ws3c{word-spacing:59.980585pt;}
.ws45{word-spacing:60.094112pt;}
.ws3b{word-spacing:60.147424pt;}
.ws40{word-spacing:60.208170pt;}
.ws4a{word-spacing:61.645631pt;}
.ws1a{word-spacing:65.153872pt;}
.ws10{word-spacing:65.517453pt;}
.ws46{word-spacing:66.157189pt;}
.ws68{word-spacing:66.305109pt;}
.ws60{word-spacing:83.236299pt;}
.ws4c{word-spacing:83.400804pt;}
.ws71{word-spacing:105.483135pt;}
.ws2b{word-spacing:152.038771pt;}
.ws5b{word-spacing:154.257362pt;}
.ws26{word-spacing:160.456368pt;}
.ws28{word-spacing:160.847884pt;}
.ws2d{word-spacing:176.936180pt;}
.ws2c{word-spacing:185.356319pt;}
.ws58{word-spacing:197.590062pt;}
.ws23{word-spacing:203.555900pt;}
.ws27{word-spacing:203.706934pt;}
.ws57{word-spacing:206.010201pt;}
.ws76{word-spacing:237.325561pt;}
.ws56{word-spacing:245.450034pt;}
.ws1e{word-spacing:257.790477pt;}
.ws64{word-spacing:264.020151pt;}
.ws72{word-spacing:264.411911pt;}
.ws75{word-spacing:517.289493pt;}
._92{margin-left:-1947.662397pt;}
._96{margin-left:-1911.241932pt;}
._8b{margin-left:-1892.210909pt;}
._8c{margin-left:-1873.616585pt;}
._bf{margin-left:-1280.060509pt;}
._be{margin-left:-1278.819554pt;}
._4f{margin-left:-1039.820254pt;}
._4c{margin-left:-1038.071791pt;}
._46{margin-left:-1003.148242pt;}
._42{margin-left:-1000.273423pt;}
._5b{margin-left:-953.898051pt;}
._52{margin-left:-841.890644pt;}
._55{margin-left:-824.831853pt;}
._3c{margin-left:-427.771973pt;}
._3a{margin-left:-426.191935pt;}
._5f{margin-left:-161.803046pt;}
._21{margin-left:-14.080000pt;}
._1b{margin-left:-12.160000pt;}
._6a{margin-left:-5.318661pt;}
._4d{margin-left:-4.154367pt;}
._22{margin-left:-3.117916pt;}
._11{margin-left:-2.106880pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.077547pt;}
._3{width:2.109867pt;}
._2{width:3.374293pt;}
._5{width:4.472320pt;}
._6{width:5.480107pt;}
._4{width:7.171200pt;}
._7{width:8.286080pt;}
._8{width:9.715200pt;}
._b{width:11.422720pt;}
._c{width:12.441813pt;}
._d{width:13.795840pt;}
._c0{width:15.038208pt;}
._9{width:15.956480pt;}
._a{width:17.016320pt;}
._10{width:18.800640pt;}
._1a{width:19.988693pt;}
._12{width:20.913493pt;}
._13{width:21.905920pt;}
._f{width:22.821547pt;}
._e{width:24.199680pt;}
._15{width:25.141760pt;}
._14{width:26.260480pt;}
._17{width:27.878613pt;}
._16{width:28.851200pt;}
._70{width:30.617600pt;}
._b5{width:31.509691pt;}
._64{width:33.694966pt;}
._41{width:35.253514pt;}
._54{width:37.047128pt;}
._93{width:38.303330pt;}
._9e{width:40.035311pt;}
._40{width:41.404060pt;}
._9d{width:42.985720pt;}
._19{width:44.336640pt;}
._18{width:45.619200pt;}
._2b{width:47.477503pt;}
._29{width:48.482317pt;}
._44{width:49.643085pt;}
._25{width:51.119956pt;}
._28{width:52.142757pt;}
._86{width:53.796789pt;}
._24{width:55.327619pt;}
._b2{width:56.579600pt;}
._33{width:57.548808pt;}
._59{width:58.450651pt;}
._1d{width:59.472480pt;}
._2e{width:60.933858pt;}
._1e{width:61.875872pt;}
._af{width:63.013761pt;}
._23{width:64.245351pt;}
._79{width:65.653525pt;}
._a6{width:66.748869pt;}
._73{width:67.986718pt;}
._27{width:69.007839pt;}
._26{width:71.467458pt;}
._3e{width:72.560993pt;}
._38{width:73.609181pt;}
._43{width:75.371071pt;}
._76{width:76.326684pt;}
._2c{width:77.892096pt;}
._3b{width:79.695425pt;}
._9f{width:80.669259pt;}
._34{width:84.203012pt;}
._5e{width:85.788160pt;}
._c1{width:89.329707pt;}
._81{width:92.361750pt;}
._94{width:94.234481pt;}
._45{width:98.401059pt;}
._53{width:99.292518pt;}
._6e{width:100.737687pt;}
._37{width:102.193127pt;}
._4e{width:103.283008pt;}
._20{width:107.138385pt;}
._2a{width:108.143200pt;}
._7e{width:110.321867pt;}
._7d{width:113.227952pt;}
._68{width:115.010526pt;}
._3f{width:116.019285pt;}
._a7{width:120.924543pt;}
._4a{width:124.632641pt;}
._7a{width:126.101741pt;}
._71{width:127.913760pt;}
._32{width:131.720236pt;}
._39{width:133.359441pt;}
._51{width:135.268829pt;}
._7b{width:136.973856pt;}
._ab{width:142.461742pt;}
._7c{width:143.556293pt;}
._87{width:144.937833pt;}
._a5{width:145.892340pt;}
._99{width:147.104454pt;}
._6b{width:148.937861pt;}
._91{width:150.512378pt;}
._50{width:152.909270pt;}
._b7{width:157.000465pt;}
._95{width:158.346099pt;}
._a1{width:159.620335pt;}
._a3{width:160.567085pt;}
._4b{width:162.544454pt;}
._ad{width:165.009317pt;}
._a9{width:166.446902pt;}
._5a{width:167.467874pt;}
._5d{width:168.791007pt;}
._b8{width:171.047967pt;}
._82{width:178.194810pt;}
._35{width:179.554888pt;}
._83{width:183.763972pt;}
._2d{width:185.074339pt;}
._1c{width:186.016353pt;}
._9b{width:190.627602pt;}
._74{width:191.977939pt;}
._9a{width:194.017186pt;}
._47{width:200.521521pt;}
._77{width:202.206545pt;}
._5c{width:203.523144pt;}
._56{width:205.350220pt;}
._58{width:206.916404pt;}
._65{width:211.369106pt;}
._97{width:218.727021pt;}
._bc{width:220.384889pt;}
._a2{width:224.024735pt;}
._8f{width:225.455812pt;}
._72{width:227.870653pt;}
._98{width:231.973318pt;}
._6d{width:233.536714pt;}
._b1{width:247.584846pt;}
._a4{width:249.503943pt;}
._48{width:265.258786pt;}
._2f{width:266.614587pt;}
._1f{width:268.323422pt;}
._90{width:271.445625pt;}
._66{width:274.564227pt;}
._88{width:280.912785pt;}
._75{width:282.551795pt;}
._6c{width:290.224696pt;}
._57{width:295.460011pt;}
._84{width:299.423607pt;}
._b4{width:306.170885pt;}
._b0{width:320.740213pt;}
._85{width:333.987256pt;}
._aa{width:337.960062pt;}
._a8{width:350.940036pt;}
._30{width:352.124811pt;}
._36{width:363.020228pt;}
._a0{width:375.108843pt;}
._b6{width:385.725078pt;}
._ac{width:388.738776pt;}
._9c{width:389.632882pt;}
._8d{width:396.535209pt;}
._31{width:399.454706pt;}
._ae{width:405.994857pt;}
._b3{width:437.059478pt;}
._ba{width:459.122732pt;}
._89{width:477.971639pt;}
._bb{width:502.278716pt;}
._8e{width:514.285315pt;}
._bd{width:517.454048pt;}
._8a{width:519.925659pt;}
._3d{width:534.735422pt;}
._78{width:544.567225pt;}
._69{width:559.275573pt;}
._49{width:571.549928pt;}
._6f{width:573.259998pt;}
._67{width:586.644243pt;}
._b9{width:597.778315pt;}
._60{width:618.541013pt;}
._7f{width:760.144240pt;}
._61{width:768.692480pt;}
._62{width:910.315093pt;}
._80{width:1040.062012pt;}
._63{width:1174.635093pt;}
.fs10{font-size:5.120000pt;}
.fse{font-size:10.880000pt;}
.fs1b{font-size:16.000000pt;}
.fsf{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs17{font-size:27.382758pt;}
.fsc{font-size:32.000000pt;}
.fs12{font-size:36.358187pt;}
.fs2a{font-size:36.727262pt;}
.fs26{font-size:36.759844pt;}
.fs1f{font-size:36.844083pt;}
.fs28{font-size:36.911129pt;}
.fs2c{font-size:36.979983pt;}
.fs2f{font-size:37.058243pt;}
.fs23{font-size:37.077746pt;}
.fs5{font-size:37.120000pt;}
.fs18{font-size:37.666639pt;}
.fs1c{font-size:37.758468pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs11{font-size:62.064349pt;}
.fs13{font-size:62.800929pt;}
.fs21{font-size:62.930523pt;}
.fs2e{font-size:63.374654pt;}
.fs2b{font-size:63.591653pt;}
.fs27{font-size:63.648068pt;}
.fs20{font-size:63.694271pt;}
.fs29{font-size:63.847476pt;}
.fs8{font-size:64.000000pt;}
.fs2d{font-size:64.006757pt;}
.fs24{font-size:64.143851pt;}
.fs30{font-size:64.176021pt;}
.fs22{font-size:64.270613pt;}
.fs15{font-size:64.503658pt;}
.fs32{font-size:64.701625pt;}
.fs25{font-size:65.061442pt;}
.fs19{font-size:65.174188pt;}
.fs1e{font-size:65.252691pt;}
.fs1d{font-size:65.372275pt;}
.fs14{font-size:66.331782pt;}
.fs16{font-size:66.346810pt;}
.fs1a{font-size:69.035428pt;}
.fs3{font-size:69.120000pt;}
.fsd{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs31{font-size:96.000000pt;}
.fs0{font-size:106.880000pt;}
.y3a6{bottom:-8.960000pt;}
.y399{bottom:-6.880000pt;}
.y2ec{bottom:-4.000000pt;}
.y2ab{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y165{bottom:2.368218pt;}
.y168{bottom:2.623372pt;}
.y15f{bottom:2.623373pt;}
.yf9{bottom:2.660900pt;}
.y10f{bottom:3.200000pt;}
.y116{bottom:3.356682pt;}
.y1d9{bottom:3.356714pt;}
.y224{bottom:3.356732pt;}
.y13d{bottom:3.360000pt;}
.y140{bottom:3.387206pt;}
.y267{bottom:3.387211pt;}
.y13a{bottom:3.387231pt;}
.y12b{bottom:3.387232pt;}
.y265{bottom:3.387263pt;}
.y2c0{bottom:3.387267pt;}
.yfc{bottom:3.520000pt;}
.y151{bottom:3.815542pt;}
.ye5{bottom:3.829377pt;}
.y14b{bottom:4.085770pt;}
.y2d6{bottom:4.224075pt;}
.y14d{bottom:4.254042pt;}
.y1d4{bottom:4.254059pt;}
.ye7{bottom:4.285781pt;}
.yd4{bottom:4.285815pt;}
.yd6{bottom:4.285848pt;}
.y2c9{bottom:4.449814pt;}
.y291{bottom:4.682046pt;}
.yf7{bottom:4.888696pt;}
.y3ae{bottom:4.960000pt;}
.y248{bottom:5.110056pt;}
.y277{bottom:5.250135pt;}
.y236{bottom:5.254806pt;}
.y113{bottom:5.280000pt;}
.y270{bottom:5.347372pt;}
.y22c{bottom:5.352127pt;}
.y397{bottom:6.240000pt;}
.y2e4{bottom:6.318610pt;}
.y316{bottom:6.746915pt;}
.y310{bottom:6.746932pt;}
.y29b{bottom:6.746950pt;}
.y288{bottom:6.780845pt;}
.y282{bottom:6.780849pt;}
.yf5{bottom:6.837985pt;}
.y23f{bottom:7.179948pt;}
.y20b{bottom:7.520000pt;}
.y117{bottom:7.567638pt;}
.y1da{bottom:7.567699pt;}
.y12c{bottom:7.598190pt;}
.y141{bottom:7.598191pt;}
.y266{bottom:7.598224pt;}
.y268{bottom:7.598226pt;}
.y14e{bottom:8.285842pt;}
.y1d5{bottom:8.285869pt;}
.ye8{bottom:8.317559pt;}
.yd7{bottom:8.317596pt;}
.yd5{bottom:8.317623pt;}
.yd8{bottom:8.317631pt;}
.y3ac{bottom:8.480000pt;}
.y2cc{bottom:8.577103pt;}
.y2cf{bottom:8.577105pt;}
.y2da{bottom:8.577109pt;}
.yf8{bottom:9.096725pt;}
.y273{bottom:9.463207pt;}
.y230{bottom:9.471615pt;}
.y20e{bottom:9.760000pt;}
.y15e{bottom:9.814595pt;}
.y167{bottom:9.814598pt;}
.y16c{bottom:10.080000pt;}
.y28b{bottom:10.913867pt;}
.y2de{bottom:10.913869pt;}
.y295{bottom:10.913873pt;}
.y14a{bottom:11.227989pt;}
.y243{bottom:11.287390pt;}
.y13c{bottom:11.680000pt;}
.y119{bottom:13.600000pt;}
.y115{bottom:14.891874pt;}
.y1d8{bottom:14.891889pt;}
.y223{bottom:14.891891pt;}
.y2d5{bottom:14.897571pt;}
.y12a{bottom:14.921774pt;}
.y139{bottom:14.921790pt;}
.y13f{bottom:14.921793pt;}
.y2bf{bottom:14.921797pt;}
.y264{bottom:14.921815pt;}
.y276{bottom:15.686241pt;}
.y235{bottom:15.700170pt;}
.yf6{bottom:16.398381pt;}
.y281{bottom:18.081680pt;}
.y23e{bottom:18.434715pt;}
.y290{bottom:19.277194pt;}
.y31f{bottom:19.360000pt;}
.y247{bottom:19.502803pt;}
.y10e{bottom:20.000000pt;}
.y137{bottom:20.160000pt;}
.y14f{bottom:21.000000pt;}
.y396{bottom:21.626667pt;}
.y112{bottom:22.080000pt;}
.y13b{bottom:22.560000pt;}
.y3ab{bottom:23.840000pt;}
.y3a4{bottom:26.560000pt;}
.y20d{bottom:26.720000pt;}
.y16b{bottom:27.040000pt;}
.y2c8{bottom:28.859237pt;}
.y26f{bottom:29.556069pt;}
.y22b{bottom:29.582324pt;}
.y2d4{bottom:30.245270pt;}
.y2e3{bottom:30.587623pt;}
.y2cb{bottom:32.985739pt;}
.y2d9{bottom:32.985742pt;}
.y287{bottom:33.225284pt;}
.y280{bottom:33.225288pt;}
.y23d{bottom:33.409059pt;}
.y271{bottom:33.640022pt;}
.y237{bottom:33.669895pt;}
.y234{bottom:33.669896pt;}
.y22d{bottom:33.669899pt;}
.y22f{bottom:33.669901pt;}
.y28f{bottom:34.614563pt;}
.y118{bottom:35.200000pt;}
.y136{bottom:36.960000pt;}
.y395{bottom:36.986667pt;}
.y16a{bottom:37.120000pt;}
.y284{bottom:37.358834pt;}
.y2dd{bottom:37.358836pt;}
.y294{bottom:37.358839pt;}
.y249{bottom:37.516362pt;}
.y246{bottom:37.516363pt;}
.y240{bottom:37.516367pt;}
.y242{bottom:37.516369pt;}
.y111{bottom:38.880000pt;}
.y3aa{bottom:39.200000pt;}
.y131{bottom:41.786667pt;}
.y3a3{bottom:41.920000pt;}
.y2d3{bottom:42.272021pt;}
.y275{bottom:42.810724pt;}
.y233{bottom:42.848717pt;}
.y148{bottom:43.560000pt;}
.y15c{bottom:43.840000pt;}
.y27f{bottom:44.526646pt;}
.y23c{bottom:44.664222pt;}
.y28e{bottom:49.176891pt;}
.y245{bottom:49.192672pt;}
.y394{bottom:52.346667pt;}
.y2c7{bottom:53.397128pt;}
.y26e{bottom:53.733016pt;}
.y22a{bottom:53.780696pt;}
.y169{bottom:53.920000pt;}
.y135{bottom:53.946667pt;}
.y3a9{bottom:54.560000pt;}
.y3b0{bottom:54.666667pt;}
.y2d2{bottom:56.266595pt;}
.y274{bottom:56.585300pt;}
.y232{bottom:56.635512pt;}
.y3a2{bottom:57.280000pt;}
.y2ce{bottom:57.524942pt;}
.y2d1{bottom:57.524943pt;}
.y2d8{bottom:57.524948pt;}
.y272{bottom:57.848719pt;}
.y231{bottom:57.900049pt;}
.y22e{bottom:57.900051pt;}
.yc0{bottom:58.666667pt;}
.y23b{bottom:59.638518pt;}
.y286{bottom:59.703204pt;}
.y27e{bottom:59.703207pt;}
.y15b{bottom:60.640000pt;}
.y12f{bottom:62.266667pt;}
.y241{bottom:63.745829pt;}
.y28a{bottom:63.803800pt;}
.y293{bottom:63.803805pt;}
.y147{bottom:64.200000pt;}
.y244{bottom:64.457447pt;}
.y28d{bottom:64.514260pt;}
.y393{bottom:67.546667pt;}
.y3a8{bottom:69.920000pt;}
.y163{bottom:70.720000pt;}
.y134{bottom:70.746667pt;}
.y23a{bottom:70.893682pt;}
.y27d{bottom:70.971612pt;}
.y3a1{bottom:72.640000pt;}
.y15a{bottom:77.600000pt;}
.y2c6{bottom:79.192056pt;}
.y12e{bottom:79.226667pt;}
.y146{bottom:81.000000pt;}
.y392{bottom:82.906667pt;}
.y2d7{bottom:83.319864pt;}
.y2d0{bottom:83.319873pt;}
.y2ca{bottom:83.319875pt;}
.y2cd{bottom:83.319876pt;}
.y1fa{bottom:85.333333pt;}
.y285{bottom:87.406946pt;}
.y27c{bottom:87.406956pt;}
.y133{bottom:87.706667pt;}
.y3a0{bottom:88.000000pt;}
.y6c{bottom:90.666667pt;}
.y162{bottom:91.360000pt;}
.y292{bottom:91.507541pt;}
.y28c{bottom:91.507551pt;}
.y283{bottom:91.507553pt;}
.y289{bottom:91.507554pt;}
.yfe{bottom:92.000000pt;}
.y159{bottom:94.400000pt;}
.y16e{bottom:96.000000pt;}
.y1a1{bottom:97.333333pt;}
.y155{bottom:97.960000pt;}
.y27b{bottom:98.676679pt;}
.y12d{bottom:100.826667pt;}
.y145{bottom:102.600000pt;}
.y39f{bottom:103.360000pt;}
.y1cc{bottom:104.000000pt;}
.y132{bottom:104.506667pt;}
.y2ee{bottom:106.666667pt;}
.y34d{bottom:108.000000pt;}
.y161{bottom:108.160000pt;}
.y158{bottom:111.360000pt;}
.y34{bottom:112.000000pt;}
.y33{bottom:113.333333pt;}
.y154{bottom:114.760000pt;}
.y92{bottom:118.592000pt;}
.y39e{bottom:118.720000pt;}
.y31d{bottom:120.832000pt;}
.y128{bottom:121.306667pt;}
.y143{bottom:123.240000pt;}
.y16d{bottom:124.032000pt;}
.y160{bottom:124.480000pt;}
.y1f8{bottom:125.152000pt;}
.y37c{bottom:125.312000pt;}
.y2a8{bottom:126.272000pt;}
.y2aa{bottom:127.840000pt;}
.y210{bottom:128.000000pt;}
.y2ea{bottom:128.032000pt;}
.y157{bottom:128.160000pt;}
.y19f{bottom:129.472000pt;}
.y259{bottom:130.666667pt;}
.y153{bottom:131.720000pt;}
.y31{bottom:132.832000pt;}
.y39d{bottom:133.920000pt;}
.yf4{bottom:134.013333pt;}
.y31b{bottom:134.480000pt;}
.y91{bottom:135.546667pt;}
.y126{bottom:136.520000pt;}
.y6a{bottom:137.626667pt;}
.ybf{bottom:137.786667pt;}
.y34c{bottom:138.106667pt;}
.y156{bottom:138.266667pt;}
.y37b{bottom:140.666667pt;}
.y258{bottom:141.146667pt;}
.y209{bottom:141.466667pt;}
.yfa{bottom:143.226667pt;}
.y1f7{bottom:143.866667pt;}
.y2a7{bottom:144.666667pt;}
.y142{bottom:144.840000pt;}
.y2e9{bottom:145.146667pt;}
.y19e{bottom:146.266667pt;}
.y152{bottom:148.520000pt;}
.y39c{bottom:149.280000pt;}
.y30{bottom:149.626667pt;}
.y90{bottom:152.346667pt;}
.y31c{bottom:153.146667pt;}
.y125{bottom:153.480000pt;}
.y69{bottom:154.426667pt;}
.ybe{bottom:154.746667pt;}
.y34b{bottom:154.906667pt;}
.y2ac{bottom:156.000000pt;}
.y37a{bottom:156.026667pt;}
.y257{bottom:157.946667pt;}
.y1f6{bottom:159.866667pt;}
.y20c{bottom:160.026667pt;}
.y1ca{bottom:160.346667pt;}
.y2a6{bottom:163.066667pt;}
.y19d{bottom:163.226667pt;}
.y2e8{bottom:163.546667pt;}
.yf3{bottom:164.186667pt;}
.y39b{bottom:164.640000pt;}
.y2f{bottom:166.426667pt;}
.y1f5{bottom:166.906667pt;}
.y208{bottom:167.866667pt;}
.y8f{bottom:169.146667pt;}
.y124{bottom:170.280000pt;}
.y379{bottom:171.386667pt;}
.ybd{bottom:171.546667pt;}
.y68{bottom:171.706667pt;}
.y256{bottom:174.906667pt;}
.y1c9{bottom:177.466667pt;}
.y2eb{bottom:178.240000pt;}
.y19c{bottom:180.026667pt;}
.y2a5{bottom:181.466667pt;}
.y2e7{bottom:181.626667pt;}
.yf2{bottom:182.586667pt;}
.y31a{bottom:183.066667pt;}
.y2e{bottom:183.386667pt;}
.y1f4{bottom:183.866667pt;}
.yfb{bottom:184.346667pt;}
.y378{bottom:186.746667pt;}
.y123{bottom:187.240000pt;}
.ybc{bottom:188.506667pt;}
.y34a{bottom:188.666667pt;}
.y67{bottom:188.826667pt;}
.y255{bottom:191.706667pt;}
.y8e{bottom:193.946667pt;}
.y1c8{bottom:194.266667pt;}
.y19b{bottom:196.986667pt;}
.yf0{bottom:197.546667pt;}
.y2e6{bottom:198.586667pt;}
.y2a4{bottom:199.546667pt;}
.y31e{bottom:199.880000pt;}
.y319{bottom:200.026667pt;}
.y2d{bottom:200.186667pt;}
.y1f3{bottom:200.666667pt;}
.y377{bottom:202.106667pt;}
.ybb{bottom:205.306667pt;}
.yf1{bottom:205.466667pt;}
.y66{bottom:205.946667pt;}
.y166{bottom:206.346649pt;}
.y164{bottom:206.346667pt;}
.y122{bottom:207.400000pt;}
.y254{bottom:208.666667pt;}
.y1c7{bottom:211.226667pt;}
.y2e2{bottom:212.080000pt;}
.y19a{bottom:213.786667pt;}
.y2c{bottom:215.866667pt;}
.y2a3{bottom:216.506667pt;}
.y318{bottom:216.826667pt;}
.y207{bottom:217.146667pt;}
.y376{bottom:217.306667pt;}
.y1f2{bottom:217.466667pt;}
.y8d{bottom:218.746667pt;}
.yba{bottom:222.266667pt;}
.y349{bottom:222.426667pt;}
.y65{bottom:222.906667pt;}
.y253{bottom:225.466667pt;}
.y2b{bottom:227.866667pt;}
.y1c6{bottom:228.026667pt;}
.y315{bottom:230.346667pt;}
.y199{bottom:230.586667pt;}
.y2e5{bottom:230.746667pt;}
.y121{bottom:230.920000pt;}
.yef{bottom:232.506667pt;}
.y375{bottom:232.666667pt;}
.y1f1{bottom:234.426667pt;}
.y317{bottom:236.986667pt;}
.y348{bottom:239.226667pt;}
.y8c{bottom:240.666667pt;}
.y2a2{bottom:241.146667pt;}
.y252{bottom:242.266667pt;}
.y2a{bottom:244.666667pt;}
.y1c5{bottom:244.826667pt;}
.yb9{bottom:246.906667pt;}
.y64{bottom:247.546667pt;}
.y374{bottom:248.026667pt;}
.y120{bottom:251.080000pt;}
.y1f0{bottom:251.226667pt;}
.y314{bottom:255.066667pt;}
.y347{bottom:256.026667pt;}
.y251{bottom:256.666667pt;}
.yee{bottom:257.626667pt;}
.y2a1{bottom:258.266667pt;}
.y15d{bottom:260.079982pt;}
.y29{bottom:261.626667pt;}
.y250{bottom:262.266667pt;}
.y2e1{bottom:262.746667pt;}
.y373{bottom:263.386667pt;}
.yb8{bottom:264.026667pt;}
.y198{bottom:264.346667pt;}
.y63{bottom:264.666667pt;}
.y11f{bottom:268.066667pt;}
.y1ef{bottom:268.186667pt;}
.y1c4{bottom:269.626667pt;}
.y313{bottom:271.866667pt;}
.y346{bottom:272.986667pt;}
.yed{bottom:274.746667pt;}
.y2a0{bottom:275.066667pt;}
.y28{bottom:278.426667pt;}
.y372{bottom:278.746667pt;}
.y24f{bottom:279.066667pt;}
.y11a{bottom:280.666667pt;}
.yb7{bottom:280.826667pt;}
.y197{bottom:281.306667pt;}
.y62{bottom:281.466667pt;}
.y1ee{bottom:283.546667pt;}
.y11e{bottom:284.866667pt;}
.y1c3{bottom:286.586667pt;}
.y2e0{bottom:288.666667pt;}
.y312{bottom:288.826667pt;}
.y345{bottom:289.786667pt;}
.yec{bottom:291.706667pt;}
.y29f{bottom:291.866667pt;}
.y371{bottom:294.106667pt;}
.y1ed{bottom:294.266667pt;}
.y27{bottom:295.226667pt;}
.y24e{bottom:296.026667pt;}
.yb6{bottom:297.626667pt;}
.y150{bottom:297.680000pt;}
.y196{bottom:298.106667pt;}
.y61{bottom:298.426667pt;}
.y11d{bottom:301.826667pt;}
.y30f{bottom:302.346649pt;}
.y1c2{bottom:303.586667pt;}
.y344{bottom:305.986667pt;}
.y2df{bottom:308.226667pt;}
.yeb{bottom:308.546667pt;}
.y311{bottom:309.026667pt;}
.y370{bottom:309.346667pt;}
.y26{bottom:312.226667pt;}
.y24d{bottom:312.866667pt;}
.yb5{bottom:314.626667pt;}
.y195{bottom:315.106667pt;}
.y60{bottom:315.266667pt;}
.y14c{bottom:316.213297pt;}
.y29e{bottom:316.706667pt;}
.y8b{bottom:317.826667pt;}
.y11c{bottom:318.626667pt;}
.y149{bottom:320.213297pt;}
.y1c1{bottom:320.386667pt;}
.y343{bottom:320.546667pt;}
.y39a{bottom:321.506667pt;}
.y36f{bottom:324.706667pt;}
.yea{bottom:325.346667pt;}
.y30e{bottom:326.946667pt;}
.y2dc{bottom:327.946630pt;}
.y1ec{bottom:328.226667pt;}
.y25{bottom:329.026667pt;}
.y24c{bottom:329.826667pt;}
.y8a{bottom:330.306667pt;}
.yb4{bottom:331.426667pt;}
.y194{bottom:331.906667pt;}
.y5f{bottom:332.066667pt;}
.y11b{bottom:335.426667pt;}
.y342{bottom:336.706667pt;}
.y1c0{bottom:337.186667pt;}
.y29d{bottom:338.946667pt;}
.y36e{bottom:340.066667pt;}
.y1eb{bottom:343.106667pt;}
.y30d{bottom:343.906667pt;}
.y24{bottom:345.986667pt;}
.ye9{bottom:347.266667pt;}
.y193{bottom:347.586667pt;}
.yb3{bottom:348.386667pt;}
.y29c{bottom:349.986667pt;}
.y341{bottom:351.266667pt;}
.y89{bottom:352.066667pt;}
.y5e{bottom:353.986667pt;}
.y36d{bottom:355.426667pt;}
.ye6{bottom:356.546667pt;}
.y1bf{bottom:359.106667pt;}
.y192{bottom:359.426667pt;}
.y29a{bottom:360.413297pt;}
.ye4{bottom:360.546667pt;}
.y30c{bottom:360.706667pt;}
.y23{bottom:362.786667pt;}
.ye3{bottom:364.546667pt;}
.yb2{bottom:365.186667pt;}
.y24b{bottom:367.106667pt;}
.y5d{bottom:367.266667pt;}
.y340{bottom:368.066667pt;}
.y36c{bottom:370.786667pt;}
.y1be{bottom:371.906667pt;}
.y144{bottom:375.279964pt;}
.y191{bottom:376.386667pt;}
.y30b{bottom:377.506667pt;}
.y2db{bottom:378.626667pt;}
.y22{bottom:379.586667pt;}
.y24a{bottom:384.066667pt;}
.y33f{bottom:384.866667pt;}
.y36b{bottom:385.986667pt;}
.yb1{bottom:389.826667pt;}
.y299{bottom:390.626667pt;}
.ye2{bottom:391.586667pt;}
.y5c{bottom:393.026667pt;}
.y190{bottom:393.186667pt;}
.y30a{bottom:394.466667pt;}
.y1bd{bottom:395.106667pt;}
.y5b{bottom:395.426667pt;}
.y36a{bottom:401.346667pt;}
.y21{bottom:401.826667pt;}
.y5a{bottom:403.586667pt;}
.y298{bottom:405.666667pt;}
.yb0{bottom:406.946667pt;}
.y1bc{bottom:407.426667pt;}
.y3a5{bottom:408.226667pt;}
.ye1{bottom:408.706667pt;}
.y18f{bottom:408.866667pt;}
.y309{bottom:411.266667pt;}
.y20{bottom:416.386667pt;}
.y369{bottom:416.706667pt;}
.y13e{bottom:417.546630pt;}
.y33e{bottom:418.626667pt;}
.y59{bottom:420.546667pt;}
.y18e{bottom:420.866667pt;}
.yaf{bottom:423.746667pt;}
.y1bb{bottom:424.386667pt;}
.y297{bottom:427.586667pt;}
.y308{bottom:428.226667pt;}
.y206{bottom:428.386667pt;}
.y368{bottom:432.066667pt;}
.y296{bottom:432.386667pt;}
.y88{bottom:433.186667pt;}
.ye0{bottom:433.346667pt;}
.y33d{bottom:435.586667pt;}
.y239{bottom:436.746630pt;}
.y58{bottom:437.346667pt;}
.y18d{bottom:437.666667pt;}
.y205{bottom:439.746667pt;}
.yae{bottom:440.706667pt;}
.y1ba{bottom:441.346667pt;}
.y1f{bottom:443.426667pt;}
.y307{bottom:445.026667pt;}
.y27a{bottom:447.279964pt;}
.y367{bottom:447.426667pt;}
.y20a{bottom:447.586667pt;}
.y87{bottom:450.146667pt;}
.ydf{bottom:450.466667pt;}
.y33c{bottom:452.386667pt;}
.y57{bottom:454.306667pt;}
.y2c5{bottom:454.346630pt;}
.y18c{bottom:454.626667pt;}
.yad{bottom:457.506667pt;}
.y1b9{bottom:458.146667pt;}
.y204{bottom:461.026667pt;}
.y1e{bottom:461.826667pt;}
.y306{bottom:461.986667pt;}
.y366{bottom:462.786667pt;}
.y86{bottom:466.946667pt;}
.y33b{bottom:468.066667pt;}
.y138{bottom:468.746630pt;}
.y56{bottom:471.106667pt;}
.y18b{bottom:471.426667pt;}
.y238{bottom:473.986667pt;}
.yac{bottom:474.306667pt;}
.y1b8{bottom:475.106667pt;}
.yde{bottom:475.426667pt;}
.y365{bottom:477.986667pt;}
.y305{bottom:478.786667pt;}
.y33a{bottom:479.906667pt;}
.y1ea{bottom:481.986667pt;}
.y203{bottom:482.786667pt;}
.y1d{bottom:485.986667pt;}
.y55{bottom:487.906667pt;}
.y18a{bottom:488.226667pt;}
.y85{bottom:491.746667pt;}
.y1b7{bottom:491.906667pt;}
.ydd{bottom:492.546667pt;}
.y364{bottom:493.346667pt;}
.y127{bottom:494.786667pt;}
.y304{bottom:495.586667pt;}
.y339{bottom:496.866667pt;}
.y279{bottom:497.986667pt;}
.y1e9{bottom:498.626667pt;}
.yab{bottom:499.106667pt;}
.y2c4{bottom:499.586667pt;}
.y54{bottom:504.866667pt;}
.y189{bottom:505.186667pt;}
.y1c{bottom:507.426667pt;}
.y84{bottom:508.706667pt;}
.y303{bottom:512.546667pt;}
.y338{bottom:513.666667pt;}
.yaa{bottom:516.066667pt;}
.y229{bottom:519.413297pt;}
.y391{bottom:520.226667pt;}
.y53{bottom:520.706667pt;}
.y363{bottom:524.066667pt;}
.y1b{bottom:525.026667pt;}
.y83{bottom:525.666667pt;}
.ydc{bottom:525.986667pt;}
.y1e8{bottom:526.466667pt;}
.y188{bottom:526.946667pt;}
.y130{bottom:528.546630pt;}
.y398{bottom:529.186667pt;}
.y302{bottom:529.346667pt;}
.y337{bottom:530.626667pt;}
.ya9{bottom:533.026667pt;}
.y52{bottom:533.986667pt;}
.y362{bottom:536.893333pt;}
.y187{bottom:539.773333pt;}
.y361{bottom:540.893333pt;}
.y1e7{bottom:541.373333pt;}
.y82{bottom:542.493333pt;}
.y1a{bottom:542.653333pt;}
.y301{bottom:546.333333pt;}
.y1b6{bottom:547.453333pt;}
.ya8{bottom:549.853333pt;}
.y51{bottom:550.813333pt;}
.ydb{bottom:551.613333pt;}
.y228{bottom:552.733333pt;}
.y2c3{bottom:556.253333pt;}
.y81{bottom:559.293333pt;}
.y278{bottom:559.933333pt;}
.y19{bottom:560.253333pt;}
.y1b5{bottom:560.893333pt;}
.y186{bottom:564.093333pt;}
.y336{bottom:564.253333pt;}
.ya7{bottom:566.653333pt;}
.y50{bottom:567.773333pt;}
.y360{bottom:571.613333pt;}
.y2c2{bottom:573.053333pt;}
.y26d{bottom:573.546667pt;}
.y185{bottom:573.693333pt;}
.y80{bottom:574.173333pt;}
.yda{bottom:577.373333pt;}
.y18{bottom:577.853333pt;}
.y300{bottom:579.933333pt;}
.y335{bottom:580.093333pt;}
.y1b4{bottom:580.413333pt;}
.y7f{bottom:582.333333pt;}
.ya6{bottom:583.613333pt;}
.y4f{bottom:584.573333pt;}
.y35f{bottom:586.973333pt;}
.y129{bottom:587.613297pt;}
.y184{bottom:590.493333pt;}
.y1b3{bottom:591.133333pt;}
.y334{bottom:591.933333pt;}
.y2c1{bottom:592.413333pt;}
.y2ff{bottom:593.853333pt;}
.yd9{bottom:594.653333pt;}
.y17{bottom:595.453333pt;}
.y7e{bottom:599.293333pt;}
.y4e{bottom:600.093333pt;}
.ya5{bottom:600.413333pt;}
.y35e{bottom:602.333333pt;}
.y1b2{bottom:602.973333pt;}
.y227{bottom:605.213333pt;}
.y26c{bottom:606.813333pt;}
.y183{bottom:607.293333pt;}
.y333{bottom:608.733333pt;}
.yd3{bottom:610.013261pt;}
.y4d{bottom:610.653333pt;}
.y16{bottom:613.053333pt;}
.y2fe{bottom:615.453333pt;}
.y7d{bottom:616.093333pt;}
.y2be{bottom:617.346594pt;}
.y35d{bottom:617.533333pt;}
.yd2{bottom:618.013333pt;}
.y1b1{bottom:619.933333pt;}
.y182{bottom:624.253333pt;}
.ya4{bottom:625.213333pt;}
.y2bd{bottom:625.373333pt;}
.y332{bottom:625.693333pt;}
.y4c{bottom:627.453333pt;}
.y226{bottom:630.013333pt;}
.y110{bottom:630.333333pt;}
.y15{bottom:630.653333pt;}
.y7c{bottom:632.893333pt;}
.y2fd{bottom:633.853333pt;}
.yd1{bottom:635.773333pt;}
.y1b0{bottom:636.733333pt;}
.y3ad{bottom:638.333333pt;}
.y3a7{bottom:639.293333pt;}
.y390{bottom:640.413333pt;}
.y181{bottom:641.053333pt;}
.ya3{bottom:642.173333pt;}
.y331{bottom:642.493333pt;}
.y4b{bottom:644.413333pt;}
.y1e6{bottom:644.893333pt;}
.yd0{bottom:645.373333pt;}
.y2bc{bottom:645.853333pt;}
.y14{bottom:648.253333pt;}
.y7b{bottom:649.853333pt;}
.y222{bottom:651.746594pt;}
.y2fc{bottom:652.253333pt;}
.y1af{bottom:653.533333pt;}
.y26b{bottom:656.733333pt;}
.y114{bottom:657.546667pt;}
.y180{bottom:658.013333pt;}
.ya2{bottom:659.133333pt;}
.y330{bottom:659.453333pt;}
.y225{bottom:659.773333pt;}
.y4a{bottom:661.213333pt;}
.ycf{bottom:662.333333pt;}
.y2bb{bottom:662.813333pt;}
.y1e5{bottom:663.293333pt;}
.y35c{bottom:663.613333pt;}
.y38f{bottom:663.773333pt;}
.y13{bottom:665.853333pt;}
.y7a{bottom:666.653333pt;}
.y1ae{bottom:670.493333pt;}
.y2fb{bottom:670.653333pt;}
.y26a{bottom:670.813333pt;}
.y17f{bottom:674.813333pt;}
.ya1{bottom:675.933333pt;}
.y32f{bottom:676.253333pt;}
.y49{bottom:677.053333pt;}
.y35b{bottom:678.973333pt;}
.yce{bottom:679.133333pt;}
.y2ba{bottom:679.613333pt;}
.y1e4{bottom:680.253333pt;}
.y12{bottom:683.453333pt;}
.y10d{bottom:683.613333pt;}
.y38e{bottom:687.133333pt;}
.y1ad{bottom:687.293333pt;}
.y221{bottom:688.253333pt;}
.y79{bottom:688.573333pt;}
.y2fa{bottom:689.053333pt;}
.y48{bottom:690.333333pt;}
.y269{bottom:690.973333pt;}
.y17e{bottom:691.613333pt;}
.y32e{bottom:691.933333pt;}
.ya0{bottom:692.733333pt;}
.y263{bottom:693.679928pt;}
.ycd{bottom:694.013333pt;}
.y35a{bottom:694.333333pt;}
.y2b9{bottom:696.573333pt;}
.y1e3{bottom:697.213333pt;}
.ycc{bottom:700.733333pt;}
.y11{bottom:700.893333pt;}
.y262{bottom:701.693333pt;}
.y32d{bottom:703.773333pt;}
.y1ac{bottom:704.253333pt;}
.y220{bottom:705.213333pt;}
.y47{bottom:707.293333pt;}
.y2f9{bottom:707.453333pt;}
.y17d{bottom:708.573333pt;}
.y9f{bottom:709.693333pt;}
.y38d{bottom:710.493333pt;}
.ycb{bottom:711.613333pt;}
.y2b8{bottom:713.693333pt;}
.y1e2{bottom:714.013333pt;}
.y10{bottom:715.613333pt;}
.y10c{bottom:718.653333pt;}
.y359{bottom:718.813333pt;}
.y32c{bottom:720.733333pt;}
.y1ab{bottom:721.053333pt;}
.y10b{bottom:721.853333pt;}
.y261{bottom:722.173333pt;}
.y78{bottom:722.653333pt;}
.y46{bottom:724.093333pt;}
.y2f8{bottom:725.853333pt;}
.y9e{bottom:726.493333pt;}
.y10a{bottom:726.813333pt;}
.yca{bottom:727.933333pt;}
.y21f{bottom:728.093333pt;}
.y1e1{bottom:730.973333pt;}
.y2b7{bottom:732.093333pt;}
.y17c{bottom:732.893333pt;}
.y38c{bottom:733.693333pt;}
.y109{bottom:734.973333pt;}
.yf{bottom:735.773333pt;}
.y32b{bottom:737.533333pt;}
.y1aa{bottom:737.853333pt;}
.y260{bottom:739.133333pt;}
.y358{bottom:740.253333pt;}
.y45{bottom:741.053333pt;}
.y9d{bottom:743.453333pt;}
.y2f7{bottom:744.253333pt;}
.y21e{bottom:744.573333pt;}
.yc9{bottom:745.213333pt;}
.y1e0{bottom:747.773333pt;}
.y2b6{bottom:748.413333pt;}
.y1a9{bottom:753.533333pt;}
.y32a{bottom:754.493333pt;}
.y17b{bottom:755.773333pt;}
.y44{bottom:756.413333pt;}
.y108{bottom:757.053333pt;}
.y2b5{bottom:757.853333pt;}
.y9c{bottom:760.253333pt;}
.ye{bottom:761.533333pt;}
.y357{bottom:761.693333pt;}
.yc8{bottom:762.333333pt;}
.y2f6{bottom:762.653333pt;}
.y25f{bottom:763.773333pt;}
.y1df{bottom:764.573333pt;}
.y1a8{bottom:765.533333pt;}
.y43{bottom:766.973333pt;}
.y21d{bottom:767.613333pt;}
.y107{bottom:770.813333pt;}
.y17a{bottom:770.973333pt;}
.y329{bottom:771.293333pt;}
.yd{bottom:771.773333pt;}
.y2b4{bottom:774.693333pt;}
.y9b{bottom:777.093333pt;}
.y21c{bottom:779.013333pt;}
.yc7{bottom:779.173333pt;}
.y179{bottom:780.453333pt;}
.y25e{bottom:781.093333pt;}
.y1de{bottom:781.573333pt;}
.y1a7{bottom:782.373333pt;}
.y42{bottom:782.853333pt;}
.yc{bottom:787.013333pt;}
.y328{bottom:788.293333pt;}
.y106{bottom:790.053333pt;}
.y21b{bottom:791.013333pt;}
.y2b3{bottom:791.813333pt;}
.y9a{bottom:794.053333pt;}
.y41{bottom:794.693333pt;}
.y38b{bottom:795.813333pt;}
.yc6{bottom:796.133333pt;}
.y178{bottom:797.413333pt;}
.y25d{bottom:797.893333pt;}
.y1dd{bottom:798.373333pt;}
.y1a6{bottom:799.333333pt;}
.y2f5{bottom:799.493333pt;}
.y77{bottom:801.893333pt;}
.yb{bottom:803.013333pt;}
.y327{bottom:805.093333pt;}
.y25c{bottom:807.013333pt;}
.y105{bottom:807.173333pt;}
.y21a{bottom:807.813333pt;}
.y2b2{bottom:810.213333pt;}
.y99{bottom:810.853333pt;}
.y38a{bottom:811.173333pt;}
.y40{bottom:811.493333pt;}
.yc5{bottom:812.933333pt;}
.y1dc{bottom:815.333333pt;}
.y1a5{bottom:816.133333pt;}
.y25b{bottom:816.293333pt;}
.y2f4{bottom:817.893333pt;}
.y76{bottom:818.853333pt;}
.y177{bottom:821.733333pt;}
.y326{bottom:821.893333pt;}
.ya{bottom:822.053333pt;}
.y219{bottom:824.613333pt;}
.y104{bottom:825.573333pt;}
.y389{bottom:826.533333pt;}
.y25a{bottom:826.853333pt;}
.y3f{bottom:828.613333pt;}
.y1db{bottom:829.733333pt;}
.y1a4{bottom:833.093333pt;}
.y1d7{bottom:833.546594pt;}
.yc4{bottom:834.853333pt;}
.y98{bottom:835.653333pt;}
.y75{bottom:835.813333pt;}
.y2f3{bottom:836.293333pt;}
.y9{bottom:837.093333pt;}
.y325{bottom:838.853333pt;}
.y1d6{bottom:841.573333pt;}
.y388{bottom:841.893333pt;}
.y103{bottom:843.813333pt;}
.y176{bottom:844.613333pt;}
.y3e{bottom:847.013333pt;}
.yc3{bottom:848.133333pt;}
.y1a3{bottom:849.893333pt;}
.y8{bottom:852.293333pt;}
.y74{bottom:852.613333pt;}
.y2f2{bottom:854.693333pt;}
.y324{bottom:855.653333pt;}
.y387{bottom:857.093333pt;}
.y218{bottom:858.373333pt;}
.y1d3{bottom:858.813261pt;}
.y2a9{bottom:859.013333pt;}
.y175{bottom:860.133333pt;}
.y102{bottom:860.613333pt;}
.y356{bottom:863.813333pt;}
.y3d{bottom:865.413333pt;}
.y1a2{bottom:865.573333pt;}
.y1d2{bottom:866.853333pt;}
.y355{bottom:867.173333pt;}
.y7{bottom:868.293333pt;}
.y73{bottom:869.413333pt;}
.y174{bottom:870.853333pt;}
.y386{bottom:872.453333pt;}
.y323{bottom:872.613333pt;}
.y2f1{bottom:873.093333pt;}
.yc2{bottom:873.733333pt;}
.y217{bottom:874.053333pt;}
.y101{bottom:877.413333pt;}
.y354{bottom:879.013333pt;}
.y202{bottom:881.893333pt;}
.y3c{bottom:883.653333pt;}
.y2b1{bottom:883.813333pt;}
.y173{bottom:884.453333pt;}
.y1d1{bottom:886.053333pt;}
.yc1{bottom:886.213333pt;}
.y72{bottom:886.373333pt;}
.y385{bottom:887.813333pt;}
.y322{bottom:887.973333pt;}
.y201{bottom:890.533333pt;}
.y2f0{bottom:891.493333pt;}
.y6{bottom:892.773333pt;}
.y100{bottom:894.373333pt;}
.y353{bottom:895.813333pt;}
.y3b{bottom:900.453333pt;}
.y384{bottom:900.613333pt;}
.y2b0{bottom:902.213333pt;}
.y216{bottom:902.853333pt;}
.y71{bottom:903.173333pt;}
.y5{bottom:903.653333pt;}
.y383{bottom:904.613333pt;}
.y321{bottom:907.333333pt;}
.y1d0{bottom:907.973333pt;}
.y200{bottom:909.253333pt;}
.y2ef{bottom:909.893333pt;}
.y97{bottom:911.013333pt;}
.yff{bottom:911.173333pt;}
.y352{bottom:912.773333pt;}
.y4{bottom:915.973333pt;}
.y3a{bottom:917.413333pt;}
.y172{bottom:918.053333pt;}
.y215{bottom:919.813333pt;}
.y382{bottom:919.973333pt;}
.y70{bottom:920.133333pt;}
.y1cf{bottom:920.293333pt;}
.y2af{bottom:920.613333pt;}
.y1ff{bottom:926.533333pt;}
.y96{bottom:928.133333pt;}
.y351{bottom:929.573333pt;}
.y171{bottom:933.733333pt;}
.y39{bottom:934.213333pt;}
.y381{bottom:935.333333pt;}
.y3{bottom:935.493333pt;}
.y214{bottom:936.613333pt;}
.y6f{bottom:936.933333pt;}
.y1fe{bottom:938.693333pt;}
.y2ae{bottom:939.013333pt;}
.y170{bottom:944.293333pt;}
.y95{bottom:944.933333pt;}
.y350{bottom:946.533333pt;}
.y380{bottom:950.693333pt;}
.y38{bottom:951.013333pt;}
.y213{bottom:953.413333pt;}
.y6e{bottom:953.733333pt;}
.y2{bottom:956.133333pt;}
.y1fd{bottom:957.093333pt;}
.y2ad{bottom:957.413333pt;}
.y1ce{bottom:957.893333pt;}
.y16f{bottom:961.413333pt;}
.y94{bottom:961.733333pt;}
.y34f{bottom:962.213333pt;}
.y37f{bottom:966.053333pt;}
.y37{bottom:966.693333pt;}
.y34e{bottom:971.653333pt;}
.y1fc{bottom:975.493333pt;}
.y212{bottom:976.453333pt;}
.y6d{bottom:978.533333pt;}
.y36{bottom:978.693333pt;}
.y37e{bottom:981.413333pt;}
.y1{bottom:986.213333pt;}
.y1fb{bottom:993.893333pt;}
.y211{bottom:994.213333pt;}
.y1cd{bottom:995.333333pt;}
.y35{bottom:995.493333pt;}
.y37d{bottom:996.613333pt;}
.y1cb{bottom:1008.000000pt;}
.y2ed{bottom:1014.666667pt;}
.yfd{bottom:1021.333333pt;}
.y93{bottom:1022.666667pt;}
.y6b{bottom:1024.000000pt;}
.y1a0{bottom:1025.333333pt;}
.y3af{bottom:1026.666667pt;}
.y20f{bottom:1028.000000pt;}
.y320{bottom:1029.333333pt;}
.y32{bottom:1030.666667pt;}
.y1f9{bottom:1042.666667pt;}
.h18{height:5.025000pt;}
.h16{height:5.160000pt;}
.h64{height:10.672812pt;}
.h2f{height:10.678125pt;}
.h10{height:10.965000pt;}
.h30{height:15.703125pt;}
.h4a{height:17.266343pt;}
.h2e{height:17.280000pt;}
.h44{height:18.532563pt;}
.h22{height:18.599762pt;}
.h47{height:19.999615pt;}
.h15{height:20.728125pt;}
.h84{height:21.267037pt;}
.h83{height:21.267055pt;}
.h72{height:21.267073pt;}
.h53{height:21.280000pt;}
.h56{height:21.285000pt;}
.h3f{height:21.333314pt;}
.h25{height:24.000685pt;}
.h42{height:24.000722pt;}
.h1c{height:24.000758pt;}
.h33{height:25.265736pt;}
.h39{height:25.265773pt;}
.h50{height:25.265809pt;}
.ha{height:26.368125pt;}
.h4d{height:26.381250pt;}
.h27{height:26.732785pt;}
.h28{height:26.874680pt;}
.h19{height:27.090000pt;}
.h13{height:31.406250pt;}
.he{height:32.250000pt;}
.h31{height:33.600000pt;}
.h8{height:35.404688pt;}
.h1f{height:35.665819pt;}
.h1d{height:35.683572pt;}
.h66{height:36.045799pt;}
.h58{height:36.077777pt;}
.h40{height:36.160453pt;}
.h5e{height:36.226255pt;}
.h6e{height:36.275774pt;}
.h6c{height:36.293831pt;}
.h77{height:36.370639pt;}
.h48{height:36.389780pt;}
.h5{height:36.431250pt;}
.h2b{height:36.949354pt;}
.h29{height:36.967746pt;}
.h3c{height:37.039435pt;}
.h34{height:37.057871pt;}
.h4f{height:37.410000pt;}
.hc{height:38.672812pt;}
.h54{height:40.320000pt;}
.h6{height:42.084375pt;}
.h52{height:43.215000pt;}
.h37{height:44.145625pt;}
.h7e{height:45.268039pt;}
.h87{height:46.609688pt;}
.h11{height:47.109375pt;}
.h6a{height:47.196930pt;}
.h5c{height:47.238800pt;}
.h62{height:47.386799pt;}
.h71{height:47.505015pt;}
.h7b{height:47.630641pt;}
.h3b{height:50.560000pt;}
.h4e{height:51.663750pt;}
.hd{height:52.108438pt;}
.h86{height:52.134375pt;}
.h1a{height:52.306185pt;}
.h32{height:52.480000pt;}
.h88{height:53.535000pt;}
.h63{height:57.758750pt;}
.h3{height:57.787500pt;}
.h1b{height:58.563750pt;}
.h69{height:58.903011pt;}
.h5b{height:58.955266pt;}
.h61{height:59.139972pt;}
.h70{height:59.287508pt;}
.h17{height:59.340000pt;}
.h7a{height:59.444293pt;}
.h81{height:59.931144pt;}
.h14{height:60.519362pt;}
.h21{height:61.441109pt;}
.h26{height:61.455029pt;}
.h20{height:61.605013pt;}
.h1e{height:61.635678pt;}
.h43{height:61.732139pt;}
.h73{height:62.198757pt;}
.h68{height:62.380679pt;}
.h67{height:62.411730pt;}
.h5a{height:62.436020pt;}
.h59{height:62.467098pt;}
.h41{height:62.481343pt;}
.h60{height:62.631631pt;}
.h5f{height:62.662806pt;}
.h6f{height:62.787878pt;}
.h7{height:62.812500pt;}
.h6d{height:62.819131pt;}
.h49{height:62.922362pt;}
.h79{height:62.953919pt;}
.h78{height:62.985255pt;}
.h45{height:63.046709pt;}
.h23{height:63.275317pt;}
.h24{height:63.306813pt;}
.h80{height:63.469514pt;}
.h7f{height:63.501107pt;}
.h4b{height:63.822479pt;}
.h2c{height:63.933078pt;}
.h2d{height:63.945413pt;}
.h2a{height:63.964901pt;}
.h3d{height:64.010086pt;}
.h3a{height:64.041948pt;}
.h51{height:64.127393pt;}
.h35{height:64.159313pt;}
.h12{height:64.500000pt;}
.h9{height:66.404375pt;}
.h55{height:66.625000pt;}
.hb{height:67.803750pt;}
.h4{height:68.916875pt;}
.h2{height:72.384062pt;}
.h65{height:74.668730pt;}
.h57{height:74.735008pt;}
.hf{height:75.465000pt;}
.h8d{height:82.240000pt;}
.h8c{height:82.400000pt;}
.h8a{height:82.432000pt;}
.h5d{height:82.666411pt;}
.h7c{height:83.540625pt;}
.h7d{height:94.218750pt;}
.h89{height:95.392000pt;}
.h76{height:98.668892pt;}
.h4c{height:102.220000pt;}
.h75{height:104.896875pt;}
.h6b{height:109.267584pt;}
.h38{height:134.906667pt;}
.h46{height:141.760000pt;}
.h74{height:142.720000pt;}
.h3e{height:162.106667pt;}
.h8b{height:177.120000pt;}
.h82{height:193.120000pt;}
.h85{height:214.746667pt;}
.h36{height:349.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:16.000255pt;}
.w18{width:17.266622pt;}
.w16{width:17.266649pt;}
.w12{width:18.533120pt;}
.w19{width:18.534071pt;}
.w17{width:18.534099pt;}
.w13{width:22.733223pt;}
.w5{width:23.999448pt;}
.w9{width:40.960000pt;}
.w15{width:46.733772pt;}
.w4{width:64.001940pt;}
.w2b{width:96.800000pt;}
.w2d{width:96.960000pt;}
.wc{width:111.552000pt;}
.wa{width:118.080000pt;}
.wd{width:127.996551pt;}
.w1c{width:127.996587pt;}
.w3{width:158.735964pt;}
.w7{width:190.668402pt;}
.w8{width:198.665660pt;}
.w6{width:210.543146pt;}
.w10{width:238.735383pt;}
.w1f{width:256.007119pt;}
.w1d{width:256.007137pt;}
.w1e{width:261.260447pt;}
.w11{width:276.006858pt;}
.we{width:282.592218pt;}
.wf{width:292.011316pt;}
.wb{width:344.066667pt;}
.w27{width:349.266947pt;}
.w1a{width:428.093333pt;}
.w24{width:451.995153pt;}
.w25{width:464.002354pt;}
.w28{width:490.663592pt;}
.w26{width:490.730792pt;}
.w2a{width:490.973333pt;}
.w2e{width:494.013333pt;}
.w2c{width:494.973333pt;}
.w21{width:512.005033pt;}
.w20{width:514.663272pt;}
.w23{width:535.990821pt;}
.w22{width:555.453333pt;}
.w29{width:562.973333pt;}
.w1b{width:592.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.426613pt;}
.x24{left:2.650615pt;}
.x2e{left:7.408269pt;}
.x41{left:8.480000pt;}
.x38{left:9.600000pt;}
.x1f{left:10.990962pt;}
.x73{left:12.887335pt;}
.x3f{left:13.960000pt;}
.x48{left:15.840000pt;}
.x79{left:17.233969pt;}
.x7a{left:18.604810pt;}
.x1e{left:19.874064pt;}
.x3d{left:26.600000pt;}
.x3c{left:32.154667pt;}
.x2f{left:33.174535pt;}
.x35{left:36.713910pt;}
.x40{left:38.234667pt;}
.x8c{left:39.133199pt;}
.x44{left:40.241759pt;}
.x2d{left:42.727169pt;}
.x81{left:44.389874pt;}
.x86{left:45.351335pt;}
.x34{left:46.290474pt;}
.x71{left:47.527658pt;}
.x8a{left:50.873561pt;}
.x32{left:53.398436pt;}
.x29{left:54.649554pt;}
.x47{left:59.034667pt;}
.x8b{left:60.885247pt;}
.x67{left:66.760000pt;}
.x7d{left:67.727400pt;}
.x8e{left:72.307945pt;}
.x28{left:73.623876pt;}
.x7e{left:75.952434pt;}
.x20{left:77.423281pt;}
.x7b{left:81.044497pt;}
.x54{left:83.080000pt;}
.x1d{left:84.426068pt;}
.x80{left:86.788709pt;}
.x7f{left:88.029116pt;}
.x89{left:93.039915pt;}
.x43{left:97.613252pt;}
.x50{left:103.013701pt;}
.x97{left:104.032000pt;}
.x3b{left:109.472000pt;}
.x5b{left:111.880000pt;}
.xb{left:113.471988pt;}
.xe{left:114.666667pt;}
.x2c{left:116.030689pt;}
.x82{left:119.392000pt;}
.x33{left:121.893014pt;}
.x5{left:125.471988pt;}
.x57{left:128.840000pt;}
.x1{left:132.831988pt;}
.x78{left:141.546667pt;}
.x7c{left:144.097730pt;}
.x88{left:145.546658pt;}
.x2a{left:147.083443pt;}
.x61{left:149.626655pt;}
.x62{left:150.906655pt;}
.x85{left:154.906655pt;}
.x9{left:158.586655pt;}
.x59{left:159.880000pt;}
.xf{left:161.466655pt;}
.x46{left:163.560000pt;}
.x1b{left:165.946655pt;}
.x74{left:166.857411pt;}
.x6f{left:169.589591pt;}
.x49{left:172.040000pt;}
.x60{left:173.333333pt;}
.x6d{left:174.816941pt;}
.x6e{left:175.787936pt;}
.x4{left:177.146655pt;}
.x10{left:180.000000pt;}
.x70{left:182.252280pt;}
.x5d{left:184.000000pt;}
.x6c{left:185.546649pt;}
.x66{left:188.026667pt;}
.x19{left:189.333333pt;}
.x96{left:190.666667pt;}
.x69{left:192.000000pt;}
.x2{left:195.066655pt;}
.x39{left:196.000000pt;}
.x17{left:197.333333pt;}
.x68{left:204.354667pt;}
.xc{left:206.666667pt;}
.x14{left:216.826655pt;}
.x3a{left:228.506655pt;}
.x45{left:236.066667pt;}
.x16{left:242.906655pt;}
.x12{left:244.666655pt;}
.x23{left:249.346649pt;}
.x4b{left:251.778948pt;}
.x4c{left:254.346649pt;}
.x4a{left:258.946667pt;}
.x4d{left:261.673159pt;}
.x83{left:277.634667pt;}
.x56{left:279.906667pt;}
.x4f{left:280.879982pt;}
.x51{left:291.426667pt;}
.x53{left:292.746649pt;}
.x31{left:297.546649pt;}
.x1c{left:301.013315pt;}
.x5f{left:304.066655pt;}
.x5e{left:306.946655pt;}
.x52{left:310.146667pt;}
.x25{left:313.346655pt;}
.x26{left:317.013297pt;}
.x4e{left:318.146667pt;}
.x5a{left:322.813297pt;}
.x6a{left:332.879964pt;}
.x42{left:336.213333pt;}
.x27{left:341.026655pt;}
.x6{left:344.546655pt;}
.x5c{left:374.013297pt;}
.x58{left:376.879964pt;}
.x3{left:396.866655pt;}
.x72{left:441.533322pt;}
.x75{left:442.813322pt;}
.x22{left:459.773322pt;}
.x6b{left:460.893322pt;}
.x92{left:462.813322pt;}
.xa{left:480.893322pt;}
.x55{left:485.346630pt;}
.x30{left:492.253322pt;}
.x36{left:496.253322pt;}
.x8{left:508.893322pt;}
.x7{left:520.893322pt;}
.x91{left:526.341333pt;}
.x77{left:529.693322pt;}
.x95{left:532.581333pt;}
.x65{left:542.493322pt;}
.x84{left:551.301333pt;}
.x2b{left:555.293322pt;}
.x3e{left:572.893333pt;}
.x98{left:590.213333pt;}
.x99{left:591.173333pt;}
.x9a{left:592.133333pt;}
.x8d{left:597.573322pt;}
.x94{left:604.293322pt;}
.x8f{left:609.573322pt;}
.x93{left:625.573322pt;}
.x63{left:639.173322pt;}
.x90{left:642.373322pt;}
.x64{left:645.733322pt;}
.x37{left:653.093333pt;}
.x11{left:655.493322pt;}
.x1a{left:664.000000pt;}
.x87{left:669.573322pt;}
.x76{left:670.666667pt;}
.x13{left:673.413322pt;}
.x18{left:676.000000pt;}
.xd{left:677.333333pt;}
.x15{left:680.453322pt;}
}




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