
    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_39bc8dd9b759bccf39ca7889.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_0033a4add64aa2a4c2612758.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_8396f513559abd37a0eacbb6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5d6534a709dc2665ac7cd2a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_0fe6a23356571ed204dad35e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b1966c292ba34de6f6791ce6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_af5564ef2d61bb58da36d45d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_3e040755669f7afab5338857.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_37e3749f0ea5eba08d384f51.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064453;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_4c521413b751273b016a5c37.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956543;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_b70cdecfdb44dddb2a4b7956.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_032eb310da49908f32f4c99b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_93134413c17583e6888cca0d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.831000;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_55ee2f9a5f0ac639543b2151.woff2')format("woff");}.fff{font-family:fff;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;}
.m60{transform:matrix(0.219182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219182,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.220447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220447,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.220447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220447,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.223201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223201,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.226876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226876,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.228017,0.000000,-0.075998,0.238169,0,0);-ms-transform:matrix(0.228017,0.000000,-0.075998,0.238169,0,0);-webkit-transform:matrix(0.228017,0.000000,-0.075998,0.238169,0,0);}
.m61{transform:matrix(0.228578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228578,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.229323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229323,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.229323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229323,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229790,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.230311,0.000000,-0.076762,0.237923,0,0);-ms-transform:matrix(0.230311,0.000000,-0.076762,0.237923,0,0);-webkit-transform:matrix(0.230311,0.000000,-0.076762,0.237923,0,0);}
.m1a{transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230401,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.231144,0.000001,0.000001,0.250000,0,0);-ms-transform:matrix(0.231144,0.000001,0.000001,0.250000,0,0);-webkit-transform:matrix(0.231144,0.000001,0.000001,0.250000,0,0);}
.m1b{transform:matrix(0.231144,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.231144,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.231144,0.000000,0.000001,0.250000,0,0);}
.m52{transform:matrix(0.231585,0.000000,-0.077187,0.237786,0,0);-ms-transform:matrix(0.231585,0.000000,-0.077187,0.237786,0,0);-webkit-transform:matrix(0.231585,0.000000,-0.077187,0.237786,0,0);}
.m29{transform:matrix(0.232080,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.232080,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232080,0.000001,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233697,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.234938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234938,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.235019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235019,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.235527,0.000000,-0.078501,0.237355,0,0);-ms-transform:matrix(0.235527,0.000000,-0.078501,0.237355,0,0);-webkit-transform:matrix(0.235527,0.000000,-0.078501,0.237355,0,0);}
.m22{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.235959,0.000001,-0.078645,0.237308,0,0);-ms-transform:matrix(0.235959,0.000001,-0.078645,0.237308,0,0);-webkit-transform:matrix(0.235959,0.000001,-0.078645,0.237308,0,0);}
.m70{transform:matrix(0.236321,0.000000,-0.078766,0.237268,0,0);-ms-transform:matrix(0.236321,0.000000,-0.078766,0.237268,0,0);-webkit-transform:matrix(0.236321,0.000000,-0.078766,0.237268,0,0);}
.m7d{transform:matrix(0.236547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236547,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.236794,0.000001,-0.078923,0.237216,0,0);-ms-transform:matrix(0.236794,0.000001,-0.078923,0.237216,0,0);-webkit-transform:matrix(0.236794,0.000001,-0.078923,0.237216,0,0);}
.m6{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237139,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.237139,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237139,0.000001,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237440,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.237512,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.237512,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237512,0.000001,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.237727,0.000000,-0.079234,0.237112,0,0);-ms-transform:matrix(0.237727,0.000000,-0.079234,0.237112,0,0);-webkit-transform:matrix(0.237727,0.000000,-0.079234,0.237112,0,0);}
.ma{transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238085,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.238087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238087,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.238294,0.000000,-0.079423,0.237049,0,0);-ms-transform:matrix(0.238294,0.000000,-0.079423,0.237049,0,0);-webkit-transform:matrix(0.238294,0.000000,-0.079423,0.237049,0,0);}
.m1c{transform:matrix(0.238715,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.238715,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238715,0.000001,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.239062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239062,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.239344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239344,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.239693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239693,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.239737,0.000000,-0.079904,0.236887,0,0);-ms-transform:matrix(0.239737,0.000000,-0.079904,0.236887,0,0);-webkit-transform:matrix(0.239737,0.000000,-0.079904,0.236887,0,0);}
.m85{transform:matrix(0.239839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239839,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.239957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239957,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.240163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240163,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.240199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240199,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.240199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240199,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.240292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240292,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.240787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240787,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.241186,0.000000,-0.080387,0.236723,0,0);-ms-transform:matrix(0.241186,0.000000,-0.080387,0.236723,0,0);-webkit-transform:matrix(0.241186,0.000000,-0.080387,0.236723,0,0);}
.m86{transform:matrix(0.241461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241461,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.241612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241612,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.242001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242001,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242005,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.242379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242379,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.242947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242947,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.243263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243263,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.243948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243948,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.244081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244081,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245102,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245732,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245791,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246285,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246565,0.000000,-0.082180,0.236107,0,0);-ms-transform:matrix(0.246565,0.000000,-0.082180,0.236107,0,0);-webkit-transform:matrix(0.246565,0.000000,-0.082180,0.236107,0,0);}
.m58{transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247377,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247643,0.000000,-0.082539,0.235982,0,0);-ms-transform:matrix(0.247643,0.000000,-0.082539,0.235982,0,0);-webkit-transform:matrix(0.247643,0.000000,-0.082539,0.235982,0,0);}
.m15{transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247987,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249506,0.000000,-0.083160,0.235763,0,0);-ms-transform:matrix(0.249506,0.000000,-0.083160,0.235763,0,0);-webkit-transform:matrix(0.249506,0.000000,-0.083160,0.235763,0,0);}
.m2e{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,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);}
.m5a{transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251218,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.253007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253007,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253538,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253541,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254126,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254712,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.254813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254813,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255476,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.255830,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.255830,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.255830,0.000000,0.000001,0.250000,0,0);}
.m31{transform:matrix(0.255843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255843,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.256218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256218,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.258726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258726,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258796,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.258887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258887,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.260672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260672,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.260762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260762,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.261073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261073,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.261712,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.261712,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261712,0.000001,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.261814,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.261814,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261814,0.000001,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.262354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262354,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.264572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264572,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.267161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267161,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.268041,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.268041,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.268041,0.000000,0.000001,0.250000,0,0);}
.m2d{transform:matrix(0.268428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268428,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.268529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268529,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.269992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269992,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273322,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.279380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279380,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.282151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282151,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);}
.v1{vertical-align:-73.124197px;}
.v7{vertical-align:-54.954892px;}
.vd{vertical-align:-50.661690px;}
.ve{vertical-align:-48.878148px;}
.v11{vertical-align:-38.784704px;}
.v17{vertical-align:-32.952037px;}
.vf{vertical-align:-31.918006px;}
.vc{vertical-align:-25.619036px;}
.v1a{vertical-align:-22.087478px;}
.v19{vertical-align:-20.629782px;}
.v10{vertical-align:-17.809399px;}
.v14{vertical-align:-10.400764px;}
.v4{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:5.760000px;}
.v12{vertical-align:10.400764px;}
.v16{vertical-align:12.898307px;}
.v13{vertical-align:16.151359px;}
.va{vertical-align:18.433743px;}
.v1d{vertical-align:20.880000px;}
.v3{vertical-align:25.181144px;}
.v15{vertical-align:28.210750px;}
.v1c{vertical-align:30.326752px;}
.v6{vertical-align:38.777602px;}
.v1b{vertical-align:46.768450px;}
.vb{vertical-align:50.194905px;}
.v9{vertical-align:51.823424px;}
.v8{vertical-align:55.024831px;}
.v2{vertical-align:71.121900px;}
.ls9c{letter-spacing:-2.638822px;}
.ls49{letter-spacing:-2.626634px;}
.ls9a{letter-spacing:-2.623677px;}
.ls4c{letter-spacing:-2.574413px;}
.ls4f{letter-spacing:-2.556120px;}
.ls48{letter-spacing:-2.556027px;}
.ls9b{letter-spacing:-2.549246px;}
.ls97{letter-spacing:-2.489102px;}
.ls4a{letter-spacing:-2.485606px;}
.ls99{letter-spacing:-2.474816px;}
.ls4b{letter-spacing:-2.415093px;}
.ls80{letter-spacing:-2.344579px;}
.ls98{letter-spacing:-2.325955px;}
.ls7e{letter-spacing:-2.272342px;}
.ls81{letter-spacing:-2.208870px;}
.ls4e{letter-spacing:-1.916103px;}
.ls26{letter-spacing:-1.440000px;}
.ls82{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.450600px;}
.ls69{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.144000px;}
.ls7d{letter-spacing:-0.072324px;}
.ls6{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.111600px;}
.ls63{letter-spacing:0.120000px;}
.ls5f{letter-spacing:0.140745px;}
.ls50{letter-spacing:0.142203px;}
.ls59{letter-spacing:0.144720px;}
.ls4d{letter-spacing:0.144884px;}
.ls58{letter-spacing:0.180000px;}
.ls46{letter-spacing:0.211117px;}
.ls0{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.217325px;}
.ls10{letter-spacing:0.269280px;}
.ls1c{letter-spacing:0.270720px;}
.ls55{letter-spacing:0.287971px;}
.ls6e{letter-spacing:0.288000px;}
.ls45{letter-spacing:0.356808px;}
.ls1e{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.396339px;}
.ls6b{letter-spacing:0.426608px;}
.ls47{letter-spacing:0.432000px;}
.ls67{letter-spacing:0.432855px;}
.ls7c{letter-spacing:0.440785px;}
.ls2b{letter-spacing:0.443022px;}
.ls3f{letter-spacing:0.503095px;}
.ls6d{letter-spacing:0.524735px;}
.ls2f{letter-spacing:0.599786px;}
.ls6a{letter-spacing:0.646621px;}
.ls6c{letter-spacing:0.679980px;}
.ls18{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.792000px;}
.ls57{letter-spacing:0.900000px;}
.ls25{letter-spacing:1.110590px;}
.ls30{letter-spacing:1.277724px;}
.ls43{letter-spacing:2.160000px;}
.ls68{letter-spacing:2.466613px;}
.ls11{letter-spacing:2.880000px;}
.ls20{letter-spacing:5.760000px;}
.lsd{letter-spacing:7.200000px;}
.ls24{letter-spacing:8.100000px;}
.ls2{letter-spacing:8.640000px;}
.ls60{letter-spacing:9.003018px;}
.ls44{letter-spacing:10.080000px;}
.ls3{letter-spacing:10.800000px;}
.ls5b{letter-spacing:11.105193px;}
.ls64{letter-spacing:11.520000px;}
.ls62{letter-spacing:13.680000px;}
.ls13{letter-spacing:13.860000px;}
.lse{letter-spacing:14.400000px;}
.ls12{letter-spacing:15.120000px;}
.ls96{letter-spacing:17.621280px;}
.ls22{letter-spacing:18.000000px;}
.ls1f{letter-spacing:22.320000px;}
.ls23{letter-spacing:23.760000px;}
.ls1{letter-spacing:24.480000px;}
.ls7b{letter-spacing:25.266253px;}
.ls65{letter-spacing:26.640000px;}
.ls29{letter-spacing:28.080000px;}
.ls8f{letter-spacing:29.102036px;}
.ls85{letter-spacing:29.339896px;}
.ls90{letter-spacing:29.346134px;}
.ls8b{letter-spacing:29.400379px;}
.ls88{letter-spacing:29.475429px;}
.ls8e{letter-spacing:29.492735px;}
.ls74{letter-spacing:29.520000px;}
.ls93{letter-spacing:29.624291px;}
.ls91{letter-spacing:29.648694px;}
.ls86{letter-spacing:30.075216px;}
.ls75{letter-spacing:30.240000px;}
.ls8d{letter-spacing:30.400415px;}
.ls95{letter-spacing:30.960000px;}
.ls5c{letter-spacing:33.824953px;}
.ls61{letter-spacing:34.560000px;}
.ls3c{letter-spacing:34.672445px;}
.ls3b{letter-spacing:35.098465px;}
.ls3a{letter-spacing:35.240668px;}
.lsf{letter-spacing:35.280000px;}
.ls3d{letter-spacing:35.670213px;}
.ls4{letter-spacing:36.000000px;}
.ls5{letter-spacing:36.720000px;}
.ls39{letter-spacing:37.302130px;}
.ls76{letter-spacing:38.160000px;}
.ls79{letter-spacing:38.880000px;}
.ls84{letter-spacing:41.466038px;}
.ls38{letter-spacing:42.115047px;}
.ls77{letter-spacing:42.480000px;}
.ls7f{letter-spacing:43.200000px;}
.ls1d{letter-spacing:50.400000px;}
.ls94{letter-spacing:51.120000px;}
.ls35{letter-spacing:53.301453px;}
.ls5e{letter-spacing:59.040000px;}
.ls5a{letter-spacing:66.960000px;}
.ls7a{letter-spacing:85.466331px;}
.ls83{letter-spacing:90.145093px;}
.ls78{letter-spacing:92.559335px;}
.ls33{letter-spacing:95.013247px;}
.ls5d{letter-spacing:95.246339px;}
.ls3e{letter-spacing:100.991048px;}
.ls42{letter-spacing:101.135932px;}
.ls36{letter-spacing:101.570444px;}
.ls40{letter-spacing:101.613009px;}
.ls2a{letter-spacing:106.271737px;}
.ls89{letter-spacing:111.080778px;}
.ls8a{letter-spacing:112.352300px;}
.ls8c{letter-spacing:113.478682px;}
.ls87{letter-spacing:113.631885px;}
.ls92{letter-spacing:114.080329px;}
.ls54{letter-spacing:118.653675px;}
.ls41{letter-spacing:134.659389px;}
.ls70{letter-spacing:146.908371px;}
.ls2c{letter-spacing:171.917385px;}
.lsc{letter-spacing:194.895438px;}
.ls21{letter-spacing:195.120000px;}
.ls51{letter-spacing:200.171650px;}
.ls56{letter-spacing:210.670322px;}
.lsb{letter-spacing:211.243406px;}
.ls15{letter-spacing:224.417774px;}
.ls34{letter-spacing:250.152465px;}
.ls1a{letter-spacing:255.006861px;}
.ls71{letter-spacing:272.669068px;}
.ls16{letter-spacing:276.087826px;}
.ls32{letter-spacing:284.332521px;}
.ls66{letter-spacing:285.891003px;}
.ls19{letter-spacing:309.204139px;}
.ls53{letter-spacing:311.079441px;}
.ls72{letter-spacing:320.444066px;}
.ls73{letter-spacing:321.872472px;}
.ls52{letter-spacing:361.250096px;}
.ls14{letter-spacing:376.543487px;}
.ls6f{letter-spacing:528.130210px;}
.ls37{letter-spacing:724.792517px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-55.356601px;}
.ws65{word-spacing:-45.184920px;}
.ws84{word-spacing:-41.331140px;}
.ws36{word-spacing:-41.285166px;}
.ws97{word-spacing:-41.175652px;}
.ws8e{word-spacing:-41.093927px;}
.ws22{word-spacing:-40.325834px;}
.ws51{word-spacing:-40.268545px;}
.ws7b{word-spacing:-40.237641px;}
.ws17{word-spacing:-40.188142px;}
.ws77{word-spacing:-40.065191px;}
.ws11{word-spacing:-39.528000px;}
.ws48{word-spacing:-39.399193px;}
.ws6c{word-spacing:-39.181750px;}
.ws39{word-spacing:-39.086212px;}
.ws31{word-spacing:-39.008788px;}
.ws69{word-spacing:-38.309138px;}
.ws29{word-spacing:-37.740041px;}
.ws86{word-spacing:-37.156631px;}
.ws89{word-spacing:-37.008955px;}
.ws33{word-spacing:-36.521659px;}
.ws1{word-spacing:-23.940000px;}
.ws56{word-spacing:-22.875899px;}
.ws99{word-spacing:-21.420000px;}
.ws4d{word-spacing:-19.600506px;}
.ws94{word-spacing:-19.196359px;}
.ws95{word-spacing:-19.187353px;}
.ws92{word-spacing:-19.184872px;}
.ws41{word-spacing:-19.094246px;}
.ws90{word-spacing:-19.033530px;}
.ws98{word-spacing:-18.884669px;}
.ws2c{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.360000px;}
.ws74{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.939399px;}
.ws3{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.784000px;}
.ws1b{word-spacing:-17.712000px;}
.ws8c{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws13{word-spacing:-12.729055px;}
.ws73{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.609400px;}
.ws62{word-spacing:-2.509326px;}
.ws44{word-spacing:-0.574860px;}
.ws1e{word-spacing:-0.516225px;}
.ws6e{word-spacing:-0.468104px;}
.wsb{word-spacing:-0.455126px;}
.ws60{word-spacing:-0.330684px;}
.ws2a{word-spacing:-0.252610px;}
.ws42{word-spacing:-0.218146px;}
.ws71{word-spacing:-0.211914px;}
.ws53{word-spacing:-0.183699px;}
.wsf{word-spacing:-0.104453px;}
.wsd{word-spacing:-0.100832px;}
.ws5b{word-spacing:-0.088117px;}
.ws14{word-spacing:-0.087161px;}
.ws20{word-spacing:-0.075284px;}
.ws35{word-spacing:-0.075201px;}
.ws96{word-spacing:-0.075001px;}
.ws24{word-spacing:-0.074852px;}
.ws75{word-spacing:-0.073999px;}
.ws21{word-spacing:-0.073453px;}
.ws50{word-spacing:-0.073349px;}
.ws7a{word-spacing:-0.073293px;}
.ws43{word-spacing:-0.073262px;}
.ws16{word-spacing:-0.073202px;}
.ws76{word-spacing:-0.072978px;}
.ws45{word-spacing:-0.071765px;}
.ws6a{word-spacing:-0.071369px;}
.ws38{word-spacing:-0.071195px;}
.ws72{word-spacing:-0.071169px;}
.ws3c{word-spacing:-0.071054px;}
.ws25{word-spacing:-0.071031px;}
.ws3e{word-spacing:-0.069780px;}
.ws32{word-spacing:-0.066524px;}
.ws4e{word-spacing:-0.064829px;}
.ws10{word-spacing:-0.061018px;}
.wsa{word-spacing:-0.058787px;}
.ws5a{word-spacing:-0.051461px;}
.ws1a{word-spacing:-0.043904px;}
.ws19{word-spacing:-0.043802px;}
.ws23{word-spacing:-0.043652px;}
.ws5f{word-spacing:-0.042713px;}
.ws78{word-spacing:-0.042582px;}
.ws2b{word-spacing:-0.042254px;}
.ws46{word-spacing:-0.041851px;}
.ws26{word-spacing:-0.041506px;}
.wse{word-spacing:-0.041497px;}
.ws2d{word-spacing:-0.040811px;}
.ws3f{word-spacing:-0.040672px;}
.ws58{word-spacing:-0.036657px;}
.ws7c{word-spacing:-0.029702px;}
.ws49{word-spacing:-0.029559px;}
.ws79{word-spacing:-0.000968px;}
.ws5{word-spacing:0.000000px;}
.ws4f{word-spacing:1.842900px;}
.ws7f{word-spacing:2.207514px;}
.ws82{word-spacing:2.273384px;}
.ws3b{word-spacing:2.344038px;}
.ws8f{word-spacing:2.399964px;}
.ws8d{word-spacing:2.413817px;}
.ws3a{word-spacing:2.414411px;}
.ws93{word-spacing:2.474245px;}
.ws34{word-spacing:2.480826px;}
.ws52{word-spacing:2.485066px;}
.ws3d{word-spacing:2.504634px;}
.ws91{word-spacing:2.548825px;}
.ws37{word-spacing:2.555438px;}
.ws85{word-spacing:19.531415px;}
.ws47{word-spacing:32.892891px;}
.ws4c{word-spacing:42.603681px;}
.ws81{word-spacing:50.267204px;}
.ws7d{word-spacing:50.978217px;}
.ws4a{word-spacing:51.113368px;}
.ws80{word-spacing:58.346749px;}
.ws5d{word-spacing:58.844136px;}
.ws67{word-spacing:60.672953px;}
.ws59{word-spacing:62.337904px;}
.ws66{word-spacing:63.410445px;}
.ws54{word-spacing:70.445862px;}
.ws28{word-spacing:70.767209px;}
.ws57{word-spacing:91.164659px;}
.ws7e{word-spacing:95.504651px;}
.ws6b{word-spacing:96.269163px;}
.ws6d{word-spacing:96.408102px;}
.ws68{word-spacing:113.795318px;}
.ws83{word-spacing:119.053274px;}
.ws70{word-spacing:130.244055px;}
.ws6f{word-spacing:130.985507px;}
.ws4b{word-spacing:142.930300px;}
.ws88{word-spacing:149.380635px;}
.ws64{word-spacing:150.865164px;}
.ws8b{word-spacing:150.889068px;}
.ws27{word-spacing:165.363957px;}
.ws1d{word-spacing:166.560679px;}
.ws40{word-spacing:175.645876px;}
.ws87{word-spacing:192.209378px;}
.ws8a{word-spacing:193.719058px;}
.ws1c{word-spacing:239.874558px;}
.ws5e{word-spacing:260.585666px;}
.ws6{word-spacing:268.083009px;}
.ws5c{word-spacing:353.460081px;}
.ws55{word-spacing:359.224582px;}
.ws9{word-spacing:412.650252px;}
.ws7{word-spacing:425.643973px;}
.ws61{word-spacing:472.554236px;}
.ws63{word-spacing:579.828122px;}
.ws2e{word-spacing:584.483402px;}
.ws30{word-spacing:630.595430px;}
.ws2f{word-spacing:665.480769px;}
.wsc{word-spacing:1352.666649px;}
._16{margin-left:-932.079953px;}
._1a{margin-left:-824.392309px;}
._1c{margin-left:-486.385937px;}
._17{margin-left:-438.839347px;}
._1d{margin-left:-420.853987px;}
._1e{margin-left:-400.311908px;}
._31{margin-left:-394.231577px;}
._85{margin-left:-392.884568px;}
._82{margin-left:-374.292546px;}
._80{margin-left:-365.397530px;}
._1b{margin-left:-363.073088px;}
._81{margin-left:-359.557094px;}
._2a{margin-left:-351.337113px;}
._53{margin-left:-346.575488px;}
._42{margin-left:-342.213627px;}
._25{margin-left:-340.179374px;}
._2f{margin-left:-337.576474px;}
._b4{margin-left:-334.437332px;}
._b1{margin-left:-333.009738px;}
._b2{margin-left:-331.810785px;}
._af{margin-left:-330.609352px;}
._2c{margin-left:-328.594980px;}
._a3{margin-left:-326.313114px;}
._7c{margin-left:-316.766867px;}
._7b{margin-left:-313.378314px;}
._2d{margin-left:-309.330086px;}
._70{margin-left:-305.504095px;}
._43{margin-left:-292.669502px;}
._4e{margin-left:-288.789821px;}
._4c{margin-left:-286.523510px;}
._55{margin-left:-285.025804px;}
._6d{margin-left:-279.060083px;}
._56{margin-left:-276.662980px;}
._9d{margin-left:-271.426916px;}
._72{margin-left:-267.562381px;}
._5a{margin-left:-256.220505px;}
._94{margin-left:-251.351523px;}
._ad{margin-left:-249.489359px;}
._57{margin-left:-245.272260px;}
._5d{margin-left:-238.250994px;}
._92{margin-left:-235.570447px;}
._1f{margin-left:-232.514520px;}
._5c{margin-left:-227.139218px;}
._48{margin-left:-224.169218px;}
._5e{margin-left:-222.755619px;}
._7e{margin-left:-219.586925px;}
._91{margin-left:-218.051092px;}
._38{margin-left:-216.403410px;}
._5b{margin-left:-214.476795px;}
._7a{margin-left:-208.056119px;}
._ac{margin-left:-206.638588px;}
._30{margin-left:-199.875332px;}
._59{margin-left:-198.386347px;}
._aa{margin-left:-196.703624px;}
._4d{margin-left:-194.283569px;}
._b0{margin-left:-192.001874px;}
._6c{margin-left:-188.771174px;}
._39{margin-left:-186.989147px;}
._51{margin-left:-184.833371px;}
._47{margin-left:-183.602950px;}
._3c{margin-left:-181.403522px;}
._a0{margin-left:-177.181572px;}
._58{margin-left:-175.790246px;}
._76{margin-left:-174.128559px;}
._74{margin-left:-171.082976px;}
._a5{margin-left:-169.134026px;}
._73{margin-left:-166.071207px;}
._a2{margin-left:-164.221583px;}
._8c{margin-left:-160.915875px;}
._8a{margin-left:-159.757159px;}
._9f{margin-left:-158.530165px;}
._a6{margin-left:-156.890974px;}
._87{margin-left:-153.934668px;}
._89{margin-left:-151.768167px;}
._29{margin-left:-150.240034px;}
._9e{margin-left:-147.845069px;}
._75{margin-left:-146.022616px;}
._65{margin-left:-144.314183px;}
._83{margin-left:-143.292435px;}
._86{margin-left:-141.675965px;}
._a4{margin-left:-139.299216px;}
._99{margin-left:-137.920641px;}
._66{margin-left:-134.724469px;}
._2b{margin-left:-133.018636px;}
._98{margin-left:-131.023630px;}
._ae{margin-left:-129.896400px;}
._a1{margin-left:-127.832898px;}
._27{margin-left:-126.682150px;}
._54{margin-left:-124.311575px;}
._7d{margin-left:-122.876753px;}
._24{margin-left:-120.412698px;}
._67{margin-left:-117.099675px;}
._2e{margin-left:-115.706599px;}
._28{margin-left:-114.314056px;}
._49{margin-left:-113.116292px;}
._84{margin-left:-109.843316px;}
._52{margin-left:-106.482715px;}
._26{margin-left:-103.191301px;}
._93{margin-left:-102.179910px;}
._90{margin-left:-99.497938px;}
._23{margin-left:-98.247359px;}
._40{margin-left:-97.104911px;}
._19{margin-left:-95.226795px;}
._44{margin-left:-92.978577px;}
._6e{margin-left:-91.506561px;}
._64{margin-left:-89.418820px;}
._46{margin-left:-88.400068px;}
._22{margin-left:-86.876292px;}
._69{margin-left:-83.846611px;}
._6a{margin-left:-82.041431px;}
._63{margin-left:-80.017664px;}
._21{margin-left:-78.141995px;}
._4f{margin-left:-74.234944px;}
._20{margin-left:-66.688529px;}
._b3{margin-left:-61.426812px;}
._71{margin-left:-59.122651px;}
._50{margin-left:-57.811060px;}
._ab{margin-left:-56.540851px;}
._45{margin-left:-54.901834px;}
._68{margin-left:-53.184924px;}
._6b{margin-left:-52.127553px;}
._78{margin-left:-51.059694px;}
._60{margin-left:-49.892977px;}
._61{margin-left:-48.755154px;}
._5f{margin-left:-47.689136px;}
._62{margin-left:-43.955310px;}
._4b{margin-left:-38.626046px;}
._4a{margin-left:-33.752705px;}
._77{margin-left:-32.326962px;}
._79{margin-left:-30.975914px;}
._6f{margin-left:-3.234140px;}
._2{margin-left:-2.139840px;}
._1{margin-left:-1.067760px;}
._0{width:1.347840px;}
._6{width:2.396160px;}
._37{width:3.600000px;}
._3e{width:5.544000px;}
._c{width:6.840000px;}
._b{width:8.051760px;}
._d{width:9.084240px;}
._e{width:10.944000px;}
._14{width:12.120000px;}
._5{width:13.800000px;}
._a{width:15.408000px;}
._12{width:16.724160px;}
._3d{width:19.355760px;}
._15{width:20.520000px;}
._7{width:21.672000px;}
._9{width:23.484000px;}
._8{width:24.552000px;}
._9a{width:25.590620px;}
._10{width:27.072000px;}
._f{width:28.800000px;}
._a7{width:29.952480px;}
._a8{width:31.083840px;}
._b6{width:32.336640px;}
._41{width:33.408000px;}
._36{width:34.920000px;}
._11{width:36.000000px;}
._4{width:37.656000px;}
._3{width:38.664000px;}
._13{width:41.040000px;}
._9b{width:42.480000px;}
._8d{width:44.136000px;}
._8e{width:45.164160px;}
._8f{width:46.995840px;}
._b5{width:51.240000px;}
._34{width:53.136000px;}
._35{width:54.144000px;}
._3f{width:55.728000px;}
._3a{width:56.880000px;}
._97{width:58.736160px;}
._a9{width:60.683760px;}
._ba{width:64.440000px;}
._88{width:66.672000px;}
._96{width:68.400000px;}
._32{width:82.260000px;}
._bc{width:91.656000px;}
._bb{width:93.147840px;}
._95{width:116.040000px;}
._b8{width:123.984000px;}
._b9{width:125.208000px;}
._8b{width:137.520000px;}
._9c{width:158.400000px;}
._7f{width:191.700000px;}
._33{width:194.400000px;}
._3b{width:195.960000px;}
._b7{width:291.011760px;}
._18{width:624.108165px;}
.fc9{color:rgb(255,0,0);}
.fc8{color:rgb(192,80,77);}
.fc7{color:rgb(255,0,255);}
.fc6{color:transparent;}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs34{font-size:29.559324px;}
.fs57{font-size:29.701526px;}
.fs3d{font-size:36.657425px;}
.fs39{font-size:37.806299px;}
.fs30{font-size:40.671701px;}
.fs2a{font-size:40.811076px;}
.fs25{font-size:41.492980px;}
.fsd{font-size:41.496698px;}
.fs21{font-size:41.505896px;}
.fs4b{font-size:41.654728px;}
.fs32{font-size:41.851442px;}
.fs28{font-size:42.254299px;}
.fs51{font-size:42.581916px;}
.fs1c{font-size:42.713120px;}
.fs56{font-size:42.788489px;}
.fs4f{font-size:43.142595px;}
.fsb{font-size:43.651659px;}
.fs35{font-size:43.707324px;}
.fs5a{font-size:43.723497px;}
.fs4c{font-size:43.763919px;}
.fs53{font-size:43.767758px;}
.fs5b{font-size:43.793802px;}
.fs9{font-size:43.801760px;}
.fs3c{font-size:43.824038px;}
.fs11{font-size:43.903636px;}
.fs2e{font-size:43.918259px;}
.fs58{font-size:43.961803px;}
.fs48{font-size:44.002437px;}
.fs43{font-size:48.066732px;}
.fs10{font-size:48.240000px;}
.fs45{font-size:50.535712px;}
.fs16{font-size:50.916221px;}
.fs3e{font-size:51.461329px;}
.fs47{font-size:51.756274px;}
.fs40{font-size:54.489427px;}
.fs6{font-size:58.786765px;}
.fs14{font-size:61.017848px;}
.fs38{font-size:64.828909px;}
.fs4{font-size:66.240000px;}
.fs2c{font-size:66.523970px;}
.fs8{font-size:67.411575px;}
.fs18{font-size:67.680566px;}
.fs23{font-size:68.743245px;}
.fs2f{font-size:69.779851px;}
.fs2b{font-size:69.923834px;}
.fs20{font-size:71.031305px;}
.fsf{font-size:71.054259px;}
.fs26{font-size:71.169207px;}
.fse{font-size:71.195286px;}
.fs4a{font-size:71.369308px;}
.fs31{font-size:71.765379px;}
.fs0{font-size:72.000000px;}
.fs29{font-size:72.456183px;}
.fs50{font-size:72.978489px;}
.fs17{font-size:73.202445px;}
.fs1d{font-size:73.262005px;}
.fs55{font-size:73.292607px;}
.fs3b{font-size:73.348899px;}
.fs1e{font-size:73.453250px;}
.fs4e{font-size:73.998645px;}
.fsc{font-size:74.852326px;}
.fsa{font-size:75.001187px;}
.fs54{font-size:75.051409px;}
.fs19{font-size:75.150048px;}
.fs2d{font-size:75.200666px;}
.fs12{font-size:75.284408px;}
.fs4d{font-size:75.434128px;}
.fs1a{font-size:76.514930px;}
.fs37{font-size:76.838826px;}
.fs41{font-size:76.850270px;}
.fs3a{font-size:76.918082px;}
.fs36{font-size:80.822962px;}
.fs59{font-size:81.104980px;}
.fs49{font-size:81.141590px;}
.fs44{font-size:82.304044px;}
.fs1{font-size:84.240000px;}
.fs15{font-size:87.160771px;}
.fs3f{font-size:88.116568px;}
.fs46{font-size:88.653568px;}
.fs2{font-size:95.760000px;}
.fs1f{font-size:99.801875px;}
.fs7{font-size:100.831695px;}
.fs13{font-size:104.453209px;}
.fs22{font-size:106.546957px;}
.fs24{font-size:106.756719px;}
.fs33{font-size:107.719430px;}
.fs27{font-size:108.756322px;}
.fs52{font-size:109.540591px;}
.fs1b{font-size:109.896001px;}
.fs42{font-size:110.039687px;}
.fs3{font-size:131.760000px;}
.fs5{font-size:151.251663px;}
.y0{bottom:0.000000px;}
.y243{bottom:2.963312px;}
.y170{bottom:2.963344px;}
.y172{bottom:2.963346px;}
.ya0{bottom:3.193750px;}
.y12b{bottom:3.239187px;}
.y124{bottom:3.239192px;}
.y126{bottom:3.239198px;}
.y1eb{bottom:3.365607px;}
.y13e{bottom:3.392867px;}
.y13c{bottom:3.392869px;}
.y26a{bottom:3.441230px;}
.y8a{bottom:3.441236px;}
.y272{bottom:3.441243px;}
.y25b{bottom:3.441244px;}
.y1ed{bottom:3.441254px;}
.y62{bottom:3.441255px;}
.y65{bottom:3.441258px;}
.y263{bottom:3.441259px;}
.y9d{bottom:3.441280px;}
.y295{bottom:3.441286px;}
.y288{bottom:3.441289px;}
.y29d{bottom:3.441290px;}
.yc8{bottom:3.441295px;}
.y297{bottom:3.441299px;}
.y2a0{bottom:3.441300px;}
.y23b{bottom:3.526270px;}
.y24c{bottom:3.526318px;}
.y167{bottom:3.561975px;}
.y246{bottom:3.561976px;}
.y18e{bottom:3.629135px;}
.y191{bottom:3.629136px;}
.y1a6{bottom:3.665369px;}
.yc1{bottom:3.665372px;}
.y1a1{bottom:3.665374px;}
.ybb{bottom:3.665376px;}
.ybe{bottom:3.665379px;}
.y153{bottom:3.665382px;}
.y155{bottom:3.665384px;}
.y1ab{bottom:3.665385px;}
.y1ae{bottom:3.665389px;}
.y1b2{bottom:3.665392px;}
.y1bb{bottom:3.665393px;}
.y1b4{bottom:3.665395px;}
.y1b9{bottom:3.665398px;}
.yfb{bottom:3.968259px;}
.y100{bottom:3.968265px;}
.y105{bottom:3.968274px;}
.y214{bottom:4.195692px;}
.y21a{bottom:4.195697px;}
.y21f{bottom:4.195702px;}
.y17f{bottom:4.417310px;}
.y16c{bottom:4.428501px;}
.y23f{bottom:4.447669px;}
.y1d2{bottom:4.447947px;}
.yb3{bottom:4.464255px;}
.y19c{bottom:4.464272px;}
.yb6{bottom:4.464321px;}
.y10e{bottom:4.464324px;}
.y186{bottom:4.483855px;}
.y159{bottom:4.578132px;}
.y15d{bottom:4.578133px;}
.y15f{bottom:4.578135px;}
.yf7{bottom:4.630544px;}
.yda{bottom:4.630562px;}
.y11f{bottom:4.630581px;}
.y142{bottom:4.630612px;}
.y135{bottom:4.666241px;}
.y146{bottom:4.666309px;}
.y75{bottom:4.758779px;}
.y1e7{bottom:4.759332px;}
.ya2{bottom:4.887795px;}
.yb1{bottom:4.919624px;}
.y88{bottom:4.919630px;}
.y177{bottom:4.919634px;}
.y175{bottom:4.919636px;}
.y17b{bottom:4.919640px;}
.yc4{bottom:4.919641px;}
.y10f{bottom:4.919642px;}
.y2a7{bottom:4.919647px;}
.y176{bottom:4.919664px;}
.y53{bottom:4.925442px;}
.y257{bottom:4.925455px;}
.yd2{bottom:4.925456px;}
.y4d{bottom:4.925469px;}
.y2a9{bottom:4.925481px;}
.y99{bottom:4.925495px;}
.y29c{bottom:4.925509px;}
.yca{bottom:4.936500px;}
.y1c4{bottom:4.936518px;}
.y277{bottom:4.938555px;}
.y51{bottom:4.962967px;}
.y8f{bottom:4.962974px;}
.yd5{bottom:4.962981px;}
.yd7{bottom:4.962984px;}
.y1f0{bottom:4.962994px;}
.yde{bottom:4.962997px;}
.y2ab{bottom:4.963007px;}
.y28e{bottom:4.963031px;}
.y227{bottom:4.976201px;}
.y11a{bottom:5.006210px;}
.y114{bottom:5.006214px;}
.y117{bottom:5.006219px;}
.y6b{bottom:5.754656px;}
.yf3{bottom:5.822946px;}
.y1ca{bottom:6.004151px;}
.y14c{bottom:6.004823px;}
.y1da{bottom:6.004870px;}
.y23d{bottom:6.126608px;}
.y56{bottom:6.126647px;}
.y24d{bottom:6.126660px;}
.y24f{bottom:6.126679px;}
.y17a{bottom:6.162159px;}
.y1e1{bottom:6.162164px;}
.y1e3{bottom:6.162171px;}
.y1ce{bottom:6.162184px;}
.y169{bottom:6.162188px;}
.y248{bottom:6.162196px;}
.y58{bottom:6.162211px;}
.y1cf{bottom:6.162218px;}
.y233{bottom:6.268156px;}
.y192{bottom:6.859085px;}
.ybf{bottom:6.895338px;}
.y1a4{bottom:6.895340px;}
.y1af{bottom:6.895348px;}
.y1b5{bottom:6.895351px;}
.y1ba{bottom:6.895353px;}
.y242{bottom:7.001152px;}
.y171{bottom:7.001157px;}
.y16f{bottom:7.001164px;}
.y1c7{bottom:7.137793px;}
.y3e{bottom:7.192626px;}
.y43{bottom:7.192647px;}
.y3c{bottom:7.192649px;}
.y40{bottom:7.192664px;}
.y45{bottom:7.192676px;}
.y42{bottom:7.192678px;}
.y138{bottom:7.231948px;}
.y1fe{bottom:7.231956px;}
.yab{bottom:7.380000px;}
.y27b{bottom:7.422214px;}
.y4b{bottom:7.422273px;}
.y26f{bottom:7.451847px;}
.y266{bottom:7.451860px;}
.y20c{bottom:7.473202px;}
.y111{bottom:7.473215px;}
.ya6{bottom:7.560000px;}
.y181{bottom:7.641901px;}
.y1ec{bottom:8.092580px;}
.y13a{bottom:8.105151px;}
.y26b{bottom:8.130286px;}
.y274{bottom:8.130289px;}
.y262{bottom:8.130292px;}
.y29f{bottom:8.130295px;}
.yc7{bottom:8.130296px;}
.y287{bottom:8.130298px;}
.y8b{bottom:8.130302px;}
.y25c{bottom:8.130320px;}
.y1ee{bottom:8.130323px;}
.y63{bottom:8.130353px;}
.y66{bottom:8.130355px;}
.y9e{bottom:8.130358px;}
.y118{bottom:8.143913px;}
.y203{bottom:8.467640px;}
.yf8{bottom:9.118591px;}
.y144{bottom:9.118614px;}
.y140{bottom:9.118619px;}
.ydb{bottom:9.118626px;}
.y120{bottom:9.118662px;}
.ya3{bottom:9.587653px;}
.y54{bottom:9.625111px;}
.y29b{bottom:9.625124px;}
.y291{bottom:9.625130px;}
.yd3{bottom:9.625144px;}
.y4e{bottom:9.625176px;}
.y2aa{bottom:9.625178px;}
.y9a{bottom:9.625184px;}
.y278{bottom:9.650745px;}
.y52{bottom:9.662791px;}
.y2a3{bottom:9.662801px;}
.y90{bottom:9.662809px;}
.y290{bottom:9.662810px;}
.y28f{bottom:9.662812px;}
.ydd{bottom:9.662815px;}
.y28d{bottom:9.662819px;}
.yd8{bottom:9.662824px;}
.yd6{bottom:9.662825px;}
.ydf{bottom:9.662830px;}
.y2ac{bottom:9.662860px;}
.y228{bottom:9.688557px;}
.y14a{bottom:10.368788px;}
.y1d9{bottom:10.368796px;}
.y132{bottom:10.368858px;}
.ye1{bottom:10.440000px;}
.y23c{bottom:10.579105px;}
.y24b{bottom:10.579120px;}
.y57{bottom:10.579178px;}
.y24e{bottom:10.579184px;}
.y179{bottom:10.614655px;}
.y1e0{bottom:10.614664px;}
.y1e2{bottom:10.614671px;}
.y1e4{bottom:10.614679px;}
.y168{bottom:10.614694px;}
.y247{bottom:10.614702px;}
.y249{bottom:10.614717px;}
.y59{bottom:10.614731px;}
.ye7{bottom:10.620000px;}
.yeb{bottom:10.800000px;}
.y235{bottom:10.869714px;}
.ye3{bottom:11.160000px;}
.y22f{bottom:11.304557px;}
.yd0{bottom:11.340000px;}
.ye5{bottom:11.520000px;}
.yd4{bottom:12.060000px;}
.y1dd{bottom:12.079620px;}
.y1c8{bottom:12.295239px;}
.y180{bottom:13.163584px;}
.y182{bottom:13.163591px;}
.y10a{bottom:13.477828px;}
.y222{bottom:13.911829px;}
.yd{bottom:16.020000px;}
.yce{bottom:16.200000px;}
.y76{bottom:16.266225px;}
.y77{bottom:16.266226px;}
.y123{bottom:16.413460px;}
.y13b{bottom:16.511626px;}
.y1b7{bottom:16.621206px;}
.y1a7{bottom:16.621274px;}
.y1ff{bottom:16.874037px;}
.yb{bottom:16.920000px;}
.y1a0{bottom:16.984942px;}
.yba{bottom:16.984943px;}
.y152{bottom:16.984947px;}
.y1aa{bottom:16.984952px;}
.y1b1{bottom:16.984957px;}
.yf6{bottom:17.098092px;}
.yd9{bottom:17.098108px;}
.y11e{bottom:17.098124px;}
.y145{bottom:17.098158px;}
.y141{bottom:17.098159px;}
.y20d{bottom:17.436949px;}
.y15c{bottom:17.592003px;}
.yc{bottom:17.640000px;}
.y102{bottom:17.911232px;}
.y107{bottom:17.911245px;}
.y113{bottom:17.945006px;}
.y131{bottom:18.189410px;}
.y14b{bottom:18.223928px;}
.y14d{bottom:18.223946px;}
.y209{bottom:18.327336px;}
.y213{bottom:18.511779px;}
.y21c{bottom:18.511835px;}
.y221{bottom:18.511845px;}
.y231{bottom:19.094212px;}
.ya9{bottom:19.260000px;}
.ya7{bottom:19.440000px;}
.y6e{bottom:19.493424px;}
.ydc{bottom:20.491693px;}
.y229{bottom:20.546226px;}
.y1e6{bottom:20.588310px;}
.y128{bottom:20.599723px;}
.y7{bottom:20.700000px;}
.y18c{bottom:21.193718px;}
.y193{bottom:21.193735px;}
.y14f{bottom:21.229646px;}
.y1a3{bottom:21.229653px;}
.y154{bottom:21.229656px;}
.y156{bottom:21.229667px;}
.ybc{bottom:21.229696px;}
.y1a2{bottom:21.229700px;}
.y1ac{bottom:21.229705px;}
.yc0{bottom:21.229715px;}
.y1a5{bottom:21.229717px;}
.y9b{bottom:21.600000px;}
.y7a{bottom:21.717069px;}
.y79{bottom:21.717081px;}
.y161{bottom:21.772562px;}
.y115{bottom:22.069960px;}
.y119{bottom:22.069977px;}
.y18a{bottom:22.860000px;}
.y208{bottom:22.947334px;}
.y206{bottom:22.947336px;}
.y205{bottom:22.947340px;}
.ya1{bottom:23.400000px;}
.y194{bottom:24.120000px;}
.y97{bottom:24.660000px;}
.y46{bottom:24.973159px;}
.y39{bottom:25.473699px;}
.y22e{bottom:25.688575px;}
.yff{bottom:25.883388px;}
.y70{bottom:26.025697px;}
.y6d{bottom:26.025716px;}
.y217{bottom:26.093512px;}
.y21e{bottom:26.093514px;}
.y219{bottom:26.682456px;}
.yfd{bottom:27.527335px;}
.y104{bottom:27.527338px;}
.y109{bottom:27.527341px;}
.y4{bottom:27.900000px;}
.y12c{bottom:28.751633px;}
.y18f{bottom:29.431733px;}
.y151{bottom:29.431750px;}
.y15a{bottom:29.846759px;}
.yaa{bottom:31.140000px;}
.y3a{bottom:31.268395px;}
.ya5{bottom:31.320000px;}
.y18d{bottom:32.770947px;}
.yc2{bottom:32.806900px;}
.y1a8{bottom:32.806901px;}
.y1b0{bottom:32.806909px;}
.y1b6{bottom:32.806913px;}
.y1bc{bottom:32.806914px;}
.y11b{bottom:33.314995px;}
.y234{bottom:33.406653px;}
.y204{bottom:34.639435px;}
.y1e8{bottom:34.690445px;}
.y78{bottom:35.474863px;}
.y230{bottom:37.282877px;}
.y236{bottom:37.971751px;}
.y195{bottom:38.340000px;}
.y21d{bottom:39.342877px;}
.y190{bottom:39.847490px;}
.ybd{bottom:39.883430px;}
.y150{bottom:39.883436px;}
.y1ad{bottom:39.883441px;}
.y1b3{bottom:39.883447px;}
.y1b8{bottom:39.883450px;}
.y15e{bottom:40.048416px;}
.y116{bottom:40.190831px;}
.y103{bottom:40.432876px;}
.y6c{bottom:42.252125px;}
.y6f{bottom:42.252137px;}
.y44{bottom:42.606522px;}
.y1cb{bottom:42.949542px;}
.y215{bottom:43.574627px;}
.y220{bottom:43.574633px;}
.y21b{bottom:43.574639px;}
.yfc{bottom:44.544966px;}
.y106{bottom:44.544975px;}
.y101{bottom:44.544983px;}
.y6{bottom:45.360000px;}
.y207{bottom:45.380642px;}
.y125{bottom:45.456290px;}
.y12a{bottom:45.456307px;}
.y232{bottom:46.196398px;}
.y158{bottom:46.502107px;}
.y163{bottom:46.502138px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y218{bottom:51.781668px;}
.yfe{bottom:52.517111px;}
.y223{bottom:54.175349px;}
.y127{bottom:55.137703px;}
.y160{bottom:56.198302px;}
.y3d{bottom:56.941869px;}
.y3b{bottom:56.941888px;}
.y3f{bottom:56.941903px;}
.y41{bottom:56.941917px;}
.y129{bottom:59.687238px;}
.y162{bottom:60.704454px;}
.y216{bottom:62.160795px;}
.y108{bottom:62.634579px;}
.y12d{bottom:67.803124px;}
.y15b{bottom:68.778651px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y2c6{bottom:133.956000px;}
.y19e{bottom:136.656000px;}
.y210{bottom:149.076000px;}
.y284{bottom:150.510000px;}
.y2c5{bottom:157.710000px;}
.y95{bottom:157.890000px;}
.y19d{bottom:160.410000px;}
.y37{bottom:163.650000px;}
.y20f{bottom:168.765000px;}
.y20b{bottom:170.190000px;}
.y283{bottom:174.450000px;}
.yf9{bottom:177.150000px;}
.y20e{bottom:177.690000px;}
.y19b{bottom:180.089980px;}
.y94{bottom:181.650000px;}
.y2c4{bottom:183.990000px;}
.y19a{bottom:184.530000px;}
.y36{bottom:187.410000px;}
.yf5{bottom:196.815000px;}
.y282{bottom:198.210000px;}
.y202{bottom:200.414980px;}
.y93{bottom:205.410000px;}
.yf4{bottom:205.770000px;}
.y2c3{bottom:207.750000px;}
.y199{bottom:208.650000px;}
.y35{bottom:211.350000px;}
.y281{bottom:221.970000px;}
.y20a{bottom:222.870000px;}
.yf2{bottom:228.314980px;}
.y92{bottom:229.350000px;}
.y2c2{bottom:231.870000px;}
.y198{bottom:232.410000px;}
.yf1{bottom:232.770000px;}
.y34{bottom:235.110000px;}
.y280{bottom:245.730000px;}
.y8e{bottom:248.864980px;}
.y2c1{bottom:255.630000px;}
.y197{bottom:256.170000px;}
.y91{bottom:257.790000px;}
.yf0{bottom:258.150000px;}
.y33{bottom:258.870000px;}
.y201{bottom:263.190000px;}
.y27f{bottom:269.490000px;}
.y2c0{bottom:279.570000px;}
.y196{bottom:280.110000px;}
.y8d{bottom:280.364980px;}
.yef{bottom:282.135000px;}
.y32{bottom:282.675000px;}
.y200{bottom:286.995000px;}
.y8c{bottom:287.895000px;}
.y27e{bottom:293.475000px;}
.y189{bottom:296.535000px;}
.y18b{bottom:299.639980px;}
.y2bf{bottom:303.375000px;}
.yee{bottom:305.895000px;}
.y31{bottom:306.435000px;}
.y1fd{bottom:306.464980px;}
.y89{bottom:310.589980px;}
.y27d{bottom:312.915000px;}
.y87{bottom:313.664980px;}
.y1fc{bottom:313.995000px;}
.y86{bottom:318.135000px;}
.y27c{bottom:320.475000px;}
.yed{bottom:322.995000px;}
.y2be{bottom:327.135000px;}
.y30{bottom:330.375000px;}
.y1fb{bottom:338.295000px;}
.y276{bottom:343.139959px;}
.y27a{bottom:344.640000px;}
.y85{bottom:344.955000px;}
.y2bd{bottom:350.895000px;}
.y279{bottom:352.155000px;}
.yec{bottom:353.955000px;}
.y2f{bottom:354.135000px;}
.y2e6{bottom:355.755000px;}
.y188{bottom:358.815000px;}
.y1fa{bottom:362.055000px;}
.y84{bottom:368.715000px;}
.y273{bottom:374.639959px;}
.y2bc{bottom:374.835000px;}
.y2e{bottom:377.895000px;}
.y2e5{bottom:379.335000px;}
.y275{bottom:382.215000px;}
.y187{bottom:382.575000px;}
.y1f9{bottom:385.815000px;}
.yea{bottom:386.535000px;}
.y83{bottom:392.475000px;}
.y2bb{bottom:398.595000px;}
.y2d{bottom:401.655000px;}
.y185{bottom:402.014959px;}
.y2e4{bottom:403.095000px;}
.y271{bottom:404.714959px;}
.y184{bottom:406.515000px;}
.y1f8{bottom:409.575000px;}
.y270{bottom:412.275000px;}
.y82{bottom:416.415000px;}
.ye9{bottom:417.675000px;}
.y2ba{bottom:422.355000px;}
.y2c{bottom:425.595000px;}
.y17e{bottom:426.539959px;}
.y2e3{bottom:426.855000px;}
.y1f7{bottom:433.515000px;}
.y26e{bottom:434.789959px;}
.y183{bottom:436.935000px;}
.y81{bottom:440.175000px;}
.y26d{bottom:442.335000px;}
.y2b9{bottom:446.115000px;}
.y2b{bottom:449.355000px;}
.ye8{bottom:450.435000px;}
.y2e2{bottom:450.795000px;}
.y17c{bottom:454.035000px;}
.y1f6{bottom:457.275000px;}
.y26c{bottom:462.314959px;}
.y269{bottom:463.740000px;}
.y80{bottom:463.935000px;}
.y17d{bottom:469.155000px;}
.y2b8{bottom:470.055000px;}
.y268{bottom:471.315000px;}
.y2a{bottom:473.115000px;}
.y2e1{bottom:474.555000px;}
.y1f5{bottom:481.035000px;}
.ye6{bottom:482.835000px;}
.y7f{bottom:487.695000px;}
.y178{bottom:488.640000px;}
.y265{bottom:493.814959px;}
.y267{bottom:493.815000px;}
.y174{bottom:494.564959px;}
.y29{bottom:496.875000px;}
.y173{bottom:499.035000px;}
.y2e0{bottom:501.195000px;}
.y264{bottom:501.375000px;}
.y1f4{bottom:504.795000px;}
.y7e{bottom:511.635000px;}
.ye4{bottom:513.615000px;}
.y2b7{bottom:517.215000px;}
.y16e{bottom:520.289959px;}
.y28{bottom:520.815000px;}
.y261{bottom:521.339959px;}
.y16b{bottom:523.364959px;}
.y16d{bottom:523.365000px;}
.y2df{bottom:524.955000px;}
.y16a{bottom:527.835000px;}
.y1f3{bottom:528.735000px;}
.y260{bottom:528.915000px;}
.y7d{bottom:535.395000px;}
.y2b6{bottom:541.335000px;}
.y27{bottom:544.575000px;}
.ye2{bottom:546.195000px;}
.y166{bottom:548.189959px;}
.y2de{bottom:548.715000px;}
.y1f2{bottom:552.495000px;}
.y25f{bottom:555.735000px;}
.y165{bottom:558.615000px;}
.y7c{bottom:559.155000px;}
.y2b5{bottom:565.125000px;}
.y26{bottom:568.365000px;}
.y2dd{bottom:572.685000px;}
.y1f1{bottom:576.285000px;}
.ye0{bottom:578.265000px;}
.y25e{bottom:579.525000px;}
.y157{bottom:579.689959px;}
.y164{bottom:581.145000px;}
.y7b{bottom:582.945000px;}
.y2b4{bottom:589.065000px;}
.y25{bottom:591.765000px;}
.y1ef{bottom:595.889959px;}
.y1ea{bottom:597.314959px;}
.y2dc{bottom:599.145000px;}
.y74{bottom:602.564959px;}
.y25d{bottom:603.285000px;}
.y1e9{bottom:604.905000px;}
.ycf{bottom:608.865000px;}
.yd1{bottom:611.939959px;}
.y2b3{bottom:612.825000px;}
.y24{bottom:616.065000px;}
.y73{bottom:620.565000px;}
.y25a{bottom:622.889959px;}
.y2db{bottom:622.905000px;}
.y1e5{bottom:627.389959px;}
.y259{bottom:630.465000px;}
.y2b2{bottom:636.585000px;}
.y1df{bottom:638.039959px;}
.y23{bottom:639.825000px;}
.ycd{bottom:641.265000px;}
.y2da{bottom:646.845000px;}
.y1de{bottom:648.465000px;}
.y258{bottom:657.285000px;}
.y2b1{bottom:660.345000px;}
.y22{bottom:663.585000px;}
.y14e{bottom:663.914959px;}
.y72{bottom:666.465000px;}
.y2d9{bottom:670.605000px;}
.y149{bottom:674.564959px;}
.y256{bottom:676.889959px;}
.y1dc{bottom:682.289959px;}
.y1d8{bottom:683.939919px;}
.y2b0{bottom:684.285000px;}
.y148{bottom:685.005000px;}
.y255{bottom:685.905000px;}
.y6a{bottom:687.164919px;}
.y21{bottom:687.345000px;}
.ycc{bottom:690.945000px;}
.y1db{bottom:694.365000px;}
.y2d8{bottom:697.245000px;}
.y71{bottom:705.165000px;}
.y2af{bottom:708.045000px;}
.y254{bottom:708.389919px;}
.yc9{bottom:710.339919px;}
.y20{bottom:711.285000px;}
.ycb{bottom:714.885000px;}
.y253{bottom:715.965000px;}
.y143{bottom:718.664919px;}
.y2d7{bottom:721.005000px;}
.y1d7{bottom:722.625000px;}
.y2ae{bottom:727.664919px;}
.y147{bottom:727.665000px;}
.y2ad{bottom:732.165000px;}
.y1f{bottom:735.045000px;}
.yc6{bottom:735.239919px;}
.y252{bottom:738.464919px;}
.yc5{bottom:742.785000px;}
.y2d6{bottom:744.765000px;}
.y251{bottom:746.025000px;}
.y1d6{bottom:746.565000px;}
.y13f{bottom:750.314919px;}
.y139{bottom:751.739919px;}
.y2a8{bottom:751.964919px;}
.y2a6{bottom:756.464919px;}
.y1e{bottom:758.805000px;}
.y13d{bottom:759.345000px;}
.y2a5{bottom:760.965000px;}
.y69{bottom:762.225000px;}
.yb9{bottom:765.464919px;}
.y24a{bottom:768.689919px;}
.y2d5{bottom:768.705000px;}
.y1d5{bottom:770.325000px;}
.y250{bottom:779.145000px;}
.yc3{bottom:782.039919px;}
.y1d{bottom:782.565000px;}
.y134{bottom:783.465000px;}
.y137{bottom:784.889919px;}
.y68{bottom:785.985000px;}
.yb8{bottom:786.525000px;}
.y2a4{bottom:787.785000px;}
.y136{bottom:792.465000px;}
.y1d4{bottom:794.085000px;}
.y2d4{bottom:795.165000px;}
.y245{bottom:800.189919px;}
.y64{bottom:805.439919px;}
.y1c{bottom:806.325000px;}
.y2a2{bottom:807.389919px;}
.y244{bottom:810.645000px;}
.y67{bottom:812.985000px;}
.y1cd{bottom:813.689919px;}
.y2a1{bottom:816.405000px;}
.y1d3{bottom:816.539919px;}
.y2d3{bottom:818.925000px;}
.y133{bottom:819.285000px;}
.y1d1{bottom:819.614919px;}
.y1d0{bottom:824.145000px;}
.yb7{bottom:824.505000px;}
.y1b{bottom:830.265000px;}
.y241{bottom:831.840000px;}
.y23e{bottom:834.914919px;}
.y61{bottom:835.439919px;}
.y130{bottom:838.889919px;}
.y240{bottom:839.445000px;}
.y2d2{bottom:842.865000px;}
.y60{bottom:843.045000px;}
.yb5{bottom:844.139919px;}
.y1c9{bottom:845.189919px;}
.y29e{bottom:846.465000px;}
.yb4{bottom:848.670000px;}
.y12f{bottom:849.390000px;}
.y1a{bottom:854.070000px;}
.y1c6{bottom:855.840000px;}
.y23a{bottom:859.215000px;}
.y1cc{bottom:866.310000px;}
.y2d1{bottom:866.850000px;}
.yb2{bottom:868.590000px;}
.y29a{bottom:869.114919px;}
.y239{bottom:869.730000px;}
.y5f{bottom:870.090000px;}
.y122{bottom:871.289919px;}
.yb0{bottom:873.090000px;}
.y19{bottom:877.470000px;}
.yaf{bottom:877.650000px;}
.y299{bottom:878.190000px;}
.y5e{bottom:889.664919px;}
.y5d{bottom:891.090000px;}
.y2d0{bottom:893.310000px;}
.y22d{bottom:895.215000px;}
.y237{bottom:895.290000px;}
.y5c{bottom:900.150000px;}
.y18{bottom:901.230000px;}
.yae{bottom:904.470000px;}
.y298{bottom:905.010000px;}
.y12e{bottom:916.350000px;}
.y2cf{bottom:917.070000px;}
.y1c5{bottom:917.250000px;}
.y238{bottom:920.850000px;}
.y294{bottom:924.389919px;}
.y17{bottom:925.530000px;}
.y5b{bottom:926.970000px;}
.yad{bottom:928.230000px;}
.y296{bottom:932.010000px;}
.y1c3{bottom:936.614919px;}
.y2ce{bottom:940.830000px;}
.y1c2{bottom:941.190000px;}
.yac{bottom:945.330000px;}
.y16{bottom:949.290000px;}
.y5a{bottom:950.730000px;}
.y121{bottom:958.830000px;}
.y293{bottom:959.010000px;}
.y22c{bottom:959.910000px;}
.y2cd{bottom:964.770000px;}
.y1c1{bottom:965.850000px;}
.y55{bottom:970.289919px;}
.y50{bottom:971.715000px;}
.y15{bottom:972.690000px;}
.y112{bottom:978.389919px;}
.y4f{bottom:980.790000px;}
.y292{bottom:982.770000px;}
.y22b{bottom:983.670000px;}
.y1c0{bottom:989.610000px;}
.y2cc{bottom:991.230000px;}
.y11d{bottom:991.889919px;}
.y110{bottom:993.314919px;}
.ya8{bottom:993.750000px;}
.y14{bottom:996.450000px;}
.y11c{bottom:1000.950000px;}
.y28c{bottom:1002.314919px;}
.y4c{bottom:1003.439919px;}
.y226{bottom:1003.739919px;}
.y4a{bottom:1004.864919px;}
.y22a{bottom:1007.610000px;}
.y28b{bottom:1011.390000px;}
.y49{bottom:1012.470000px;}
.y225{bottom:1012.830000px;}
.y1bf{bottom:1013.370000px;}
.y2cb{bottom:1015.170000px;}
.y13{bottom:1020.750000px;}
.y10d{bottom:1033.139919px;}
.y212{bottom:1034.939919px;}
.y224{bottom:1034.970000px;}
.y1be{bottom:1037.310000px;}
.y10c{bottom:1037.670000px;}
.y28a{bottom:1038.210000px;}
.y48{bottom:1039.290000px;}
.y2ca{bottom:1041.630000px;}
.ya4{bottom:1041.990000px;}
.y12{bottom:1044.510000px;}
.y286{bottom:1057.589919px;}
.yfa{bottom:1058.114919px;}
.y38{bottom:1058.864919px;}
.y1bd{bottom:1061.070000px;}
.y289{bottom:1065.210000px;}
.y2c9{bottom:1065.570000px;}
.y11{bottom:1067.910000px;}
.y10b{bottom:1076.190000px;}
.y19f{bottom:1080.614919px;}
.y47{bottom:1081.410000px;}
.y2c8{bottom:1089.330000px;}
.y96{bottom:1090.410000px;}
.y10{bottom:1091.670000px;}
.y285{bottom:1092.030000px;}
.y1a9{bottom:1101.750000px;}
.y98{bottom:1102.964919px;}
.y9c{bottom:1104.389919px;}
.y9f{bottom:1110.689919px;}
.y2c7{bottom:1113.270000px;}
.yf{bottom:1115.610000px;}
.y211{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h3c{height:17.249294px;}
.hae{height:17.249315px;}
.h97{height:17.249335px;}
.h3e{height:17.249376px;}
.he6{height:17.323894px;}
.ha9{height:17.324933px;}
.hb8{height:17.324974px;}
.hf2{height:18.675438px;}
.h14{height:18.675520px;}
.hed{height:18.749999px;}
.h35{height:18.750040px;}
.h3a{height:21.749901px;}
.h2f{height:21.749922px;}
.h9f{height:21.749942px;}
.h48{height:21.749983px;}
.h4b{height:21.824502px;}
.h5c{height:22.499053px;}
.hc2{height:22.499638px;}
.h7e{height:22.499699px;}
.he8{height:23.249877px;}
.h9a{height:23.249918px;}
.hcc{height:23.250216px;}
.h68{height:23.250298px;}
.hef{height:26.999579px;}
.h31{height:26.999599px;}
.hc0{height:26.999620px;}
.h20{height:26.999660px;}
.h5e{height:28.424348px;}
.h50{height:28.424389px;}
.h1c{height:28.424429px;}
.h19{height:28.424718px;}
.h32{height:28.424738px;}
.h4f{height:28.424759px;}
.h16{height:28.424800px;}
.hf0{height:28.500359px;}
.h80{height:28.500400px;}
.h88{height:29.325029px;}
.h7b{height:29.325070px;}
.h54{height:29.880000px;}
.h57{height:30.060000px;}
.h5b{height:30.240000px;}
.h5a{height:30.420000px;}
.h6c{height:30.734790px;}
.h64{height:30.744358px;}
.h91{height:31.000312px;}
.h75{height:31.298716px;}
.h55{height:31.356000px;}
.h4e{height:31.500000px;}
.hd4{height:31.541390px;}
.h41{height:31.638576px;}
.h58{height:31.680000px;}
.h56{height:31.860000px;}
.h59{height:32.040000px;}
.h96{height:32.375005px;}
.he9{height:32.386985px;}
.hbd{height:32.416927px;}
.heb{height:32.439061px;}
.ha3{height:32.461458px;}
.he5{height:32.563503px;}
.hb7{height:32.593602px;}
.hb0{height:32.924681px;}
.hbb{height:32.924799px;}
.h8{height:33.120000px;}
.ha4{height:35.249947px;}
.h9c{height:37.104815px;}
.hb3{height:37.432947px;}
.h8a{height:39.917050px;}
.h7c{height:40.053840px;}
.ha7{height:40.361553px;}
.h6e{height:40.702830px;}
.h1d{height:40.706478px;}
.h66{height:40.715501px;}
.h71{height:40.723091px;}
.h51{height:40.726740px;}
.h61{height:40.735767px;}
.h92{height:41.054467px;}
.h8f{height:41.074902px;}
.h33{height:41.076000px;}
.h4d{height:41.400000px;}
.h78{height:41.449651px;}
.h7a{height:41.470283px;}
.hd7{height:41.771030px;}
.hd1{height:41.791822px;}
.h43{height:41.899735px;}
.h46{height:41.920591px;}
.he2{height:41.973669px;}
.he0{height:41.994562px;}
.hcb{height:42.342097px;}
.h3b{height:42.820401px;}
.h1a{height:42.841716px;}
.hda{height:42.934290px;}
.h17{height:42.967645px;}
.h34{height:42.989032px;}
.h21{height:43.089018px;}
.h82{height:43.103369px;}
.hb1{height:47.151399px;}
.h39{height:47.520000px;}
.h38{height:47.700000px;}
.h2b{height:49.946625px;}
.h36{height:50.132529px;}
.hc4{height:50.624741px;}
.h95{height:51.127504px;}
.he4{height:51.128091px;}
.hbf{height:51.824100px;}
.h6a{height:51.824141px;}
.hac{height:51.824342px;}
.h8b{height:51.824363px;}
.h3f{height:51.824404px;}
.hce{height:52.313609px;}
.h62{height:52.614497px;}
.hbe{height:52.631499px;}
.h6d{height:52.716644px;}
.h76{height:53.669936px;}
.hd2{height:54.056820px;}
.h42{height:54.266827px;}
.he1{height:54.289494px;}
.hab{height:54.720000px;}
.hc8{height:54.812473px;}
.hc5{height:55.423415px;}
.hd8{height:55.536630px;}
.hc9{height:56.312969px;}
.h28{height:56.326610px;}
.h99{height:56.916259px;}
.h52{height:56.962620px;}
.ha0{height:56.974966px;}
.hdc{height:57.114122px;}
.h15{height:57.207674px;}
.h10{height:57.667291px;}
.h13{height:57.695995px;}
.hde{height:57.826564px;}
.h25{height:59.855887px;}
.h98{height:59.867399px;}
.he7{height:60.076297px;}
.hb9{height:60.103414px;}
.hb4{height:60.964470px;}
.hb{height:61.101562px;}
.ha5{height:63.404787px;}
.hc{height:63.457031px;}
.h9b{height:63.594374px;}
.h9d{height:63.626029px;}
.hb5{height:64.424301px;}
.h2e{height:64.561958px;}
.hc3{height:65.257156px;}
.ha8{height:65.269938px;}
.h7f{height:65.289638px;}
.h9{height:65.884219px;}
.hec{height:66.127858px;}
.hee{height:66.391727px;}
.hcd{height:67.434169px;}
.h69{height:67.467735px;}
.h23{height:67.501674px;}
.hba{height:68.451036px;}
.h89{height:68.485108px;}
.h7d{height:68.592277px;}
.h65{height:69.678658px;}
.h1f{height:69.701175px;}
.h60{height:69.713341px;}
.h86{height:69.735869px;}
.h70{height:69.813934px;}
.h1e{height:69.839517px;}
.h72{height:69.848685px;}
.h84{height:69.874280px;}
.hbc{height:70.010225px;}
.h94{height:70.398753px;}
.h8e{height:70.433795px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h79{height:71.076402px;}
.hd5{height:71.588762px;}
.ha{height:71.613281px;}
.hd0{height:71.624396px;}
.h30{height:71.844197px;}
.h45{height:71.866879px;}
.he3{height:71.896898px;}
.h47{height:71.902651px;}
.hdf{height:71.932685px;}
.ha1{height:71.987933px;}
.haf{height:72.054482px;}
.h4c{height:72.090348px;}
.h3{height:72.562500px;}
.hc6{height:72.589491px;}
.hca{height:72.625623px;}
.hcf{height:73.423302px;}
.hd{height:73.423799px;}
.h1b{height:73.426916px;}
.h53{height:73.463465px;}
.h18{height:73.572942px;}
.hf4{height:73.609564px;}
.hdb{height:73.622207px;}
.h37{height:73.718968px;}
.hf1{height:73.768622px;}
.h81{height:73.805341px;}
.h22{height:73.850769px;}
.h49{height:73.887529px;}
.hc1{height:73.997638px;}
.h5f{height:74.323749px;}
.hf{height:74.688321px;}
.h3d{height:75.057859px;}
.haa{height:75.386813px;}
.h26{height:77.370859px;}
.h63{height:78.921745px;}
.h6b{height:79.077121px;}
.h9e{height:79.745733px;}
.h90{height:79.790222px;}
.h73{height:80.250948px;}
.h74{height:80.558272px;}
.hb2{height:80.736731px;}
.hea{height:80.947299px;}
.h8d{height:80.999236px;}
.hd3{height:81.139198px;}
.h40{height:81.402458px;}
.h4{height:82.635820px;}
.hdd{height:84.337031px;}
.h2c{height:85.500972px;}
.h29{height:85.543531px;}
.ha6{height:86.438567px;}
.hf6{height:86.585445px;}
.hb6{height:86.965341px;}
.h87{height:87.510574px;}
.ha2{height:87.511161px;}
.h85{height:87.791705px;}
.h67{height:90.910405px;}
.h93{height:91.807599px;}
.hf3{height:92.226213px;}
.hf5{height:92.371619px;}
.h4a{height:92.606992px;}
.h83{height:92.617919px;}
.h77{height:92.837824px;}
.h8c{height:93.723159px;}
.h5d{height:97.901351px;}
.h2a{height:98.234007px;}
.h27{height:98.663282px;}
.hc7{height:101.580922px;}
.h24{height:102.464110px;}
.h2{height:109.800000px;}
.he{height:112.035534px;}
.h2d{height:119.593212px;}
.hd6{height:123.771652px;}
.h11{height:128.789191px;}
.h5{height:129.250898px;}
.h6f{height:138.068793px;}
.h44{height:142.124046px;}
.had{height:142.125243px;}
.hd9{height:142.664062px;}
.h12{height:195.214605px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3f{width:14.923977px;}
.w29{width:14.999594px;}
.w7{width:17.100000px;}
.wc{width:17.249624px;}
.w7d{width:17.249644px;}
.w9{width:17.280000px;}
.w22{width:17.325244px;}
.w8{width:17.496000px;}
.wf{width:18.674589px;}
.w28{width:18.674745px;}
.w78{width:18.675608px;}
.wd{width:18.675628px;}
.w53{width:18.750129px;}
.w13{width:18.750149px;}
.w12{width:18.750265px;}
.w62{width:18.750285px;}
.w41{width:18.750306px;}
.we{width:18.750346px;}
.w14{width:21.749505px;}
.w10{width:21.749545px;}
.w5d{width:21.750648px;}
.w74{width:22.499312px;}
.w38{width:22.499333px;}
.w27{width:22.499373px;}
.w26{width:22.499518px;}
.w34{width:22.499559px;}
.w16{width:22.499600px;}
.w71{width:23.174515px;}
.w83{width:23.174555px;}
.w88{width:23.250134px;}
.w7f{width:23.250155px;}
.w85{width:23.250196px;}
.w67{width:23.250492px;}
.w1c{width:27.000255px;}
.w80{width:27.000265px;}
.w36{width:27.000286px;}
.w3d{width:27.000595px;}
.w17{width:28.423920px;}
.w6a{width:28.423930px;}
.w1b{width:28.423950px;}
.w72{width:28.424079px;}
.w7e{width:28.499508px;}
.w11{width:29.325412px;}
.w84{width:29.325453px;}
.w87{width:29.325494px;}
.w15{width:29.399973px;}
.w20{width:32.999701px;}
.w1e{width:35.249841px;}
.w31{width:42.300000px;}
.w1a{width:43.501304px;}
.w25{width:43.575836px;}
.w69{width:45.000135px;}
.w59{width:45.000157px;}
.w2d{width:46.425187px;}
.w58{width:46.425218px;}
.w45{width:50.249988px;}
.w6{width:50.400000px;}
.w77{width:51.675490px;}
.w52{width:51.823399px;}
.w3b{width:51.823439px;}
.w32{width:52.416000px;}
.w55{width:55.424886px;}
.w8f{width:57.750349px;}
.w42{width:59.175708px;}
.w8c{width:59.175728px;}
.w4{width:61.590000px;}
.w33{width:62.640000px;}
.w37{width:62.856000px;}
.w6d{width:62.998759px;}
.w6c{width:63.675034px;}
.w8a{width:63.676017px;}
.w81{width:63.676038px;}
.w39{width:66.060000px;}
.w57{width:67.500786px;}
.w70{width:67.500806px;}
.w54{width:67.501413px;}
.w95{width:68.925942px;}
.w35{width:73.080000px;}
.w91{width:73.424223px;}
.w8b{width:73.425400px;}
.w6e{width:73.425421px;}
.w2b{width:74.322188px;}
.w56{width:74.397745px;}
.w4e{width:74.997095px;}
.w5b{width:75.076017px;}
.w40{width:75.076058px;}
.w68{width:75.751000px;}
.w90{width:80.327380px;}
.w7b{width:80.998442px;}
.w48{width:83.851880px;}
.w4a{width:83.851901px;}
.w49{width:84.750828px;}
.w4d{width:84.825390px;}
.w93{width:84.826429px;}
.w4c{width:85.501095px;}
.w94{width:85.502134px;}
.w44{width:85.502154px;}
.w4b{width:85.502175px;}
.w8e{width:86.928401px;}
.w92{width:86.928422px;}
.w82{width:86.928442px;}
.w8d{width:87.002945px;}
.w3a{width:88.236000px;}
.w96{width:89.250648px;}
.w2c{width:89.250729px;}
.wa{width:92.340000px;}
.w5e{width:93.060000px;}
.w50{width:93.077808px;}
.w2e{width:93.960000px;}
.w6f{width:95.251347px;}
.w23{width:96.156000px;}
.w6b{width:96.677959px;}
.w63{width:98.247525px;}
.w7c{width:100.422585px;}
.w97{width:100.422616px;}
.w3c{width:100.620000px;}
.w2a{width:103.500183px;}
.w89{width:104.174430px;}
.w61{width:106.380000px;}
.w43{width:106.569527px;}
.w24{width:107.100000px;}
.w5c{width:107.250720px;}
.w73{width:115.495058px;}
.w86{width:117.677695px;}
.w21{width:117.720000px;}
.w19{width:124.347777px;}
.w64{width:124.578145px;}
.w2{width:125.856000px;}
.w1f{width:128.556000px;}
.w47{width:129.070460px;}
.w79{width:129.751856px;}
.w4f{width:140.174360px;}
.w7a{width:140.249941px;}
.w18{width:140.931863px;}
.w51{width:142.495093px;}
.w65{width:151.583795px;}
.w3e{width:152.241020px;}
.w5f{width:157.493003px;}
.w2f{width:158.970000px;}
.w5a{width:174.069221px;}
.w66{width:183.747699px;}
.w76{width:193.496747px;}
.w75{width:214.492916px;}
.w46{width:216.144700px;}
.w1d{width:266.070000px;}
.w30{width:457.095000px;}
.wb{width:506.862246px;}
.w60{width:521.025000px;}
.w3{width:705.525000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x57{left:3.612671px;}
.x2a{left:4.678567px;}
.x45{left:6.076906px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x2f{left:10.681141px;}
.x2d{left:12.556965px;}
.x7{left:14.580000px;}
.x8d{left:16.200000px;}
.x7c{left:17.472897px;}
.x41{left:18.610884px;}
.xde{left:19.626086px;}
.x4b{left:20.878497px;}
.x68{left:22.140000px;}
.x8c{left:23.220000px;}
.x1{left:25.199970px;}
.x8e{left:26.280000px;}
.x6{left:27.354000px;}
.x74{left:28.671969px;}
.x3{left:30.239973px;}
.x4e{left:31.428685px;}
.xcb{left:33.750119px;}
.x7e{left:35.050368px;}
.x8f{left:36.360000px;}
.xa4{left:37.688594px;}
.x47{left:39.050150px;}
.x62{left:40.494000px;}
.x67{left:42.300000px;}
.x65{left:43.380000px;}
.x6a{left:44.460000px;}
.x83{left:46.974000px;}
.x66{left:48.960000px;}
.x69{left:50.760000px;}
.x96{left:52.670572px;}
.xb6{left:53.782398px;}
.x64{left:55.260000px;}
.x28{left:56.522754px;}
.x73{left:57.703896px;}
.x79{left:59.044807px;}
.x75{left:60.366567px;}
.xa1{left:61.401377px;}
.x61{left:64.440000px;}
.xd8{left:65.528813px;}
.xa0{left:67.483622px;}
.xd5{left:68.619620px;}
.x76{left:69.647204px;}
.xbd{left:70.717094px;}
.x5{left:71.994000px;}
.xef{left:73.113914px;}
.xe8{left:74.143937px;}
.x5c{left:75.240000px;}
.xb8{left:76.870977px;}
.x7b{left:78.026220px;}
.xd4{left:79.498937px;}
.x59{left:81.900000px;}
.x4a{left:83.644529px;}
.x46{left:86.980082px;}
.x11c{left:88.234580px;}
.x24{left:93.964329px;}
.xd1{left:96.391332px;}
.x63{left:97.734000px;}
.x23{left:99.327429px;}
.x4c{left:100.837708px;}
.x43{left:102.620250px;}
.xf9{left:104.261722px;}
.x27{left:105.827153px;}
.x44{left:107.324522px;}
.xa9{left:111.375863px;}
.xbc{left:113.232387px;}
.x97{left:115.310162px;}
.xac{left:117.635641px;}
.xf3{left:118.843962px;}
.x55{left:119.916000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x94{left:132.565242px;}
.xf4{left:135.222113px;}
.x4d{left:136.739990px;}
.x95{left:140.140567px;}
.xce{left:153.579033px;}
.x54{left:154.649987px;}
.x42{left:156.089987px;}
.xa8{left:158.366206px;}
.xf8{left:163.535285px;}
.x7f{left:174.089987px;}
.xf2{left:176.659530px;}
.x22{left:179.573698px;}
.x1b{left:180.749987px;}
.x4f{left:183.089987px;}
.x21{left:184.938931px;}
.x9f{left:190.514980px;}
.x10e{left:195.764980px;}
.xf1{left:198.029987px;}
.xfd{left:199.469987px;}
.xc1{left:200.789980px;}
.xb7{left:202.709987px;}
.x12{left:204.149987px;}
.x82{left:206.490000px;}
.xa7{left:208.087692px;}
.xdf{left:210.089987px;}
.xd2{left:212.610000px;}
.x49{left:215.189980px;}
.xc2{left:219.449987px;}
.x80{left:222.690000px;}
.xd3{left:227.039980px;}
.x101{left:228.089987px;}
.x99{left:231.389980px;}
.x113{left:238.529987px;}
.x26{left:240.369860px;}
.xe3{left:244.469987px;}
.x9a{left:246.269987px;}
.xa5{left:247.739980px;}
.xe4{left:249.014980px;}
.x29{left:250.139980px;}
.x6b{left:251.714980px;}
.x10f{left:254.909987px;}
.xdc{left:256.589980px;}
.x11a{left:260.190000px;}
.x110{left:263.939980px;}
.x84{left:265.890000px;}
.x2b{left:267.329987px;}
.x1c{left:269.669739px;}
.xae{left:270.989980px;}
.x1e{left:274.318486px;}
.x115{left:278.189980px;}
.x15{left:279.569987px;}
.x25{left:285.855045px;}
.x13{left:288.749987px;}
.x6c{left:295.274987px;}
.xf0{left:296.354987px;}
.xa6{left:297.974987px;}
.x17{left:300.494987px;}
.xdd{left:301.574987px;}
.xe5{left:312.014987px;}
.x14{left:314.354987px;}
.x18{left:315.974987px;}
.x10d{left:317.954987px;}
.x85{left:319.035000px;}
.x48{left:321.734987px;}
.xbe{left:323.354987px;}
.x1a{left:327.674987px;}
.x114{left:329.294987px;}
.x98{left:333.074987px;}
.xc8{left:335.414987px;}
.xff{left:338.340000px;}
.x16{left:339.374987px;}
.x19{left:344.414987px;}
.x11b{left:349.454987px;}
.x111{left:350.894987px;}
.xee{left:353.939959px;}
.xaf{left:355.754987px;}
.x92{left:359.564959px;}
.x116{left:365.114987px;}
.x1d{left:366.269757px;}
.x117{left:369.614959px;}
.xe0{left:373.214959px;}
.xc3{left:374.339959px;}
.x81{left:382.575000px;}
.x93{left:384.194987px;}
.x58{left:386.715000px;}
.xc9{left:390.854987px;}
.xe1{left:392.834987px;}
.xf5{left:395.354987px;}
.xaa{left:396.974987px;}
.x1f{left:398.235187px;}
.xca{left:399.839959px;}
.x102{left:406.739959px;}
.x86{left:407.789959px;}
.xd6{left:412.634987px;}
.x20{left:413.908714px;}
.xab{left:416.414959px;}
.xd7{left:421.664959px;}
.xe7{left:424.514959px;}
.x107{left:425.639959px;}
.x100{left:427.214987px;}
.x56{left:433.364959px;}
.xb9{left:440.714987px;}
.xc4{left:441.794987px;}
.xcc{left:444.854987px;}
.xba{left:449.714959px;}
.xb0{left:451.694987px;}
.xcd{left:453.839959px;}
.x88{left:456.375000px;}
.x118{left:458.940000px;}
.xb1{left:461.639959px;}
.xe6{left:466.454987px;}
.x9b{left:471.689959px;}
.x87{left:474.239959px;}
.xfb{left:477.614959px;}
.xbf{left:483.239959px;}
.x108{left:485.564959px;}
.x10a{left:487.874987px;}
.x37{left:489.315000px;}
.x52{left:495.089959px;}
.x71{left:496.139959px;}
.x38{left:509.144987px;}
.x105{left:511.139959px;}
.xc5{left:512.384987px;}
.x109{left:514.004987px;}
.x5b{left:515.985000px;}
.x103{left:517.740000px;}
.x39{left:519.389959px;}
.xc6{left:521.339959px;}
.x53{left:523.544987px;}
.xfc{left:529.304987px;}
.xe9{left:531.824987px;}
.xfe{left:534.690000px;}
.xc0{left:535.964987px;}
.x3a{left:539.384987px;}
.x106{left:541.184987px;}
.xbb{left:542.804987px;}
.x90{left:544.064959px;}
.xad{left:545.504987px;}
.x9c{left:546.764987px;}
.x3b{left:549.464959px;}
.xea{left:552.839959px;}
.xb2{left:556.439959px;}
.x5a{left:558.240000px;}
.xdb{left:559.364987px;}
.x9d{left:561.839959px;}
.x72{left:569.789959px;}
.x91{left:571.064987px;}
.x3c{left:572.324987px;}
.xe2{left:575.714959px;}
.xd9{left:577.740000px;}
.x9e{left:580.604987px;}
.x3d{left:582.539959px;}
.xc7{left:595.724987px;}
.x89{left:605.039959px;}
.xfa{left:606.884987px;}
.xed{left:609.224987px;}
.x3e{left:613.184987px;}
.xb{left:619.305000px;}
.x112{left:621.644987px;}
.xcf{left:627.944987px;}
.xeb{left:632.414959px;}
.x5e{left:634.605000px;}
.x119{left:635.864987px;}
.xd0{left:636.915000px;}
.x104{left:638.024987px;}
.xb3{left:643.064987px;}
.x8b{left:650.085000px;}
.xb4{left:652.964959px;}
.x2c{left:667.364959px;}
.xc{left:669.705000px;}
.x5d{left:673.814959px;}
.x77{left:675.104987px;}
.x6d{left:681.540000px;}
.x8a{left:682.814919px;}
.xd{left:686.805000px;}
.xf6{left:690.539919px;}
.x78{left:696.314919px;}
.xa2{left:699.239919px;}
.xe{left:704.310000px;}
.x10b{left:708.014919px;}
.x50{left:711.089919px;}
.xf7{left:713.129987px;}
.x2e{left:714.314919px;}
.xf{left:721.590000px;}
.xa3{left:725.369987px;}
.x7a{left:728.564919px;}
.x60{left:731.490000px;}
.x30{left:733.649987px;}
.x51{left:736.709987px;}
.x10{left:738.870000px;}
.xec{left:739.949987px;}
.x31{left:743.339919px;}
.xb5{left:749.414919px;}
.x10c{left:752.909987px;}
.x6e{left:759.029987px;}
.xda{left:761.549987px;}
.x32{left:762.809987px;}
.x33{left:772.289919px;}
.x5f{left:774.089919px;}
.x34{left:794.669987px;}
.x35{left:804.165000px;}
.x3f{left:811.889919px;}
.x7d{left:818.609987px;}
.x6f{left:821.264919px;}
.x8{left:831.390000px;}
.x36{left:834.269987px;}
.x40{left:835.529987px;}
.x70{left:840.029987px;}
@media print{
.v1{vertical-align:-64.999286pt;}
.v7{vertical-align:-48.848793pt;}
.vd{vertical-align:-45.032613pt;}
.ve{vertical-align:-43.447243pt;}
.v11{vertical-align:-34.475292pt;}
.v17{vertical-align:-29.290699pt;}
.vf{vertical-align:-28.371561pt;}
.vc{vertical-align:-22.772477pt;}
.v1a{vertical-align:-19.633314pt;}
.v19{vertical-align:-18.337584pt;}
.v10{vertical-align:-15.830577pt;}
.v14{vertical-align:-9.245124pt;}
.v4{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:5.120000pt;}
.v12{vertical-align:9.245124pt;}
.v16{vertical-align:11.465162pt;}
.v13{vertical-align:14.356763pt;}
.va{vertical-align:16.385549pt;}
.v1d{vertical-align:18.560000pt;}
.v3{vertical-align:22.383239pt;}
.v15{vertical-align:25.076222pt;}
.v1c{vertical-align:26.957113pt;}
.v6{vertical-align:34.468979pt;}
.v1b{vertical-align:41.571955pt;}
.vb{vertical-align:44.617693pt;}
.v9{vertical-align:46.065266pt;}
.v8{vertical-align:48.910961pt;}
.v2{vertical-align:63.219467pt;}
.ls9c{letter-spacing:-2.345620pt;}
.ls49{letter-spacing:-2.334785pt;}
.ls9a{letter-spacing:-2.332157pt;}
.ls4c{letter-spacing:-2.288368pt;}
.ls4f{letter-spacing:-2.272107pt;}
.ls48{letter-spacing:-2.272024pt;}
.ls9b{letter-spacing:-2.265997pt;}
.ls97{letter-spacing:-2.212535pt;}
.ls4a{letter-spacing:-2.209428pt;}
.ls99{letter-spacing:-2.199836pt;}
.ls4b{letter-spacing:-2.146749pt;}
.ls80{letter-spacing:-2.084070pt;}
.ls98{letter-spacing:-2.067515pt;}
.ls7e{letter-spacing:-2.019860pt;}
.ls81{letter-spacing:-1.963440pt;}
.ls4e{letter-spacing:-1.703202pt;}
.ls26{letter-spacing:-1.280000pt;}
.ls82{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.400533pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls7d{letter-spacing:-0.064288pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.099200pt;}
.ls63{letter-spacing:0.106667pt;}
.ls5f{letter-spacing:0.125107pt;}
.ls50{letter-spacing:0.126402pt;}
.ls59{letter-spacing:0.128640pt;}
.ls4d{letter-spacing:0.128785pt;}
.ls58{letter-spacing:0.160000pt;}
.ls46{letter-spacing:0.187660pt;}
.ls0{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.193178pt;}
.ls10{letter-spacing:0.239360pt;}
.ls1c{letter-spacing:0.240640pt;}
.ls55{letter-spacing:0.255974pt;}
.ls6e{letter-spacing:0.256000pt;}
.ls45{letter-spacing:0.317163pt;}
.ls1e{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.352302pt;}
.ls6b{letter-spacing:0.379207pt;}
.ls47{letter-spacing:0.384000pt;}
.ls67{letter-spacing:0.384760pt;}
.ls7c{letter-spacing:0.391809pt;}
.ls2b{letter-spacing:0.393798pt;}
.ls3f{letter-spacing:0.447196pt;}
.ls6d{letter-spacing:0.466431pt;}
.ls2f{letter-spacing:0.533143pt;}
.ls6a{letter-spacing:0.574774pt;}
.ls6c{letter-spacing:0.604427pt;}
.ls18{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.704000pt;}
.ls57{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.987191pt;}
.ls30{letter-spacing:1.135755pt;}
.ls43{letter-spacing:1.920000pt;}
.ls68{letter-spacing:2.192545pt;}
.ls11{letter-spacing:2.560000pt;}
.ls20{letter-spacing:5.120000pt;}
.lsd{letter-spacing:6.400000pt;}
.ls24{letter-spacing:7.200000pt;}
.ls2{letter-spacing:7.680000pt;}
.ls60{letter-spacing:8.002683pt;}
.ls44{letter-spacing:8.960000pt;}
.ls3{letter-spacing:9.600000pt;}
.ls5b{letter-spacing:9.871283pt;}
.ls64{letter-spacing:10.240000pt;}
.ls62{letter-spacing:12.160000pt;}
.ls13{letter-spacing:12.320000pt;}
.lse{letter-spacing:12.800000pt;}
.ls12{letter-spacing:13.440000pt;}
.ls96{letter-spacing:15.663360pt;}
.ls22{letter-spacing:16.000000pt;}
.ls1f{letter-spacing:19.840000pt;}
.ls23{letter-spacing:21.120000pt;}
.ls1{letter-spacing:21.760000pt;}
.ls7b{letter-spacing:22.458892pt;}
.ls65{letter-spacing:23.680000pt;}
.ls29{letter-spacing:24.960000pt;}
.ls8f{letter-spacing:25.868477pt;}
.ls85{letter-spacing:26.079907pt;}
.ls90{letter-spacing:26.085453pt;}
.ls8b{letter-spacing:26.133670pt;}
.ls88{letter-spacing:26.200382pt;}
.ls8e{letter-spacing:26.215765pt;}
.ls74{letter-spacing:26.240000pt;}
.ls93{letter-spacing:26.332703pt;}
.ls91{letter-spacing:26.354395pt;}
.ls86{letter-spacing:26.733525pt;}
.ls75{letter-spacing:26.880000pt;}
.ls8d{letter-spacing:27.022591pt;}
.ls95{letter-spacing:27.520000pt;}
.ls5c{letter-spacing:30.066625pt;}
.ls61{letter-spacing:30.720000pt;}
.ls3c{letter-spacing:30.819951pt;}
.ls3b{letter-spacing:31.198636pt;}
.ls3a{letter-spacing:31.325038pt;}
.lsf{letter-spacing:31.360000pt;}
.ls3d{letter-spacing:31.706856pt;}
.ls4{letter-spacing:32.000000pt;}
.ls5{letter-spacing:32.640000pt;}
.ls39{letter-spacing:33.157449pt;}
.ls76{letter-spacing:33.920000pt;}
.ls79{letter-spacing:34.560000pt;}
.ls84{letter-spacing:36.858700pt;}
.ls38{letter-spacing:37.435598pt;}
.ls77{letter-spacing:37.760000pt;}
.ls7f{letter-spacing:38.400000pt;}
.ls1d{letter-spacing:44.800000pt;}
.ls94{letter-spacing:45.440000pt;}
.ls35{letter-spacing:47.379069pt;}
.ls5e{letter-spacing:52.480000pt;}
.ls5a{letter-spacing:59.520000pt;}
.ls7a{letter-spacing:75.970072pt;}
.ls83{letter-spacing:80.128972pt;}
.ls78{letter-spacing:82.274964pt;}
.ls33{letter-spacing:84.456220pt;}
.ls5d{letter-spacing:84.663413pt;}
.ls3e{letter-spacing:89.769821pt;}
.ls42{letter-spacing:89.898606pt;}
.ls36{letter-spacing:90.284839pt;}
.ls40{letter-spacing:90.322675pt;}
.ls2a{letter-spacing:94.463766pt;}
.ls89{letter-spacing:98.738469pt;}
.ls8a{letter-spacing:99.868711pt;}
.ls8c{letter-spacing:100.869940pt;}
.ls87{letter-spacing:101.006120pt;}
.ls92{letter-spacing:101.404737pt;}
.ls54{letter-spacing:105.469934pt;}
.ls41{letter-spacing:119.697235pt;}
.ls70{letter-spacing:130.585218pt;}
.ls2c{letter-spacing:152.815453pt;}
.lsc{letter-spacing:173.240389pt;}
.ls21{letter-spacing:173.440000pt;}
.ls51{letter-spacing:177.930356pt;}
.ls56{letter-spacing:187.262509pt;}
.lsb{letter-spacing:187.771916pt;}
.ls15{letter-spacing:199.482465pt;}
.ls34{letter-spacing:222.357747pt;}
.ls1a{letter-spacing:226.672765pt;}
.ls71{letter-spacing:242.372505pt;}
.ls16{letter-spacing:245.411401pt;}
.ls32{letter-spacing:252.740018pt;}
.ls66{letter-spacing:254.125336pt;}
.ls19{letter-spacing:274.848124pt;}
.ls53{letter-spacing:276.515059pt;}
.ls72{letter-spacing:284.839170pt;}
.ls73{letter-spacing:286.108864pt;}
.ls52{letter-spacing:321.111196pt;}
.ls14{letter-spacing:334.705322pt;}
.ls6f{letter-spacing:469.449075pt;}
.ls37{letter-spacing:644.260015pt;}
.ws8{word-spacing:-49.205867pt;}
.ws65{word-spacing:-40.164374pt;}
.ws84{word-spacing:-36.738791pt;}
.ws36{word-spacing:-36.697925pt;}
.ws97{word-spacing:-36.600579pt;}
.ws8e{word-spacing:-36.527935pt;}
.ws22{word-spacing:-35.845186pt;}
.ws51{word-spacing:-35.794263pt;}
.ws7b{word-spacing:-35.766792pt;}
.ws17{word-spacing:-35.722793pt;}
.ws77{word-spacing:-35.613503pt;}
.ws11{word-spacing:-35.136000pt;}
.ws48{word-spacing:-35.021505pt;}
.ws6c{word-spacing:-34.828222pt;}
.ws39{word-spacing:-34.743300pt;}
.ws31{word-spacing:-34.674478pt;}
.ws69{word-spacing:-34.052567pt;}
.ws29{word-spacing:-33.546703pt;}
.ws86{word-spacing:-33.028116pt;}
.ws89{word-spacing:-32.896849pt;}
.ws33{word-spacing:-32.463697pt;}
.ws1{word-spacing:-21.280000pt;}
.ws56{word-spacing:-20.334132pt;}
.ws99{word-spacing:-19.040000pt;}
.ws4d{word-spacing:-17.422672pt;}
.ws94{word-spacing:-17.063430pt;}
.ws95{word-spacing:-17.055425pt;}
.ws92{word-spacing:-17.053220pt;}
.ws41{word-spacing:-16.972663pt;}
.ws90{word-spacing:-16.918693pt;}
.ws98{word-spacing:-16.786372pt;}
.ws2c{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.320000pt;}
.ws74{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.946132pt;}
.ws3{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.808000pt;}
.ws1b{word-spacing:-15.744000pt;}
.ws8c{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws13{word-spacing:-11.314716pt;}
.ws73{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.319467pt;}
.ws62{word-spacing:-2.230512pt;}
.ws44{word-spacing:-0.510987pt;}
.ws1e{word-spacing:-0.458867pt;}
.ws6e{word-spacing:-0.416093pt;}
.wsb{word-spacing:-0.404557pt;}
.ws60{word-spacing:-0.293942pt;}
.ws2a{word-spacing:-0.224542pt;}
.ws42{word-spacing:-0.193907pt;}
.ws71{word-spacing:-0.188368pt;}
.ws53{word-spacing:-0.163288pt;}
.wsf{word-spacing:-0.092847pt;}
.wsd{word-spacing:-0.089628pt;}
.ws5b{word-spacing:-0.078326pt;}
.ws14{word-spacing:-0.077476pt;}
.ws20{word-spacing:-0.066919pt;}
.ws35{word-spacing:-0.066845pt;}
.ws96{word-spacing:-0.066668pt;}
.ws24{word-spacing:-0.066535pt;}
.ws75{word-spacing:-0.065777pt;}
.ws21{word-spacing:-0.065292pt;}
.ws50{word-spacing:-0.065199pt;}
.ws7a{word-spacing:-0.065149pt;}
.ws43{word-spacing:-0.065122pt;}
.ws16{word-spacing:-0.065069pt;}
.ws76{word-spacing:-0.064870pt;}
.ws45{word-spacing:-0.063791pt;}
.ws6a{word-spacing:-0.063439pt;}
.ws38{word-spacing:-0.063285pt;}
.ws72{word-spacing:-0.063262pt;}
.ws3c{word-spacing:-0.063159pt;}
.ws25{word-spacing:-0.063139pt;}
.ws3e{word-spacing:-0.062027pt;}
.ws32{word-spacing:-0.059132pt;}
.ws4e{word-spacing:-0.057626pt;}
.ws10{word-spacing:-0.054238pt;}
.wsa{word-spacing:-0.052255pt;}
.ws5a{word-spacing:-0.045743pt;}
.ws1a{word-spacing:-0.039025pt;}
.ws19{word-spacing:-0.038935pt;}
.ws23{word-spacing:-0.038801pt;}
.ws5f{word-spacing:-0.037967pt;}
.ws78{word-spacing:-0.037851pt;}
.ws2b{word-spacing:-0.037559pt;}
.ws46{word-spacing:-0.037201pt;}
.ws26{word-spacing:-0.036894pt;}
.wse{word-spacing:-0.036886pt;}
.ws2d{word-spacing:-0.036277pt;}
.ws3f{word-spacing:-0.036153pt;}
.ws58{word-spacing:-0.032584pt;}
.ws7c{word-spacing:-0.026401pt;}
.ws49{word-spacing:-0.026275pt;}
.ws79{word-spacing:-0.000861pt;}
.ws5{word-spacing:0.000000pt;}
.ws4f{word-spacing:1.638134pt;}
.ws7f{word-spacing:1.962234pt;}
.ws82{word-spacing:2.020786pt;}
.ws3b{word-spacing:2.083590pt;}
.ws8f{word-spacing:2.133301pt;}
.ws8d{word-spacing:2.145615pt;}
.ws3a{word-spacing:2.146143pt;}
.ws93{word-spacing:2.199329pt;}
.ws34{word-spacing:2.205179pt;}
.ws52{word-spacing:2.208947pt;}
.ws3d{word-spacing:2.226341pt;}
.ws91{word-spacing:2.265622pt;}
.ws37{word-spacing:2.271501pt;}
.ws85{word-spacing:17.361258pt;}
.ws47{word-spacing:29.238125pt;}
.ws4c{word-spacing:37.869939pt;}
.ws81{word-spacing:44.681960pt;}
.ws7d{word-spacing:45.313971pt;}
.ws4a{word-spacing:45.434105pt;}
.ws80{word-spacing:51.863777pt;}
.ws5d{word-spacing:52.305898pt;}
.ws67{word-spacing:53.931514pt;}
.ws59{word-spacing:55.411470pt;}
.ws66{word-spacing:56.364840pt;}
.ws54{word-spacing:62.618544pt;}
.ws28{word-spacing:62.904186pt;}
.ws57{word-spacing:81.035253pt;}
.ws7e{word-spacing:84.893023pt;}
.ws6b{word-spacing:85.572589pt;}
.ws6d{word-spacing:85.696091pt;}
.ws68{word-spacing:101.151394pt;}
.ws83{word-spacing:105.825133pt;}
.ws70{word-spacing:115.772493pt;}
.ws6f{word-spacing:116.431561pt;}
.ws4b{word-spacing:127.049156pt;}
.ws88{word-spacing:132.782786pt;}
.ws64{word-spacing:134.102368pt;}
.ws8b{word-spacing:134.123616pt;}
.ws27{word-spacing:146.990184pt;}
.ws1d{word-spacing:148.053937pt;}
.ws40{word-spacing:156.129668pt;}
.ws87{word-spacing:170.852780pt;}
.ws8a{word-spacing:172.194719pt;}
.ws1c{word-spacing:213.221830pt;}
.ws5e{word-spacing:231.631703pt;}
.ws6{word-spacing:238.296008pt;}
.ws5c{word-spacing:314.186739pt;}
.ws55{word-spacing:319.310739pt;}
.ws9{word-spacing:366.800224pt;}
.ws7{word-spacing:378.350198pt;}
.ws61{word-spacing:420.048210pt;}
.ws63{word-spacing:515.402775pt;}
.ws2e{word-spacing:519.540802pt;}
.ws30{word-spacing:560.529271pt;}
.ws2f{word-spacing:591.538461pt;}
.wsc{word-spacing:1202.370355pt;}
._16{margin-left:-828.515514pt;}
._1a{margin-left:-732.793163pt;}
._1c{margin-left:-432.343055pt;}
._17{margin-left:-390.079420pt;}
._1d{margin-left:-374.092433pt;}
._1e{margin-left:-355.832807pt;}
._31{margin-left:-350.428068pt;}
._85{margin-left:-349.230728pt;}
._82{margin-left:-332.704485pt;}
._80{margin-left:-324.797805pt;}
._1b{margin-left:-322.731634pt;}
._81{margin-left:-319.606306pt;}
._2a{margin-left:-312.299656pt;}
._53{margin-left:-308.067100pt;}
._42{margin-left:-304.189891pt;}
._25{margin-left:-302.381666pt;}
._2f{margin-left:-300.067977pt;}
._b4{margin-left:-297.277628pt;}
._b1{margin-left:-296.008656pt;}
._b2{margin-left:-294.942920pt;}
._af{margin-left:-293.874980pt;}
._2c{margin-left:-292.084426pt;}
._a3{margin-left:-290.056102pt;}
._7c{margin-left:-281.570549pt;}
._7b{margin-left:-278.558501pt;}
._2d{margin-left:-274.960077pt;}
._70{margin-left:-271.559195pt;}
._43{margin-left:-260.150668pt;}
._4e{margin-left:-256.702063pt;}
._4c{margin-left:-254.687564pt;}
._55{margin-left:-253.356270pt;}
._6d{margin-left:-248.053407pt;}
._56{margin-left:-245.922649pt;}
._9d{margin-left:-241.268370pt;}
._72{margin-left:-237.833228pt;}
._5a{margin-left:-227.751560pt;}
._94{margin-left:-223.423576pt;}
._ad{margin-left:-221.768320pt;}
._57{margin-left:-218.019787pt;}
._5d{margin-left:-211.778662pt;}
._92{margin-left:-209.395953pt;}
._1f{margin-left:-206.679573pt;}
._5c{margin-left:-201.901527pt;}
._48{margin-left:-199.261527pt;}
._5e{margin-left:-198.004995pt;}
._7e{margin-left:-195.188378pt;}
._91{margin-left:-193.823193pt;}
._38{margin-left:-192.358587pt;}
._5b{margin-left:-190.646040pt;}
._7a{margin-left:-184.938773pt;}
._ac{margin-left:-183.678745pt;}
._30{margin-left:-177.666962pt;}
._59{margin-left:-176.343419pt;}
._aa{margin-left:-174.847665pt;}
._4d{margin-left:-172.696506pt;}
._b0{margin-left:-170.668332pt;}
._6c{margin-left:-167.796599pt;}
._39{margin-left:-166.212575pt;}
._51{margin-left:-164.296330pt;}
._47{margin-left:-163.202622pt;}
._3c{margin-left:-161.247575pt;}
._a0{margin-left:-157.494731pt;}
._58{margin-left:-156.257997pt;}
._76{margin-left:-154.780942pt;}
._74{margin-left:-152.073756pt;}
._a5{margin-left:-150.341356pt;}
._73{margin-left:-147.618850pt;}
._a2{margin-left:-145.974741pt;}
._8c{margin-left:-143.036333pt;}
._8a{margin-left:-142.006364pt;}
._9f{margin-left:-140.915702pt;}
._a6{margin-left:-139.458644pt;}
._87{margin-left:-136.830816pt;}
._89{margin-left:-134.905038pt;}
._29{margin-left:-133.546697pt;}
._9e{margin-left:-131.417840pt;}
._75{margin-left:-129.797881pt;}
._65{margin-left:-128.279274pt;}
._83{margin-left:-127.371054pt;}
._86{margin-left:-125.934191pt;}
._a4{margin-left:-123.821525pt;}
._99{margin-left:-122.596126pt;}
._66{margin-left:-119.755084pt;}
._2b{margin-left:-118.238788pt;}
._98{margin-left:-116.465449pt;}
._ae{margin-left:-115.463466pt;}
._a1{margin-left:-113.629243pt;}
._27{margin-left:-112.606356pt;}
._54{margin-left:-110.499177pt;}
._7d{margin-left:-109.223780pt;}
._24{margin-left:-107.033510pt;}
._67{margin-left:-104.088600pt;}
._2e{margin-left:-102.850311pt;}
._28{margin-left:-101.612494pt;}
._49{margin-left:-100.547815pt;}
._84{margin-left:-97.638503pt;}
._52{margin-left:-94.651303pt;}
._26{margin-left:-91.725600pt;}
._93{margin-left:-90.826587pt;}
._90{margin-left:-88.442612pt;}
._23{margin-left:-87.330985pt;}
._40{margin-left:-86.315476pt;}
._19{margin-left:-84.646040pt;}
._44{margin-left:-82.647624pt;}
._6e{margin-left:-81.339165pt;}
._64{margin-left:-79.483396pt;}
._46{margin-left:-78.577839pt;}
._22{margin-left:-77.223371pt;}
._69{margin-left:-74.530321pt;}
._6a{margin-left:-72.925716pt;}
._63{margin-left:-71.126813pt;}
._21{margin-left:-69.459551pt;}
._4f{margin-left:-65.986617pt;}
._20{margin-left:-59.278693pt;}
._b3{margin-left:-54.601610pt;}
._71{margin-left:-52.553468pt;}
._50{margin-left:-51.387609pt;}
._ab{margin-left:-50.258534pt;}
._45{margin-left:-48.801630pt;}
._68{margin-left:-47.275488pt;}
._6b{margin-left:-46.335603pt;}
._78{margin-left:-45.386395pt;}
._60{margin-left:-44.349313pt;}
._61{margin-left:-43.337915pt;}
._5f{margin-left:-42.390343pt;}
._62{margin-left:-39.071386pt;}
._4b{margin-left:-34.334263pt;}
._4a{margin-left:-30.002405pt;}
._77{margin-left:-28.735078pt;}
._79{margin-left:-27.534146pt;}
._6f{margin-left:-2.874791pt;}
._2{margin-left:-1.902080pt;}
._1{margin-left:-0.949120pt;}
._0{width:1.198080pt;}
._6{width:2.129920pt;}
._37{width:3.200000pt;}
._3e{width:4.928000pt;}
._c{width:6.080000pt;}
._b{width:7.157120pt;}
._d{width:8.074880pt;}
._e{width:9.728000pt;}
._14{width:10.773333pt;}
._5{width:12.266667pt;}
._a{width:13.696000pt;}
._12{width:14.865920pt;}
._3d{width:17.205120pt;}
._15{width:18.240000pt;}
._7{width:19.264000pt;}
._9{width:20.874667pt;}
._8{width:21.824000pt;}
._9a{width:22.747218pt;}
._10{width:24.064000pt;}
._f{width:25.600000pt;}
._a7{width:26.624427pt;}
._a8{width:27.630080pt;}
._b6{width:28.743680pt;}
._41{width:29.696000pt;}
._36{width:31.040000pt;}
._11{width:32.000000pt;}
._4{width:33.472000pt;}
._3{width:34.368000pt;}
._13{width:36.480000pt;}
._9b{width:37.760000pt;}
._8d{width:39.232000pt;}
._8e{width:40.145920pt;}
._8f{width:41.774080pt;}
._b5{width:45.546667pt;}
._34{width:47.232000pt;}
._35{width:48.128000pt;}
._3f{width:49.536000pt;}
._3a{width:50.560000pt;}
._97{width:52.209920pt;}
._a9{width:53.941120pt;}
._ba{width:57.280000pt;}
._88{width:59.264000pt;}
._96{width:60.800000pt;}
._32{width:73.120000pt;}
._bc{width:81.472000pt;}
._bb{width:82.798080pt;}
._95{width:103.146667pt;}
._b8{width:110.208000pt;}
._b9{width:111.296000pt;}
._8b{width:122.240000pt;}
._9c{width:140.800000pt;}
._7f{width:170.400000pt;}
._33{width:172.800000pt;}
._3b{width:174.186667pt;}
._b7{width:258.677120pt;}
._18{width:554.762814pt;}
.fs34{font-size:26.274955pt;}
.fs57{font-size:26.401357pt;}
.fs3d{font-size:32.584378pt;}
.fs39{font-size:33.605599pt;}
.fs30{font-size:36.152623pt;}
.fs2a{font-size:36.276512pt;}
.fs25{font-size:36.882649pt;}
.fsd{font-size:36.885954pt;}
.fs21{font-size:36.894130pt;}
.fs4b{font-size:37.026425pt;}
.fs32{font-size:37.201282pt;}
.fs28{font-size:37.559377pt;}
.fs51{font-size:37.850592pt;}
.fs1c{font-size:37.967218pt;}
.fs56{font-size:38.034213pt;}
.fs4f{font-size:38.348973pt;}
.fsb{font-size:38.801474pt;}
.fs35{font-size:38.850955pt;}
.fs5a{font-size:38.865331pt;}
.fs4c{font-size:38.901262pt;}
.fs53{font-size:38.904674pt;}
.fs5b{font-size:38.927824pt;}
.fs9{font-size:38.934898pt;}
.fs3c{font-size:38.954700pt;}
.fs11{font-size:39.025454pt;}
.fs2e{font-size:39.038452pt;}
.fs58{font-size:39.077158pt;}
.fs48{font-size:39.113278pt;}
.fs43{font-size:42.725984pt;}
.fs10{font-size:42.880000pt;}
.fs45{font-size:44.920633pt;}
.fs16{font-size:45.258863pt;}
.fs3e{font-size:45.743404pt;}
.fs47{font-size:46.005577pt;}
.fs40{font-size:48.435046pt;}
.fs6{font-size:52.254903pt;}
.fs14{font-size:54.238087pt;}
.fs38{font-size:57.625697pt;}
.fs4{font-size:58.880000pt;}
.fs2c{font-size:59.132417pt;}
.fs8{font-size:59.921400pt;}
.fs18{font-size:60.160503pt;}
.fs23{font-size:61.105106pt;}
.fs2f{font-size:62.026534pt;}
.fs2b{font-size:62.154519pt;}
.fs20{font-size:63.138937pt;}
.fsf{font-size:63.159341pt;}
.fs26{font-size:63.261518pt;}
.fse{font-size:63.284699pt;}
.fs4a{font-size:63.439385pt;}
.fs31{font-size:63.791448pt;}
.fs0{font-size:64.000000pt;}
.fs29{font-size:64.405496pt;}
.fs50{font-size:64.869768pt;}
.fs17{font-size:65.068840pt;}
.fs1d{font-size:65.121782pt;}
.fs55{font-size:65.148984pt;}
.fs3b{font-size:65.199021pt;}
.fs1e{font-size:65.291778pt;}
.fs4e{font-size:65.776573pt;}
.fsc{font-size:66.535401pt;}
.fsa{font-size:66.667722pt;}
.fs54{font-size:66.712364pt;}
.fs19{font-size:66.800043pt;}
.fs2d{font-size:66.845037pt;}
.fs12{font-size:66.919474pt;}
.fs4d{font-size:67.052558pt;}
.fs1a{font-size:68.013271pt;}
.fs37{font-size:68.301179pt;}
.fs41{font-size:68.311351pt;}
.fs3a{font-size:68.371628pt;}
.fs36{font-size:71.842633pt;}
.fs59{font-size:72.093316pt;}
.fs49{font-size:72.125858pt;}
.fs44{font-size:73.159150pt;}
.fs1{font-size:74.880000pt;}
.fs15{font-size:77.476241pt;}
.fs3f{font-size:78.325838pt;}
.fs46{font-size:78.803172pt;}
.fs2{font-size:85.120000pt;}
.fs1f{font-size:88.712778pt;}
.fs7{font-size:89.628174pt;}
.fs13{font-size:92.847297pt;}
.fs22{font-size:94.708406pt;}
.fs24{font-size:94.894861pt;}
.fs33{font-size:95.750604pt;}
.fs27{font-size:96.672286pt;}
.fs52{font-size:97.369414pt;}
.fs1b{font-size:97.685334pt;}
.fs42{font-size:97.813055pt;}
.fs3{font-size:117.120000pt;}
.fs5{font-size:134.445923pt;}
.y0{bottom:0.000000pt;}
.y243{bottom:2.634055pt;}
.y170{bottom:2.634084pt;}
.y172{bottom:2.634086pt;}
.ya0{bottom:2.838889pt;}
.y12b{bottom:2.879278pt;}
.y124{bottom:2.879282pt;}
.y126{bottom:2.879287pt;}
.y1eb{bottom:2.991651pt;}
.y13e{bottom:3.015882pt;}
.y13c{bottom:3.015883pt;}
.y26a{bottom:3.058871pt;}
.y8a{bottom:3.058877pt;}
.y272{bottom:3.058882pt;}
.y25b{bottom:3.058883pt;}
.y1ed{bottom:3.058892pt;}
.y62{bottom:3.058894pt;}
.y65{bottom:3.058896pt;}
.y263{bottom:3.058897pt;}
.y9d{bottom:3.058915pt;}
.y295{bottom:3.058921pt;}
.y288{bottom:3.058923pt;}
.y29d{bottom:3.058925pt;}
.yc8{bottom:3.058929pt;}
.y297{bottom:3.058932pt;}
.y2a0{bottom:3.058933pt;}
.y23b{bottom:3.134463pt;}
.y24c{bottom:3.134505pt;}
.y167{bottom:3.166200pt;}
.y246{bottom:3.166201pt;}
.y18e{bottom:3.225898pt;}
.y191{bottom:3.225899pt;}
.y1a6{bottom:3.258106pt;}
.yc1{bottom:3.258108pt;}
.y1a1{bottom:3.258110pt;}
.ybb{bottom:3.258112pt;}
.ybe{bottom:3.258115pt;}
.y153{bottom:3.258117pt;}
.y155{bottom:3.258119pt;}
.y1ab{bottom:3.258120pt;}
.y1ae{bottom:3.258124pt;}
.y1b2{bottom:3.258126pt;}
.y1bb{bottom:3.258127pt;}
.y1b4{bottom:3.258129pt;}
.y1b9{bottom:3.258131pt;}
.yfb{bottom:3.527341pt;}
.y100{bottom:3.527347pt;}
.y105{bottom:3.527355pt;}
.y214{bottom:3.729504pt;}
.y21a{bottom:3.729508pt;}
.y21f{bottom:3.729512pt;}
.y17f{bottom:3.926498pt;}
.y16c{bottom:3.936445pt;}
.y23f{bottom:3.953484pt;}
.y1d2{bottom:3.953730pt;}
.yb3{bottom:3.968226pt;}
.y19c{bottom:3.968242pt;}
.yb6{bottom:3.968285pt;}
.y10e{bottom:3.968288pt;}
.y186{bottom:3.985649pt;}
.y159{bottom:4.069451pt;}
.y15d{bottom:4.069452pt;}
.y15f{bottom:4.069453pt;}
.yf7{bottom:4.116039pt;}
.yda{bottom:4.116055pt;}
.y11f{bottom:4.116072pt;}
.y142{bottom:4.116100pt;}
.y135{bottom:4.147770pt;}
.y146{bottom:4.147830pt;}
.y75{bottom:4.230026pt;}
.y1e7{bottom:4.230518pt;}
.ya2{bottom:4.344707pt;}
.yb1{bottom:4.372999pt;}
.y88{bottom:4.373004pt;}
.y177{bottom:4.373008pt;}
.y175{bottom:4.373010pt;}
.y17b{bottom:4.373013pt;}
.yc4{bottom:4.373014pt;}
.y10f{bottom:4.373015pt;}
.y2a7{bottom:4.373019pt;}
.y176{bottom:4.373035pt;}
.y53{bottom:4.378171pt;}
.y257{bottom:4.378182pt;}
.yd2{bottom:4.378183pt;}
.y4d{bottom:4.378194pt;}
.y2a9{bottom:4.378205pt;}
.y99{bottom:4.378217pt;}
.y29c{bottom:4.378230pt;}
.yca{bottom:4.388000pt;}
.y1c4{bottom:4.388016pt;}
.y277{bottom:4.389827pt;}
.y51{bottom:4.411526pt;}
.y8f{bottom:4.411532pt;}
.yd5{bottom:4.411539pt;}
.yd7{bottom:4.411541pt;}
.y1f0{bottom:4.411550pt;}
.yde{bottom:4.411553pt;}
.y2ab{bottom:4.411562pt;}
.y28e{bottom:4.411583pt;}
.y227{bottom:4.423289pt;}
.y11a{bottom:4.449964pt;}
.y114{bottom:4.449968pt;}
.y117{bottom:4.449972pt;}
.y6b{bottom:5.115250pt;}
.yf3{bottom:5.175952pt;}
.y1ca{bottom:5.337023pt;}
.y14c{bottom:5.337621pt;}
.y1da{bottom:5.337662pt;}
.y23d{bottom:5.445874pt;}
.y56{bottom:5.445909pt;}
.y24d{bottom:5.445920pt;}
.y24f{bottom:5.445937pt;}
.y17a{bottom:5.477475pt;}
.y1e1{bottom:5.477479pt;}
.y1e3{bottom:5.477485pt;}
.y1ce{bottom:5.477497pt;}
.y169{bottom:5.477500pt;}
.y248{bottom:5.477507pt;}
.y58{bottom:5.477521pt;}
.y1cf{bottom:5.477527pt;}
.y233{bottom:5.571694pt;}
.y192{bottom:6.096965pt;}
.ybf{bottom:6.129189pt;}
.y1a4{bottom:6.129191pt;}
.y1af{bottom:6.129198pt;}
.y1b5{bottom:6.129201pt;}
.y1ba{bottom:6.129202pt;}
.y242{bottom:6.223246pt;}
.y171{bottom:6.223251pt;}
.y16f{bottom:6.223257pt;}
.y1c7{bottom:6.344705pt;}
.y3e{bottom:6.393446pt;}
.y43{bottom:6.393464pt;}
.y3c{bottom:6.393466pt;}
.y40{bottom:6.393479pt;}
.y45{bottom:6.393490pt;}
.y42{bottom:6.393491pt;}
.y138{bottom:6.428398pt;}
.y1fe{bottom:6.428405pt;}
.yab{bottom:6.560000pt;}
.y27b{bottom:6.597523pt;}
.y4b{bottom:6.597576pt;}
.y26f{bottom:6.623864pt;}
.y266{bottom:6.623876pt;}
.y20c{bottom:6.642847pt;}
.y111{bottom:6.642858pt;}
.ya6{bottom:6.720000pt;}
.y181{bottom:6.792800pt;}
.y1ec{bottom:7.193404pt;}
.y13a{bottom:7.204579pt;}
.y26b{bottom:7.226921pt;}
.y274{bottom:7.226924pt;}
.y262{bottom:7.226926pt;}
.y29f{bottom:7.226928pt;}
.yc7{bottom:7.226930pt;}
.y287{bottom:7.226932pt;}
.y8b{bottom:7.226936pt;}
.y25c{bottom:7.226951pt;}
.y1ee{bottom:7.226953pt;}
.y63{bottom:7.226981pt;}
.y66{bottom:7.226982pt;}
.y9e{bottom:7.226985pt;}
.y118{bottom:7.239034pt;}
.y203{bottom:7.526791pt;}
.yf8{bottom:8.105414pt;}
.y144{bottom:8.105434pt;}
.y140{bottom:8.105439pt;}
.ydb{bottom:8.105446pt;}
.y120{bottom:8.105477pt;}
.ya3{bottom:8.522358pt;}
.y54{bottom:8.555654pt;}
.y29b{bottom:8.555666pt;}
.y291{bottom:8.555672pt;}
.yd3{bottom:8.555684pt;}
.y4e{bottom:8.555712pt;}
.y2aa{bottom:8.555713pt;}
.y9a{bottom:8.555719pt;}
.y278{bottom:8.578440pt;}
.y52{bottom:8.589148pt;}
.y2a3{bottom:8.589157pt;}
.y90{bottom:8.589163pt;}
.y290{bottom:8.589165pt;}
.y28f{bottom:8.589166pt;}
.ydd{bottom:8.589169pt;}
.y28d{bottom:8.589173pt;}
.yd8{bottom:8.589177pt;}
.yd6{bottom:8.589178pt;}
.ydf{bottom:8.589182pt;}
.y2ac{bottom:8.589209pt;}
.y228{bottom:8.612050pt;}
.y14a{bottom:9.216700pt;}
.y1d9{bottom:9.216708pt;}
.y132{bottom:9.216762pt;}
.ye1{bottom:9.280000pt;}
.y23c{bottom:9.403649pt;}
.y24b{bottom:9.403662pt;}
.y57{bottom:9.403713pt;}
.y24e{bottom:9.403719pt;}
.y179{bottom:9.435249pt;}
.y1e0{bottom:9.435257pt;}
.y1e2{bottom:9.435263pt;}
.y1e4{bottom:9.435271pt;}
.y168{bottom:9.435284pt;}
.y247{bottom:9.435290pt;}
.y249{bottom:9.435304pt;}
.y59{bottom:9.435316pt;}
.ye7{bottom:9.440000pt;}
.yeb{bottom:9.600000pt;}
.y235{bottom:9.661968pt;}
.ye3{bottom:9.920000pt;}
.y22f{bottom:10.048495pt;}
.yd0{bottom:10.080000pt;}
.ye5{bottom:10.240000pt;}
.yd4{bottom:10.720000pt;}
.y1dd{bottom:10.737440pt;}
.y1c8{bottom:10.929101pt;}
.y180{bottom:11.700964pt;}
.y182{bottom:11.700970pt;}
.y10a{bottom:11.980292pt;}
.y222{bottom:12.366070pt;}
.yd{bottom:14.240000pt;}
.yce{bottom:14.400000pt;}
.y76{bottom:14.458867pt;}
.y77{bottom:14.458868pt;}
.y123{bottom:14.589743pt;}
.y13b{bottom:14.677001pt;}
.y1b7{bottom:14.774405pt;}
.y1a7{bottom:14.774466pt;}
.y1ff{bottom:14.999144pt;}
.yb{bottom:15.040000pt;}
.y1a0{bottom:15.097726pt;}
.yba{bottom:15.097727pt;}
.y152{bottom:15.097730pt;}
.y1aa{bottom:15.097735pt;}
.y1b1{bottom:15.097740pt;}
.yf6{bottom:15.198304pt;}
.yd9{bottom:15.198318pt;}
.y11e{bottom:15.198332pt;}
.y145{bottom:15.198362pt;}
.y141{bottom:15.198364pt;}
.y20d{bottom:15.499510pt;}
.y15c{bottom:15.637336pt;}
.yc{bottom:15.680000pt;}
.y102{bottom:15.921095pt;}
.y107{bottom:15.921107pt;}
.y113{bottom:15.951116pt;}
.y131{bottom:16.168365pt;}
.y14b{bottom:16.199047pt;}
.y14d{bottom:16.199063pt;}
.y209{bottom:16.290965pt;}
.y213{bottom:16.454915pt;}
.y21c{bottom:16.454964pt;}
.y221{bottom:16.454974pt;}
.y231{bottom:16.972633pt;}
.ya9{bottom:17.120000pt;}
.ya7{bottom:17.280000pt;}
.y6e{bottom:17.327488pt;}
.ydc{bottom:18.214838pt;}
.y229{bottom:18.263312pt;}
.y1e6{bottom:18.300720pt;}
.y128{bottom:18.310865pt;}
.y7{bottom:18.400000pt;}
.y18c{bottom:18.838861pt;}
.y193{bottom:18.838876pt;}
.y14f{bottom:18.870797pt;}
.y1a3{bottom:18.870802pt;}
.y154{bottom:18.870806pt;}
.y156{bottom:18.870815pt;}
.ybc{bottom:18.870841pt;}
.y1a2{bottom:18.870844pt;}
.y1ac{bottom:18.870849pt;}
.yc0{bottom:18.870858pt;}
.y1a5{bottom:18.870859pt;}
.y9b{bottom:19.200000pt;}
.y7a{bottom:19.304061pt;}
.y79{bottom:19.304072pt;}
.y161{bottom:19.353389pt;}
.y115{bottom:19.617742pt;}
.y119{bottom:19.617757pt;}
.y18a{bottom:20.320000pt;}
.y208{bottom:20.397630pt;}
.y206{bottom:20.397632pt;}
.y205{bottom:20.397635pt;}
.ya1{bottom:20.800000pt;}
.y194{bottom:21.440000pt;}
.y97{bottom:21.920000pt;}
.y46{bottom:22.198364pt;}
.y39{bottom:22.643288pt;}
.y22e{bottom:22.834288pt;}
.yff{bottom:23.007456pt;}
.y70{bottom:23.133953pt;}
.y6d{bottom:23.133970pt;}
.y217{bottom:23.194233pt;}
.y21e{bottom:23.194234pt;}
.y219{bottom:23.717739pt;}
.yfd{bottom:24.468742pt;}
.y104{bottom:24.468745pt;}
.y109{bottom:24.468748pt;}
.y4{bottom:24.800000pt;}
.y12c{bottom:25.557007pt;}
.y18f{bottom:26.161540pt;}
.y151{bottom:26.161555pt;}
.y15a{bottom:26.530452pt;}
.yaa{bottom:27.680000pt;}
.y3a{bottom:27.794129pt;}
.ya5{bottom:27.840000pt;}
.y18d{bottom:29.129730pt;}
.yc2{bottom:29.161689pt;}
.y1a8{bottom:29.161690pt;}
.y1b0{bottom:29.161697pt;}
.y1b6{bottom:29.161700pt;}
.y1bc{bottom:29.161701pt;}
.y11b{bottom:29.613329pt;}
.y234{bottom:29.694803pt;}
.y204{bottom:30.790609pt;}
.y1e8{bottom:30.835952pt;}
.y78{bottom:31.533211pt;}
.y230{bottom:33.140335pt;}
.y236{bottom:33.752667pt;}
.y195{bottom:34.080000pt;}
.y21d{bottom:34.971446pt;}
.y190{bottom:35.419991pt;}
.ybd{bottom:35.451938pt;}
.y150{bottom:35.451943pt;}
.y1ad{bottom:35.451947pt;}
.y1b3{bottom:35.451953pt;}
.y1b8{bottom:35.451956pt;}
.y15e{bottom:35.598592pt;}
.y116{bottom:35.725183pt;}
.y103{bottom:35.940335pt;}
.y6c{bottom:37.557445pt;}
.y6f{bottom:37.557455pt;}
.y44{bottom:37.872464pt;}
.y1cb{bottom:38.177370pt;}
.y215{bottom:38.733002pt;}
.y220{bottom:38.733007pt;}
.y21b{bottom:38.733012pt;}
.yfc{bottom:39.595525pt;}
.y106{bottom:39.595534pt;}
.y101{bottom:39.595541pt;}
.y6{bottom:40.320000pt;}
.y207{bottom:40.338349pt;}
.y125{bottom:40.405591pt;}
.y12a{bottom:40.405607pt;}
.y232{bottom:41.063465pt;}
.y158{bottom:41.335206pt;}
.y163{bottom:41.335234pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y218{bottom:46.028150pt;}
.yfe{bottom:46.681877pt;}
.y223{bottom:48.155866pt;}
.y127{bottom:49.011292pt;}
.y160{bottom:49.954046pt;}
.y3d{bottom:50.614994pt;}
.y3b{bottom:50.615011pt;}
.y3f{bottom:50.615025pt;}
.y41{bottom:50.615037pt;}
.y129{bottom:53.055323pt;}
.y162{bottom:53.959515pt;}
.y216{bottom:55.254040pt;}
.y108{bottom:55.675181pt;}
.y12d{bottom:60.269443pt;}
.y15b{bottom:61.136578pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y2c6{bottom:119.072000pt;}
.y19e{bottom:121.472000pt;}
.y210{bottom:132.512000pt;}
.y284{bottom:133.786667pt;}
.y2c5{bottom:140.186667pt;}
.y95{bottom:140.346667pt;}
.y19d{bottom:142.586667pt;}
.y37{bottom:145.466667pt;}
.y20f{bottom:150.013333pt;}
.y20b{bottom:151.280000pt;}
.y283{bottom:155.066667pt;}
.yf9{bottom:157.466667pt;}
.y20e{bottom:157.946667pt;}
.y19b{bottom:160.079982pt;}
.y94{bottom:161.466667pt;}
.y2c4{bottom:163.546667pt;}
.y19a{bottom:164.026667pt;}
.y36{bottom:166.586667pt;}
.yf5{bottom:174.946667pt;}
.y282{bottom:176.186667pt;}
.y202{bottom:178.146649pt;}
.y93{bottom:182.586667pt;}
.yf4{bottom:182.906667pt;}
.y2c3{bottom:184.666667pt;}
.y199{bottom:185.466667pt;}
.y35{bottom:187.866667pt;}
.y281{bottom:197.306667pt;}
.y20a{bottom:198.106667pt;}
.yf2{bottom:202.946649pt;}
.y92{bottom:203.866667pt;}
.y2c2{bottom:206.106667pt;}
.y198{bottom:206.586667pt;}
.yf1{bottom:206.906667pt;}
.y34{bottom:208.986667pt;}
.y280{bottom:218.426667pt;}
.y8e{bottom:221.213315pt;}
.y2c1{bottom:227.226667pt;}
.y197{bottom:227.706667pt;}
.y91{bottom:229.146667pt;}
.yf0{bottom:229.466667pt;}
.y33{bottom:230.106667pt;}
.y201{bottom:233.946667pt;}
.y27f{bottom:239.546667pt;}
.y2c0{bottom:248.506667pt;}
.y196{bottom:248.986667pt;}
.y8d{bottom:249.213315pt;}
.yef{bottom:250.786667pt;}
.y32{bottom:251.266667pt;}
.y200{bottom:255.106667pt;}
.y8c{bottom:255.906667pt;}
.y27e{bottom:260.866667pt;}
.y189{bottom:263.586667pt;}
.y18b{bottom:266.346649pt;}
.y2bf{bottom:269.666667pt;}
.yee{bottom:271.906667pt;}
.y31{bottom:272.386667pt;}
.y1fd{bottom:272.413315pt;}
.y89{bottom:276.079982pt;}
.y27d{bottom:278.146667pt;}
.y87{bottom:278.813315pt;}
.y1fc{bottom:279.106667pt;}
.y86{bottom:282.786667pt;}
.y27c{bottom:284.866667pt;}
.yed{bottom:287.106667pt;}
.y2be{bottom:290.786667pt;}
.y30{bottom:293.666667pt;}
.y1fb{bottom:300.706667pt;}
.y276{bottom:305.013297pt;}
.y27a{bottom:306.346667pt;}
.y85{bottom:306.626667pt;}
.y2bd{bottom:311.906667pt;}
.y279{bottom:313.026667pt;}
.yec{bottom:314.626667pt;}
.y2f{bottom:314.786667pt;}
.y2e6{bottom:316.226667pt;}
.y188{bottom:318.946667pt;}
.y1fa{bottom:321.826667pt;}
.y84{bottom:327.746667pt;}
.y273{bottom:333.013297pt;}
.y2bc{bottom:333.186667pt;}
.y2e{bottom:335.906667pt;}
.y2e5{bottom:337.186667pt;}
.y275{bottom:339.746667pt;}
.y187{bottom:340.066667pt;}
.y1f9{bottom:342.946667pt;}
.yea{bottom:343.586667pt;}
.y83{bottom:348.866667pt;}
.y2bb{bottom:354.306667pt;}
.y2d{bottom:357.026667pt;}
.y185{bottom:357.346630pt;}
.y2e4{bottom:358.306667pt;}
.y271{bottom:359.746630pt;}
.y184{bottom:361.346667pt;}
.y1f8{bottom:364.066667pt;}
.y270{bottom:366.466667pt;}
.y82{bottom:370.146667pt;}
.ye9{bottom:371.266667pt;}
.y2ba{bottom:375.426667pt;}
.y2c{bottom:378.306667pt;}
.y17e{bottom:379.146630pt;}
.y2e3{bottom:379.426667pt;}
.y1f7{bottom:385.346667pt;}
.y26e{bottom:386.479964pt;}
.y183{bottom:388.386667pt;}
.y81{bottom:391.266667pt;}
.y26d{bottom:393.186667pt;}
.y2b9{bottom:396.546667pt;}
.y2b{bottom:399.426667pt;}
.ye8{bottom:400.386667pt;}
.y2e2{bottom:400.706667pt;}
.y17c{bottom:403.586667pt;}
.y1f6{bottom:406.466667pt;}
.y26c{bottom:410.946630pt;}
.y269{bottom:412.213333pt;}
.y80{bottom:412.386667pt;}
.y17d{bottom:417.026667pt;}
.y2b8{bottom:417.826667pt;}
.y268{bottom:418.946667pt;}
.y2a{bottom:420.546667pt;}
.y2e1{bottom:421.826667pt;}
.y1f5{bottom:427.586667pt;}
.ye6{bottom:429.186667pt;}
.y7f{bottom:433.506667pt;}
.y178{bottom:434.346667pt;}
.y265{bottom:438.946630pt;}
.y267{bottom:438.946667pt;}
.y174{bottom:439.613297pt;}
.y29{bottom:441.666667pt;}
.y173{bottom:443.586667pt;}
.y2e0{bottom:445.506667pt;}
.y264{bottom:445.666667pt;}
.y1f4{bottom:448.706667pt;}
.y7e{bottom:454.786667pt;}
.ye4{bottom:456.546667pt;}
.y2b7{bottom:459.746667pt;}
.y16e{bottom:462.479964pt;}
.y28{bottom:462.946667pt;}
.y261{bottom:463.413297pt;}
.y16b{bottom:465.213297pt;}
.y16d{bottom:465.213333pt;}
.y2df{bottom:466.626667pt;}
.y16a{bottom:469.186667pt;}
.y1f3{bottom:469.986667pt;}
.y260{bottom:470.146667pt;}
.y7d{bottom:475.906667pt;}
.y2b6{bottom:481.186667pt;}
.y27{bottom:484.066667pt;}
.ye2{bottom:485.506667pt;}
.y166{bottom:487.279964pt;}
.y2de{bottom:487.746667pt;}
.y1f2{bottom:491.106667pt;}
.y25f{bottom:493.986667pt;}
.y165{bottom:496.546667pt;}
.y7c{bottom:497.026667pt;}
.y2b5{bottom:502.333333pt;}
.y26{bottom:505.213333pt;}
.y2dd{bottom:509.053333pt;}
.y1f1{bottom:512.253333pt;}
.ye0{bottom:514.013333pt;}
.y25e{bottom:515.133333pt;}
.y157{bottom:515.279964pt;}
.y164{bottom:516.573333pt;}
.y7b{bottom:518.173333pt;}
.y2b4{bottom:523.613333pt;}
.y25{bottom:526.013333pt;}
.y1ef{bottom:529.679964pt;}
.y1ea{bottom:530.946630pt;}
.y2dc{bottom:532.573333pt;}
.y74{bottom:535.613297pt;}
.y25d{bottom:536.253333pt;}
.y1e9{bottom:537.693333pt;}
.ycf{bottom:541.213333pt;}
.yd1{bottom:543.946630pt;}
.y2b3{bottom:544.733333pt;}
.y24{bottom:547.613333pt;}
.y73{bottom:551.613333pt;}
.y25a{bottom:553.679964pt;}
.y2db{bottom:553.693333pt;}
.y1e5{bottom:557.679964pt;}
.y259{bottom:560.413333pt;}
.y2b2{bottom:565.853333pt;}
.y1df{bottom:567.146630pt;}
.y23{bottom:568.733333pt;}
.ycd{bottom:570.013333pt;}
.y2da{bottom:574.973333pt;}
.y1de{bottom:576.413333pt;}
.y258{bottom:584.253333pt;}
.y2b1{bottom:586.973333pt;}
.y22{bottom:589.853333pt;}
.y14e{bottom:590.146630pt;}
.y72{bottom:592.413333pt;}
.y2d9{bottom:596.093333pt;}
.y149{bottom:599.613297pt;}
.y256{bottom:601.679964pt;}
.y1dc{bottom:606.479964pt;}
.y1d8{bottom:607.946594pt;}
.y2b0{bottom:608.253333pt;}
.y148{bottom:608.893333pt;}
.y255{bottom:609.693333pt;}
.y6a{bottom:610.813261pt;}
.y21{bottom:610.973333pt;}
.ycc{bottom:614.173333pt;}
.y1db{bottom:617.213333pt;}
.y2d8{bottom:619.773333pt;}
.y71{bottom:626.813333pt;}
.y2af{bottom:629.373333pt;}
.y254{bottom:629.679928pt;}
.yc9{bottom:631.413261pt;}
.y20{bottom:632.253333pt;}
.ycb{bottom:635.453333pt;}
.y253{bottom:636.413333pt;}
.y143{bottom:638.813261pt;}
.y2d7{bottom:640.893333pt;}
.y1d7{bottom:642.333333pt;}
.y2ae{bottom:646.813261pt;}
.y147{bottom:646.813333pt;}
.y2ad{bottom:650.813333pt;}
.y1f{bottom:653.373333pt;}
.yc6{bottom:653.546594pt;}
.y252{bottom:656.413261pt;}
.yc5{bottom:660.253333pt;}
.y2d6{bottom:662.013333pt;}
.y251{bottom:663.133333pt;}
.y1d6{bottom:663.613333pt;}
.y13f{bottom:666.946594pt;}
.y139{bottom:668.213261pt;}
.y2a8{bottom:668.413261pt;}
.y2a6{bottom:672.413261pt;}
.y1e{bottom:674.493333pt;}
.y13d{bottom:674.973333pt;}
.y2a5{bottom:676.413333pt;}
.y69{bottom:677.533333pt;}
.yb9{bottom:680.413261pt;}
.y24a{bottom:683.279928pt;}
.y2d5{bottom:683.293333pt;}
.y1d5{bottom:684.733333pt;}
.y250{bottom:692.573333pt;}
.yc3{bottom:695.146594pt;}
.y1d{bottom:695.613333pt;}
.y134{bottom:696.413333pt;}
.y137{bottom:697.679928pt;}
.y68{bottom:698.653333pt;}
.yb8{bottom:699.133333pt;}
.y2a4{bottom:700.253333pt;}
.y136{bottom:704.413333pt;}
.y1d4{bottom:705.853333pt;}
.y2d4{bottom:706.813333pt;}
.y245{bottom:711.279928pt;}
.y64{bottom:715.946594pt;}
.y1c{bottom:716.733333pt;}
.y2a2{bottom:717.679928pt;}
.y244{bottom:720.573333pt;}
.y67{bottom:722.653333pt;}
.y1cd{bottom:723.279928pt;}
.y2a1{bottom:725.693333pt;}
.y1d3{bottom:725.813261pt;}
.y2d3{bottom:727.933333pt;}
.y133{bottom:728.253333pt;}
.y1d1{bottom:728.546594pt;}
.y1d0{bottom:732.573333pt;}
.yb7{bottom:732.893333pt;}
.y1b{bottom:738.013333pt;}
.y241{bottom:739.413333pt;}
.y23e{bottom:742.146594pt;}
.y61{bottom:742.613261pt;}
.y130{bottom:745.679928pt;}
.y240{bottom:746.173333pt;}
.y2d2{bottom:749.213333pt;}
.y60{bottom:749.373333pt;}
.yb5{bottom:750.346594pt;}
.y1c9{bottom:751.279928pt;}
.y29e{bottom:752.413333pt;}
.yb4{bottom:754.373333pt;}
.y12f{bottom:755.013333pt;}
.y1a{bottom:759.173333pt;}
.y1c6{bottom:760.746667pt;}
.y23a{bottom:763.746667pt;}
.y1cc{bottom:770.053333pt;}
.y2d1{bottom:770.533333pt;}
.yb2{bottom:772.080000pt;}
.y29a{bottom:772.546594pt;}
.y239{bottom:773.093333pt;}
.y5f{bottom:773.413333pt;}
.y122{bottom:774.479928pt;}
.yb0{bottom:776.080000pt;}
.y19{bottom:779.973333pt;}
.yaf{bottom:780.133333pt;}
.y299{bottom:780.613333pt;}
.y5e{bottom:790.813261pt;}
.y5d{bottom:792.080000pt;}
.y2d0{bottom:794.053333pt;}
.y22d{bottom:795.746667pt;}
.y237{bottom:795.813333pt;}
.y5c{bottom:800.133333pt;}
.y18{bottom:801.093333pt;}
.yae{bottom:803.973333pt;}
.y298{bottom:804.453333pt;}
.y12e{bottom:814.533333pt;}
.y2cf{bottom:815.173333pt;}
.y1c5{bottom:815.333333pt;}
.y238{bottom:818.533333pt;}
.y294{bottom:821.679928pt;}
.y17{bottom:822.693333pt;}
.y5b{bottom:823.973333pt;}
.yad{bottom:825.093333pt;}
.y296{bottom:828.453333pt;}
.y1c3{bottom:832.546594pt;}
.y2ce{bottom:836.293333pt;}
.y1c2{bottom:836.613333pt;}
.yac{bottom:840.293333pt;}
.y16{bottom:843.813333pt;}
.y5a{bottom:845.093333pt;}
.y121{bottom:852.293333pt;}
.y293{bottom:852.453333pt;}
.y22c{bottom:853.253333pt;}
.y2cd{bottom:857.573333pt;}
.y1c1{bottom:858.533333pt;}
.y55{bottom:862.479928pt;}
.y50{bottom:863.746667pt;}
.y15{bottom:864.613333pt;}
.y112{bottom:869.679928pt;}
.y4f{bottom:871.813333pt;}
.y292{bottom:873.573333pt;}
.y22b{bottom:874.373333pt;}
.y1c0{bottom:879.653333pt;}
.y2cc{bottom:881.093333pt;}
.y11d{bottom:881.679928pt;}
.y110{bottom:882.946594pt;}
.ya8{bottom:883.333333pt;}
.y14{bottom:885.733333pt;}
.y11c{bottom:889.733333pt;}
.y28c{bottom:890.946594pt;}
.y4c{bottom:891.946594pt;}
.y226{bottom:892.213261pt;}
.y4a{bottom:893.213261pt;}
.y22a{bottom:895.653333pt;}
.y28b{bottom:899.013333pt;}
.y49{bottom:899.973333pt;}
.y225{bottom:900.293333pt;}
.y1bf{bottom:900.773333pt;}
.y2cb{bottom:902.373333pt;}
.y13{bottom:907.333333pt;}
.y10d{bottom:918.346594pt;}
.y212{bottom:919.946594pt;}
.y224{bottom:919.973333pt;}
.y1be{bottom:922.053333pt;}
.y10c{bottom:922.373333pt;}
.y28a{bottom:922.853333pt;}
.y48{bottom:923.813333pt;}
.y2ca{bottom:925.893333pt;}
.ya4{bottom:926.213333pt;}
.y12{bottom:928.453333pt;}
.y286{bottom:940.079928pt;}
.yfa{bottom:940.546594pt;}
.y38{bottom:941.213261pt;}
.y1bd{bottom:943.173333pt;}
.y289{bottom:946.853333pt;}
.y2c9{bottom:947.173333pt;}
.y11{bottom:949.253333pt;}
.y10b{bottom:956.613333pt;}
.y19f{bottom:960.546594pt;}
.y47{bottom:961.253333pt;}
.y2c8{bottom:968.293333pt;}
.y96{bottom:969.253333pt;}
.y10{bottom:970.373333pt;}
.y285{bottom:970.693333pt;}
.y1a9{bottom:979.333333pt;}
.y98{bottom:980.413261pt;}
.y9c{bottom:981.679928pt;}
.y9f{bottom:987.279928pt;}
.y2c7{bottom:989.573333pt;}
.yf{bottom:991.653333pt;}
.y211{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h3c{height:15.332706pt;}
.hae{height:15.332724pt;}
.h97{height:15.332742pt;}
.h3e{height:15.332779pt;}
.he6{height:15.399017pt;}
.ha9{height:15.399941pt;}
.hb8{height:15.399977pt;}
.hf2{height:16.600390pt;}
.h14{height:16.600462pt;}
.hed{height:16.666666pt;}
.h35{height:16.666702pt;}
.h3a{height:19.333246pt;}
.h2f{height:19.333264pt;}
.h9f{height:19.333282pt;}
.h48{height:19.333318pt;}
.h4b{height:19.399557pt;}
.h5c{height:19.999158pt;}
.hc2{height:19.999678pt;}
.h7e{height:19.999732pt;}
.he8{height:20.666558pt;}
.h9a{height:20.666594pt;}
.hcc{height:20.666859pt;}
.h68{height:20.666931pt;}
.hef{height:23.999626pt;}
.h31{height:23.999644pt;}
.hc0{height:23.999662pt;}
.h20{height:23.999698pt;}
.h5e{height:25.266087pt;}
.h50{height:25.266123pt;}
.h1c{height:25.266159pt;}
.h19{height:25.266416pt;}
.h32{height:25.266434pt;}
.h4f{height:25.266452pt;}
.h16{height:25.266488pt;}
.hf0{height:25.333653pt;}
.h80{height:25.333689pt;}
.h88{height:26.066692pt;}
.h7b{height:26.066729pt;}
.h54{height:26.560000pt;}
.h57{height:26.720000pt;}
.h5b{height:26.880000pt;}
.h5a{height:27.040000pt;}
.h6c{height:27.319814pt;}
.h64{height:27.328318pt;}
.h91{height:27.555833pt;}
.h75{height:27.821081pt;}
.h55{height:27.872000pt;}
.h4e{height:28.000000pt;}
.hd4{height:28.036791pt;}
.h41{height:28.123178pt;}
.h58{height:28.160000pt;}
.h56{height:28.320000pt;}
.h59{height:28.480000pt;}
.h96{height:28.777782pt;}
.he9{height:28.788431pt;}
.hbd{height:28.815046pt;}
.heb{height:28.834721pt;}
.ha3{height:28.854629pt;}
.he5{height:28.945336pt;}
.hb7{height:28.972091pt;}
.hb0{height:29.266383pt;}
.hbb{height:29.266488pt;}
.h8{height:29.440000pt;}
.ha4{height:31.333286pt;}
.h9c{height:32.982058pt;}
.hb3{height:33.273730pt;}
.h8a{height:35.481823pt;}
.h7c{height:35.603413pt;}
.ha7{height:35.876936pt;}
.h6e{height:36.180294pt;}
.h1d{height:36.183536pt;}
.h66{height:36.191556pt;}
.h71{height:36.198303pt;}
.h51{height:36.201546pt;}
.h61{height:36.209571pt;}
.h92{height:36.492859pt;}
.h8f{height:36.511024pt;}
.h33{height:36.512000pt;}
.h4d{height:36.800000pt;}
.h78{height:36.844135pt;}
.h7a{height:36.862474pt;}
.hd7{height:37.129805pt;}
.hd1{height:37.148286pt;}
.h43{height:37.244209pt;}
.h46{height:37.262748pt;}
.he2{height:37.309928pt;}
.he0{height:37.328500pt;}
.hcb{height:37.637420pt;}
.h3b{height:38.062579pt;}
.h1a{height:38.081525pt;}
.hda{height:38.163813pt;}
.h17{height:38.193462pt;}
.h34{height:38.212473pt;}
.h21{height:38.301349pt;}
.h82{height:38.314106pt;}
.hb1{height:41.912355pt;}
.h39{height:42.240000pt;}
.h38{height:42.400000pt;}
.h2b{height:44.397000pt;}
.h36{height:44.562248pt;}
.hc4{height:44.999770pt;}
.h95{height:45.446670pt;}
.he4{height:45.447192pt;}
.hbf{height:46.065867pt;}
.h6a{height:46.065903pt;}
.hac{height:46.066082pt;}
.h8b{height:46.066100pt;}
.h3f{height:46.066137pt;}
.hce{height:46.500986pt;}
.h62{height:46.768441pt;}
.hbe{height:46.783555pt;}
.h6d{height:46.859239pt;}
.h76{height:47.706610pt;}
.hd2{height:48.050507pt;}
.h42{height:48.237179pt;}
.he1{height:48.257328pt;}
.hab{height:48.640000pt;}
.hc8{height:48.722198pt;}
.hc5{height:49.265258pt;}
.hd8{height:49.365894pt;}
.hc9{height:50.055972pt;}
.h28{height:50.068098pt;}
.h99{height:50.592231pt;}
.h52{height:50.633440pt;}
.ha0{height:50.644414pt;}
.hdc{height:50.768109pt;}
.h15{height:50.851266pt;}
.h10{height:51.259814pt;}
.h13{height:51.285329pt;}
.hde{height:51.401390pt;}
.h25{height:53.205233pt;}
.h98{height:53.215466pt;}
.he7{height:53.401152pt;}
.hb9{height:53.425257pt;}
.hb4{height:54.190640pt;}
.hb{height:54.312500pt;}
.ha5{height:56.359811pt;}
.hc{height:56.406250pt;}
.h9b{height:56.528333pt;}
.h9d{height:56.556470pt;}
.hb5{height:57.266046pt;}
.h2e{height:57.388407pt;}
.hc3{height:58.006361pt;}
.ha8{height:58.017723pt;}
.h7f{height:58.035234pt;}
.h9{height:58.563750pt;}
.hec{height:58.780319pt;}
.hee{height:59.014869pt;}
.hcd{height:59.941484pt;}
.h69{height:59.971320pt;}
.h23{height:60.001488pt;}
.hba{height:60.845365pt;}
.h89{height:60.875651pt;}
.h7d{height:60.970912pt;}
.h65{height:61.936585pt;}
.h1f{height:61.956600pt;}
.h60{height:61.967414pt;}
.h86{height:61.987439pt;}
.h70{height:62.056831pt;}
.h1e{height:62.079570pt;}
.h72{height:62.087720pt;}
.h84{height:62.110471pt;}
.hbc{height:62.231311pt;}
.h94{height:62.576669pt;}
.h8e{height:62.607818pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h79{height:63.179024pt;}
.hd5{height:63.634455pt;}
.ha{height:63.656250pt;}
.hd0{height:63.666130pt;}
.h30{height:63.861508pt;}
.h45{height:63.881670pt;}
.he3{height:63.908354pt;}
.h47{height:63.913468pt;}
.hdf{height:63.940165pt;}
.ha1{height:63.989274pt;}
.haf{height:64.048429pt;}
.h4c{height:64.080310pt;}
.h3{height:64.500000pt;}
.hc6{height:64.523992pt;}
.hca{height:64.556109pt;}
.hcf{height:65.265158pt;}
.hd{height:65.265599pt;}
.h1b{height:65.268370pt;}
.h53{height:65.300858pt;}
.h18{height:65.398171pt;}
.hf4{height:65.430723pt;}
.hdb{height:65.441962pt;}
.h37{height:65.527972pt;}
.hf1{height:65.572109pt;}
.h81{height:65.604748pt;}
.h22{height:65.645128pt;}
.h49{height:65.677804pt;}
.hc1{height:65.775679pt;}
.h5f{height:66.065555pt;}
.hf{height:66.389619pt;}
.h3d{height:66.718097pt;}
.haa{height:67.010500pt;}
.h26{height:68.774096pt;}
.h63{height:70.152662pt;}
.h6b{height:70.290774pt;}
.h9e{height:70.885096pt;}
.h90{height:70.924642pt;}
.h73{height:71.334176pt;}
.h74{height:71.607353pt;}
.hb2{height:71.765983pt;}
.hea{height:71.953155pt;}
.h8d{height:71.999321pt;}
.hd3{height:72.123731pt;}
.h40{height:72.357740pt;}
.h4{height:73.454062pt;}
.hdd{height:74.966250pt;}
.h2c{height:76.000864pt;}
.h29{height:76.038694pt;}
.ha6{height:76.834282pt;}
.hf6{height:76.964840pt;}
.hb6{height:77.302526pt;}
.h87{height:77.787176pt;}
.ha2{height:77.787699pt;}
.h85{height:78.037071pt;}
.h67{height:80.809249pt;}
.h93{height:81.606755pt;}
.hf3{height:81.978856pt;}
.hf5{height:82.108106pt;}
.h4a{height:82.317326pt;}
.h83{height:82.327039pt;}
.h77{height:82.522510pt;}
.h8c{height:83.309475pt;}
.h5d{height:87.023423pt;}
.h2a{height:87.319117pt;}
.h27{height:87.700696pt;}
.hc7{height:90.294153pt;}
.h24{height:91.079209pt;}
.h2{height:97.600000pt;}
.he{height:99.587141pt;}
.h2d{height:106.305078pt;}
.hd6{height:110.019247pt;}
.h11{height:114.479281pt;}
.h5{height:114.889687pt;}
.h6f{height:122.727816pt;}
.h44{height:126.332485pt;}
.had{height:126.333550pt;}
.hd9{height:126.812500pt;}
.h12{height:173.524094pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3f{width:13.265757pt;}
.w29{width:13.332973pt;}
.w7{width:15.200000pt;}
.wc{width:15.332999pt;}
.w7d{width:15.333017pt;}
.w9{width:15.360000pt;}
.w22{width:15.400217pt;}
.w8{width:15.552000pt;}
.wf{width:16.599635pt;}
.w28{width:16.599773pt;}
.w78{width:16.600540pt;}
.wd{width:16.600559pt;}
.w53{width:16.666781pt;}
.w13{width:16.666799pt;}
.w12{width:16.666902pt;}
.w62{width:16.666920pt;}
.w41{width:16.666938pt;}
.we{width:16.666974pt;}
.w14{width:19.332893pt;}
.w10{width:19.332929pt;}
.w5d{width:19.333909pt;}
.w74{width:19.999389pt;}
.w38{width:19.999407pt;}
.w27{width:19.999443pt;}
.w26{width:19.999572pt;}
.w34{width:19.999608pt;}
.w16{width:19.999644pt;}
.w71{width:20.599569pt;}
.w83{width:20.599605pt;}
.w88{width:20.666786pt;}
.w7f{width:20.666804pt;}
.w85{width:20.666841pt;}
.w67{width:20.667104pt;}
.w1c{width:24.000227pt;}
.w80{width:24.000236pt;}
.w36{width:24.000254pt;}
.w3d{width:24.000529pt;}
.w17{width:25.265707pt;}
.w6a{width:25.265716pt;}
.w1b{width:25.265734pt;}
.w72{width:25.265848pt;}
.w7e{width:25.332896pt;}
.w11{width:26.067033pt;}
.w84{width:26.067069pt;}
.w87{width:26.067106pt;}
.w15{width:26.133310pt;}
.w20{width:29.333068pt;}
.w1e{width:31.333192pt;}
.w31{width:37.600000pt;}
.w1a{width:38.667826pt;}
.w25{width:38.734077pt;}
.w69{width:40.000120pt;}
.w59{width:40.000140pt;}
.w2d{width:41.266833pt;}
.w58{width:41.266860pt;}
.w45{width:44.666656pt;}
.w6{width:44.800000pt;}
.w77{width:45.933769pt;}
.w52{width:46.065243pt;}
.w3b{width:46.065279pt;}
.w32{width:46.592000pt;}
.w55{width:49.266566pt;}
.w8f{width:51.333644pt;}
.w42{width:52.600629pt;}
.w8c{width:52.600647pt;}
.w4{width:54.746667pt;}
.w33{width:55.680000pt;}
.w37{width:55.872000pt;}
.w6d{width:55.998897pt;}
.w6c{width:56.600031pt;}
.w8a{width:56.600904pt;}
.w81{width:56.600922pt;}
.w39{width:58.720000pt;}
.w57{width:60.000699pt;}
.w70{width:60.000717pt;}
.w54{width:60.001256pt;}
.w95{width:61.267504pt;}
.w35{width:64.960000pt;}
.w91{width:65.265976pt;}
.w8b{width:65.267023pt;}
.w6e{width:65.267041pt;}
.w2b{width:66.064167pt;}
.w56{width:66.131329pt;}
.w4e{width:66.664084pt;}
.w5b{width:66.734237pt;}
.w40{width:66.734274pt;}
.w68{width:67.334222pt;}
.w90{width:71.402116pt;}
.w7b{width:71.998615pt;}
.w48{width:74.535005pt;}
.w4a{width:74.535023pt;}
.w49{width:75.334069pt;}
.w4d{width:75.400346pt;}
.w93{width:75.401270pt;}
.w4c{width:76.000973pt;}
.w94{width:76.001897pt;}
.w44{width:76.001915pt;}
.w4b{width:76.001933pt;}
.w8e{width:77.269690pt;}
.w92{width:77.269708pt;}
.w82{width:77.269726pt;}
.w8d{width:77.335951pt;}
.w3a{width:78.432000pt;}
.w96{width:79.333909pt;}
.w2c{width:79.333981pt;}
.wa{width:82.080000pt;}
.w5e{width:82.720000pt;}
.w50{width:82.735829pt;}
.w2e{width:83.520000pt;}
.w6f{width:84.667864pt;}
.w23{width:85.472000pt;}
.w6b{width:85.935963pt;}
.w63{width:87.331133pt;}
.w7c{width:89.264520pt;}
.w97{width:89.264547pt;}
.w3c{width:89.440000pt;}
.w2a{width:92.000162pt;}
.w89{width:92.599493pt;}
.w61{width:94.560000pt;}
.w43{width:94.728468pt;}
.w24{width:95.200000pt;}
.w5c{width:95.333974pt;}
.w73{width:102.662274pt;}
.w86{width:104.602396pt;}
.w21{width:104.640000pt;}
.w19{width:110.531357pt;}
.w64{width:110.736129pt;}
.w2{width:111.872000pt;}
.w1f{width:114.272000pt;}
.w47{width:114.729297pt;}
.w79{width:115.334983pt;}
.w4f{width:124.599431pt;}
.w7a{width:124.666614pt;}
.w18{width:125.272767pt;}
.w51{width:126.662304pt;}
.w65{width:134.741151pt;}
.w3e{width:135.325351pt;}
.w5f{width:139.993781pt;}
.w2f{width:141.306667pt;}
.w5a{width:154.728196pt;}
.w66{width:163.331288pt;}
.w76{width:171.997108pt;}
.w75{width:190.660370pt;}
.w46{width:192.128622pt;}
.w1d{width:236.506667pt;}
.w30{width:406.306667pt;}
.wb{width:450.544218pt;}
.w60{width:463.133333pt;}
.w3{width:627.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x57{left:3.211263pt;}
.x2a{left:4.158726pt;}
.x45{left:5.401694pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x2f{left:9.494348pt;}
.x2d{left:11.161747pt;}
.x7{left:12.960000pt;}
.x8d{left:14.400000pt;}
.x7c{left:15.531464pt;}
.x41{left:16.543008pt;}
.xde{left:17.445410pt;}
.x4b{left:18.558664pt;}
.x68{left:19.680000pt;}
.x8c{left:20.640000pt;}
.x1{left:22.399973pt;}
.x8e{left:23.360000pt;}
.x6{left:24.314667pt;}
.x74{left:25.486194pt;}
.x3{left:26.879976pt;}
.x4e{left:27.936609pt;}
.xcb{left:30.000106pt;}
.x7e{left:31.155883pt;}
.x8f{left:32.320000pt;}
.xa4{left:33.500973pt;}
.x47{left:34.711245pt;}
.x62{left:35.994667pt;}
.x67{left:37.600000pt;}
.x65{left:38.560000pt;}
.x6a{left:39.520000pt;}
.x83{left:41.754667pt;}
.x66{left:43.520000pt;}
.x69{left:45.120000pt;}
.x96{left:46.818287pt;}
.xb6{left:47.806576pt;}
.x64{left:49.120000pt;}
.x28{left:50.242448pt;}
.x73{left:51.292352pt;}
.x79{left:52.484273pt;}
.x75{left:53.659171pt;}
.xa1{left:54.579001pt;}
.x61{left:57.280000pt;}
.xd8{left:58.247834pt;}
.xa0{left:59.985442pt;}
.xd5{left:60.995218pt;}
.x76{left:61.908625pt;}
.xbd{left:62.859639pt;}
.x5{left:63.994667pt;}
.xef{left:64.990146pt;}
.xe8{left:65.905722pt;}
.x5c{left:66.880000pt;}
.xb8{left:68.329757pt;}
.x7b{left:69.356640pt;}
.xd4{left:70.665722pt;}
.x59{left:72.800000pt;}
.x4a{left:74.350692pt;}
.x46{left:77.315628pt;}
.x11c{left:78.430738pt;}
.x24{left:83.523848pt;}
.xd1{left:85.681184pt;}
.x63{left:86.874667pt;}
.x23{left:88.291048pt;}
.x4c{left:89.633518pt;}
.x43{left:91.218000pt;}
.xf9{left:92.677086pt;}
.x27{left:94.068581pt;}
.x44{left:95.399575pt;}
.xa9{left:99.000767pt;}
.xbc{left:100.651011pt;}
.x97{left:102.497922pt;}
.xac{left:104.565015pt;}
.xf3{left:105.639077pt;}
.x55{left:106.592000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x94{left:117.835770pt;}
.xf4{left:120.197434pt;}
.x4d{left:121.546658pt;}
.x95{left:124.569393pt;}
.xce{left:136.514696pt;}
.x54{left:137.466655pt;}
.x42{left:138.746655pt;}
.xa8{left:140.769961pt;}
.xf8{left:145.364697pt;}
.x7f{left:154.746655pt;}
.xf2{left:157.030693pt;}
.x22{left:159.621065pt;}
.x1b{left:160.666655pt;}
.x4f{left:162.746655pt;}
.x21{left:164.390161pt;}
.x9f{left:169.346649pt;}
.x10e{left:174.013315pt;}
.xf1{left:176.026655pt;}
.xfd{left:177.306655pt;}
.xc1{left:178.479982pt;}
.xb7{left:180.186655pt;}
.x12{left:181.466655pt;}
.x82{left:183.546667pt;}
.xa7{left:184.966837pt;}
.xdf{left:186.746655pt;}
.xd2{left:188.986667pt;}
.x49{left:191.279982pt;}
.xc2{left:195.066655pt;}
.x80{left:197.946667pt;}
.xd3{left:201.813315pt;}
.x101{left:202.746655pt;}
.x99{left:205.679982pt;}
.x113{left:212.026655pt;}
.x26{left:213.662098pt;}
.xe3{left:217.306655pt;}
.x9a{left:218.906655pt;}
.xa5{left:220.213315pt;}
.xe4{left:221.346649pt;}
.x29{left:222.346649pt;}
.x6b{left:223.746649pt;}
.x10f{left:226.586655pt;}
.xdc{left:228.079982pt;}
.x11a{left:231.280000pt;}
.x110{left:234.613315pt;}
.x84{left:236.346667pt;}
.x2b{left:237.626655pt;}
.x1c{left:239.706434pt;}
.xae{left:240.879982pt;}
.x1e{left:243.838655pt;}
.x115{left:247.279982pt;}
.x15{left:248.506655pt;}
.x25{left:254.093373pt;}
.x13{left:256.666655pt;}
.x6c{left:262.466655pt;}
.xf0{left:263.426655pt;}
.xa6{left:264.866655pt;}
.x17{left:267.106655pt;}
.xdd{left:268.066655pt;}
.xe5{left:277.346655pt;}
.x14{left:279.426655pt;}
.x18{left:280.866655pt;}
.x10d{left:282.626655pt;}
.x85{left:283.586667pt;}
.x48{left:285.986655pt;}
.xbe{left:287.426655pt;}
.x1a{left:291.266655pt;}
.x114{left:292.706655pt;}
.x98{left:296.066655pt;}
.xc8{left:298.146655pt;}
.xff{left:300.746667pt;}
.x16{left:301.666655pt;}
.x19{left:306.146655pt;}
.x11b{left:310.626655pt;}
.x111{left:311.906655pt;}
.xee{left:314.613297pt;}
.xaf{left:316.226655pt;}
.x92{left:319.613297pt;}
.x116{left:324.546655pt;}
.x1d{left:325.573118pt;}
.x117{left:328.546630pt;}
.xe0{left:331.746630pt;}
.xc3{left:332.746630pt;}
.x81{left:340.066667pt;}
.x93{left:341.506655pt;}
.x58{left:343.746667pt;}
.xc9{left:347.426655pt;}
.xe1{left:349.186655pt;}
.xf5{left:351.426655pt;}
.xaa{left:352.866655pt;}
.x1f{left:353.986833pt;}
.xca{left:355.413297pt;}
.x102{left:361.546630pt;}
.x86{left:362.479964pt;}
.xd6{left:366.786655pt;}
.x20{left:367.918857pt;}
.xab{left:370.146630pt;}
.xd7{left:374.813297pt;}
.xe7{left:377.346630pt;}
.x107{left:378.346630pt;}
.x100{left:379.746655pt;}
.x56{left:385.213297pt;}
.xb9{left:391.746655pt;}
.xc4{left:392.706655pt;}
.xcc{left:395.426655pt;}
.xba{left:399.746630pt;}
.xb0{left:401.506655pt;}
.xcd{left:403.413297pt;}
.x88{left:405.666667pt;}
.x118{left:407.946667pt;}
.xb1{left:410.346630pt;}
.xe6{left:414.626655pt;}
.x9b{left:419.279964pt;}
.x87{left:421.546630pt;}
.xfb{left:424.546630pt;}
.xbf{left:429.546630pt;}
.x108{left:431.613297pt;}
.x10a{left:433.666655pt;}
.x37{left:434.946667pt;}
.x52{left:440.079964pt;}
.x71{left:441.013297pt;}
.x38{left:452.573322pt;}
.x105{left:454.346630pt;}
.xc5{left:455.453322pt;}
.x109{left:456.893322pt;}
.x5b{left:458.653333pt;}
.x103{left:460.213333pt;}
.x39{left:461.679964pt;}
.xc6{left:463.413297pt;}
.x53{left:465.373322pt;}
.xfc{left:470.493322pt;}
.xe9{left:472.733322pt;}
.xfe{left:475.280000pt;}
.xc0{left:476.413322pt;}
.x3a{left:479.453322pt;}
.x106{left:481.053322pt;}
.xbb{left:482.493322pt;}
.x90{left:483.613297pt;}
.xad{left:484.893322pt;}
.x9c{left:486.013322pt;}
.x3b{left:488.413297pt;}
.xea{left:491.413297pt;}
.xb2{left:494.613297pt;}
.x5a{left:496.213333pt;}
.xdb{left:497.213322pt;}
.x9d{left:499.413297pt;}
.x72{left:506.479964pt;}
.x91{left:507.613322pt;}
.x3c{left:508.733322pt;}
.xe2{left:511.746630pt;}
.xd9{left:513.546667pt;}
.x9e{left:516.093322pt;}
.x3d{left:517.813297pt;}
.xc7{left:529.533322pt;}
.x89{left:537.813297pt;}
.xfa{left:539.453322pt;}
.xed{left:541.533322pt;}
.x3e{left:545.053322pt;}
.xb{left:550.493333pt;}
.x112{left:552.573322pt;}
.xcf{left:558.173322pt;}
.xeb{left:562.146630pt;}
.x5e{left:564.093333pt;}
.x119{left:565.213322pt;}
.xd0{left:566.146667pt;}
.x104{left:567.133322pt;}
.xb3{left:571.613322pt;}
.x8b{left:577.853333pt;}
.xb4{left:580.413297pt;}
.x2c{left:593.213297pt;}
.xc{left:595.293333pt;}
.x5d{left:598.946630pt;}
.x77{left:600.093322pt;}
.x6d{left:605.813333pt;}
.x8a{left:606.946594pt;}
.xd{left:610.493333pt;}
.xf6{left:613.813261pt;}
.x78{left:618.946594pt;}
.xa2{left:621.546594pt;}
.xe{left:626.053333pt;}
.x10b{left:629.346594pt;}
.x50{left:632.079928pt;}
.xf7{left:633.893322pt;}
.x2e{left:634.946594pt;}
.xf{left:641.413333pt;}
.xa3{left:644.773322pt;}
.x7a{left:647.613261pt;}
.x60{left:650.213333pt;}
.x30{left:652.133322pt;}
.x51{left:654.853322pt;}
.x10{left:656.773333pt;}
.xec{left:657.733322pt;}
.x31{left:660.746594pt;}
.xb5{left:666.146594pt;}
.x10c{left:669.253322pt;}
.x6e{left:674.693322pt;}
.xda{left:676.933322pt;}
.x32{left:678.053322pt;}
.x33{left:686.479928pt;}
.x5f{left:688.079928pt;}
.x34{left:706.373322pt;}
.x35{left:714.813333pt;}
.x3f{left:721.679928pt;}
.x7d{left:727.653322pt;}
.x6f{left:730.013261pt;}
.x8{left:739.013333pt;}
.x36{left:741.573322pt;}
.x40{left:742.693322pt;}
.x70{left:746.693322pt;}
}




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