
    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_2e95b6720fbdbd8fe3ab7239.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c630ca61e57375a5d93997ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_dd8c6695060a5e3cc27e604d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_e5a74a1a1141a225cf184d8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_acd682cd731e99ce5faa2a3f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_54b1ee5423381539385bae82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_4d1039c76be466ae477dd3d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_f6d22d15424b5a01f2be8b4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41{transform:matrix(0.000000,-0.249692,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249692,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249692,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.000000,-0.249837,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249837,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249837,0.250000,0.000000,0,0);}
.m37{transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.250050,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250050,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250050,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.250060,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250060,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250060,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);}
.m35{transform:matrix(0.000000,-0.250428,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250428,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250428,0.250000,0.000000,0,0);}
.m39{transform:matrix(0.000000,-0.250647,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250647,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250647,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.250968,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250968,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250968,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,-0.250981,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250981,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250981,0.250000,0.000000,0,0);}
.m3d{transform:matrix(0.000000,-0.249250,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249250,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249250,0.250000,0.000000,0,0);}
.m3b{transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249278,0.250000,0.000000,0,0);}
.m33{transform:matrix(0.000000,-0.249587,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249587,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249587,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.000000,-0.249872,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249872,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249872,0.250000,0.000000,0,0);}
.m3f{transform:matrix(0.000000,-0.250029,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250029,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250029,0.250000,0.000000,0,0);}
.m2e{transform:matrix(0.000000,-0.250226,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250226,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250226,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250681,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250681,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250681,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.244904,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244904,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244904,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.000000,-0.245909,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245909,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245909,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249321,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249321,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249321,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.249920,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249920,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249920,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249932,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249932,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249932,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250038,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250196,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250196,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250196,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250222,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250222,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250222,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250237,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250237,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250237,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.250581,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250581,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250581,0.250000,0.000000,0,0);}
.m2a{transform:matrix(0.000000,-0.250670,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250670,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250670,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.000000,-0.250742,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250742,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250742,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.000000,-0.250826,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250826,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250826,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.250974,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250974,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250974,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250681,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254160,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.682978px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.393001px;}
.v5{vertical-align:14.678508px;}
.v1{vertical-align:15.688115px;}
.v4{vertical-align:23.760000px;}
.ls1f{letter-spacing:-2.952000px;}
.ls3b{letter-spacing:-1.440000px;}
.ls90{letter-spacing:-0.936000px;}
.ls36{letter-spacing:-0.912000px;}
.ls88{letter-spacing:-0.882000px;}
.ls33{letter-spacing:-0.852000px;}
.ls34{letter-spacing:-0.834000px;}
.ls39{letter-spacing:-0.798000px;}
.ls30{letter-spacing:-0.768000px;}
.ls25{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.630000px;}
.ls92{letter-spacing:-0.590400px;}
.ls7f{letter-spacing:-0.587400px;}
.ls93{letter-spacing:-0.561600px;}
.ls23{letter-spacing:-0.472200px;}
.ls74{letter-spacing:-0.471258px;}
.ls71{letter-spacing:-0.470797px;}
.ls24{letter-spacing:-0.463800px;}
.ls5b{letter-spacing:-0.446164px;}
.ls5e{letter-spacing:-0.446116px;}
.ls58{letter-spacing:-0.444532px;}
.ls5d{letter-spacing:-0.444478px;}
.ls17{letter-spacing:-0.418380px;}
.ls81{letter-spacing:-0.418328px;}
.ls47{letter-spacing:-0.418220px;}
.ls19{letter-spacing:-0.418149px;}
.ls83{letter-spacing:-0.418098px;}
.ls73{letter-spacing:-0.418079px;}
.ls72{letter-spacing:-0.417671px;}
.ls4a{letter-spacing:-0.416598px;}
.ls1b{letter-spacing:-0.409731px;}
.ls85{letter-spacing:-0.409680px;}
.ls28{letter-spacing:-0.406200px;}
.ls8c{letter-spacing:-0.402863px;}
.ls5a{letter-spacing:-0.395817px;}
.ls59{letter-spacing:-0.394370px;}
.ls5c{letter-spacing:-0.394321px;}
.ls49{letter-spacing:-0.363608px;}
.ls8f{letter-spacing:-0.348600px;}
.ls14{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.310216px;}
.ls80{letter-spacing:-0.310177px;}
.ls18{letter-spacing:-0.310045px;}
.ls82{letter-spacing:-0.310006px;}
.ls48{letter-spacing:-0.308895px;}
.ls4f{letter-spacing:-0.306000px;}
.ls1a{letter-spacing:-0.303803px;}
.ls84{letter-spacing:-0.303765px;}
.ls8b{letter-spacing:-0.298576px;}
.ls15{letter-spacing:-0.270000px;}
.ls65{letter-spacing:-0.252000px;}
.ls31{letter-spacing:-0.238800px;}
.ls27{letter-spacing:-0.216000px;}
.ls68{letter-spacing:-0.193200px;}
.ls40{letter-spacing:-0.164400px;}
.ls21{letter-spacing:-0.132600px;}
.ls29{letter-spacing:-0.115200px;}
.ls2e{letter-spacing:-0.078000px;}
.ls63{letter-spacing:-0.054000px;}
.ls26{letter-spacing:-0.048960px;}
.ls86{letter-spacing:-0.043200px;}
.ls96{letter-spacing:-0.037440px;}
.ls8e{letter-spacing:-0.034560px;}
.ls69{letter-spacing:-0.025920px;}
.ls12{letter-spacing:-0.018000px;}
.ls10{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.008258px;}
.ls67{letter-spacing:0.020160px;}
.ls97{letter-spacing:0.031680px;}
.ls1{letter-spacing:0.036000px;}
.ls41{letter-spacing:0.060600px;}
.ls95{letter-spacing:0.070560px;}
.ls61{letter-spacing:0.072000px;}
.ls3f{letter-spacing:0.089400px;}
.ls3c{letter-spacing:0.115200px;}
.ls32{letter-spacing:0.129600px;}
.ls51{letter-spacing:0.130578px;}
.ls42{letter-spacing:0.132480px;}
.ls2b{letter-spacing:0.132600px;}
.ls43{letter-spacing:0.141000px;}
.ls13{letter-spacing:0.144000px;}
.ls8a{letter-spacing:0.158400px;}
.ls66{letter-spacing:0.198720px;}
.ls6a{letter-spacing:0.231600px;}
.ls3a{letter-spacing:0.233400px;}
.ls64{letter-spacing:0.234000px;}
.ls22{letter-spacing:0.247800px;}
.ls3e{letter-spacing:0.256200px;}
.ls8d{letter-spacing:0.259200px;}
.ls4d{letter-spacing:0.270000px;}
.ls1e{letter-spacing:0.276960px;}
.ls5f{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.299400px;}
.ls87{letter-spacing:0.313800px;}
.ls37{letter-spacing:0.321120px;}
.ls11{letter-spacing:0.324000px;}
.ls60{letter-spacing:0.342000px;}
.ls4c{letter-spacing:0.367680px;}
.ls2f{letter-spacing:0.371400px;}
.ls1c{letter-spacing:0.374505px;}
.ls4b{letter-spacing:0.391680px;}
.ls20{letter-spacing:0.396000px;}
.ls2c{letter-spacing:0.409680px;}
.ls62{letter-spacing:0.540000px;}
.ls4e{letter-spacing:0.756000px;}
.ls94{letter-spacing:0.894000px;}
.ls50{letter-spacing:0.948904px;}
.ls70{letter-spacing:1.005710px;}
.ls45{letter-spacing:1.005727px;}
.ls76{letter-spacing:1.007099px;}
.ls4{letter-spacing:1.007177px;}
.ls57{letter-spacing:1.030310px;}
.ls52{letter-spacing:1.030476px;}
.ls7d{letter-spacing:1.056962px;}
.ls79{letter-spacing:1.057885px;}
.ls7b{letter-spacing:1.060068px;}
.ls9{letter-spacing:1.060150px;}
.ls7{letter-spacing:1.060997px;}
.lsb{letter-spacing:1.061431px;}
.ls1d{letter-spacing:1.064885px;}
.ls56{letter-spacing:1.072163px;}
.ls6f{letter-spacing:1.089049px;}
.ls7e{letter-spacing:1.091881px;}
.lsc{letter-spacing:1.092016px;}
.ls7a{letter-spacing:1.092696px;}
.ls8{letter-spacing:1.092832px;}
.ls6c{letter-spacing:1.132142px;}
.ls6d{letter-spacing:1.135354px;}
.ls77{letter-spacing:1.136559px;}
.ls5{letter-spacing:1.136700px;}
.ls91{letter-spacing:1.589760px;}
.ls38{letter-spacing:5.189760px;}
.lse{letter-spacing:12.730466px;}
.lsf{letter-spacing:12.790291px;}
.ls54{letter-spacing:13.303640px;}
.ls55{letter-spacing:13.353164px;}
.ls89{letter-spacing:13.563564px;}
.lsd{letter-spacing:16.379793px;}
.ls6b{letter-spacing:46.014270px;}
.ls6e{letter-spacing:46.059318px;}
.ls44{letter-spacing:46.074786px;}
.ls35{letter-spacing:53.238720px;}
.ls2d{letter-spacing:54.018720px;}
.ls0{letter-spacing:59.321280px;}
.ls75{letter-spacing:120.061999px;}
.ls3{letter-spacing:120.076908px;}
.ls7c{letter-spacing:240.145211px;}
.lsa{letter-spacing:240.175031px;}
.ls78{letter-spacing:245.035974px;}
.ls6{letter-spacing:245.066402px;}
.ls2{letter-spacing:849.209760px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws32{word-spacing:-57.828407px;}
.ws5e{word-spacing:-57.808992px;}
.ws59{word-spacing:-57.752454px;}
.ws0{word-spacing:-37.913760px;}
.ws18{word-spacing:-34.961760px;}
.ws99{word-spacing:-22.535760px;}
.ws98{word-spacing:-21.641760px;}
.ws23{word-spacing:-17.573760px;}
.ws28{word-spacing:-17.458560px;}
.ws1f{word-spacing:-15.341640px;}
.ws31{word-spacing:-15.269640px;}
.ws30{word-spacing:-15.226440px;}
.ws27{word-spacing:-15.203640px;}
.ws55{word-spacing:-15.168960px;}
.ws74{word-spacing:-15.128640px;}
.ws2f{word-spacing:-15.111240px;}
.ws1d{word-spacing:-15.102840px;}
.ws21{word-spacing:-15.099840px;}
.ws29{word-spacing:-15.085440px;}
.ws2c{word-spacing:-15.059640px;}
.ws2e{word-spacing:-15.030840px;}
.ws9b{word-spacing:-15.001920px;}
.ws73{word-spacing:-14.990400px;}
.ws19{word-spacing:-14.970240px;}
.ws56{word-spacing:-14.944320px;}
.ws93{word-spacing:-14.935680px;}
.ws9a{word-spacing:-14.932800px;}
.ws95{word-spacing:-14.927040px;}
.ws22{word-spacing:-14.921280px;}
.ws1e{word-spacing:-14.892240px;}
.ws1b{word-spacing:-14.855040px;}
.ws2d{word-spacing:-14.805840px;}
.ws58{word-spacing:-14.777040px;}
.ws1a{word-spacing:-14.754240px;}
.ws20{word-spacing:-14.731440px;}
.ws2a{word-spacing:-14.506440px;}
.ws97{word-spacing:-14.408640px;}
.ws62{word-spacing:-14.382840px;}
.ws96{word-spacing:-14.379840px;}
.ws2b{word-spacing:-14.340240px;}
.ws1c{word-spacing:-14.310240px;}
.ws25{word-spacing:-14.172240px;}
.ws26{word-spacing:-14.136240px;}
.ws94{word-spacing:-14.034240px;}
.ws53{word-spacing:-12.492000px;}
.ws52{word-spacing:-12.438000px;}
.ws4{word-spacing:-12.348000px;}
.ws54{word-spacing:-12.276000px;}
.ws2{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.186000px;}
.ws51{word-spacing:-12.150000px;}
.ws6{word-spacing:-11.934000px;}
.ws3c{word-spacing:-11.898000px;}
.ws5{word-spacing:-11.880000px;}
.ws34{word-spacing:-11.778057px;}
.ws60{word-spacing:-11.774102px;}
.ws5b{word-spacing:-11.762587px;}
.ws39{word-spacing:-11.732395px;}
.ws83{word-spacing:-11.345579px;}
.ws8c{word-spacing:-11.339490px;}
.ws7e{word-spacing:-11.323466px;}
.ws82{word-spacing:-11.322040px;}
.ws7b{word-spacing:-11.321106px;}
.ws7d{word-spacing:-11.316950px;}
.ws75{word-spacing:-11.313569px;}
.ws88{word-spacing:-11.305572px;}
.ws84{word-spacing:-11.305427px;}
.ws8f{word-spacing:-11.300421px;}
.ws7a{word-spacing:-11.297618px;}
.ws80{word-spacing:-11.292813px;}
.ws81{word-spacing:-11.269335px;}
.ws40{word-spacing:-11.106376px;}
.ws4d{word-spacing:-11.090551px;}
.ws46{word-spacing:-11.081117px;}
.ws42{word-spacing:-11.080851px;}
.ws4a{word-spacing:-11.079327px;}
.ws3f{word-spacing:-11.073485px;}
.ws4c{word-spacing:-11.067493px;}
.ws45{word-spacing:-11.058080px;}
.ws41{word-spacing:-11.057814px;}
.ws49{word-spacing:-11.056293px;}
.ws3e{word-spacing:-11.050463px;}
.ws16{word-spacing:-10.579757px;}
.ws72{word-spacing:-10.578443px;}
.ws57{word-spacing:-9.669360px;}
.ws24{word-spacing:-9.437760px;}
.ws3d{word-spacing:-8.136000px;}
.ws8a{word-spacing:-7.363685px;}
.ws86{word-spacing:-7.362756px;}
.ws91{word-spacing:-7.347289px;}
.ws78{word-spacing:-7.335421px;}
.ws47{word-spacing:-7.210789px;}
.ws43{word-spacing:-7.210616px;}
.ws17{word-spacing:0.000000px;}
.ws37{word-spacing:8.935541px;}
.ws5a{word-spacing:9.152902px;}
.ws5f{word-spacing:9.161863px;}
.ws38{word-spacing:9.172490px;}
.ws33{word-spacing:9.208189px;}
.ws85{word-spacing:21.479399px;}
.ws8d{word-spacing:21.544115px;}
.ws76{word-spacing:22.218141px;}
.ws36{word-spacing:34.188107px;}
.ws92{word-spacing:44.015953px;}
.ws87{word-spacing:44.035456px;}
.ws8b{word-spacing:44.036017px;}
.ws8e{word-spacing:44.168133px;}
.ws68{word-spacing:46.409435px;}
.wsc{word-spacing:46.415197px;}
.ws89{word-spacing:47.146056px;}
.ws90{word-spacing:47.166071px;}
.ws77{word-spacing:47.847219px;}
.ws67{word-spacing:59.171253px;}
.wsb{word-spacing:59.178601px;}
.ws79{word-spacing:73.459264px;}
.ws63{word-spacing:96.055829px;}
.ws7{word-spacing:96.067756px;}
.ws64{word-spacing:96.380282px;}
.ws8{word-spacing:96.392250px;}
.ws7c{word-spacing:110.180515px;}
.ws7f{word-spacing:110.295760px;}
.ws5c{word-spacing:123.401342px;}
.ws3b{word-spacing:123.433887px;}
.ws61{word-spacing:123.522150px;}
.ws4b{word-spacing:126.465173px;}
.ws4f{word-spacing:126.480668px;}
.ws4e{word-spacing:126.603016px;}
.ws48{word-spacing:126.759010px;}
.ws50{word-spacing:126.931178px;}
.ws44{word-spacing:127.067816px;}
.ws3a{word-spacing:141.265003px;}
.ws5d{word-spacing:141.858967px;}
.ws35{word-spacing:142.045535px;}
.ws69{word-spacing:188.716148px;}
.wsd{word-spacing:188.739582px;}
.ws70{word-spacing:216.614119px;}
.ws14{word-spacing:216.641017px;}
.ws6f{word-spacing:216.825950px;}
.ws13{word-spacing:216.852874px;}
.ws6c{word-spacing:221.043033px;}
.ws10{word-spacing:221.070481px;}
.ws6d{word-spacing:221.237597px;}
.ws11{word-spacing:221.265070px;}
.ws6b{word-spacing:221.280834px;}
.wsf{word-spacing:221.308312px;}
.ws71{word-spacing:232.978242px;}
.ws15{word-spacing:233.007172px;}
.ws6e{word-spacing:237.764990px;}
.ws12{word-spacing:237.794514px;}
.ws6a{word-spacing:240.996885px;}
.wse{word-spacing:241.026811px;}
.ws65{word-spacing:241.432733px;}
.ws9{word-spacing:241.462713px;}
.ws66{word-spacing:283.499040px;}
.wsa{word-spacing:283.534243px;}
._2e{margin-left:-13.061261px;}
._3{margin-left:-5.727360px;}
._1{margin-left:-4.002720px;}
._0{margin-left:-2.684160px;}
._2{margin-left:-1.449120px;}
._4{width:1.313280px;}
._9{width:3.171587px;}
._1a{width:4.636800px;}
._1b{width:5.773453px;}
._18{width:7.087200px;}
._17{width:8.199360px;}
._1e{width:9.486720px;}
._21{width:10.934640px;}
._1c{width:12.089280px;}
._1d{width:13.346880px;}
._22{width:16.306560px;}
._19{width:18.083520px;}
._25{width:19.333920px;}
._28{width:20.378400px;}
._27{width:21.613440px;}
._2d{width:23.117760px;}
._26{width:24.392640px;}
._1f{width:26.296320px;}
._20{width:27.343680px;}
._2a{width:28.443840px;}
._29{width:29.490240px;}
._30{width:33.316352px;}
._2b{width:34.511040px;}
._2c{width:35.758560px;}
._42{width:37.194720px;}
._3d{width:39.138480px;}
._3e{width:40.257840px;}
._3a{width:42.324048px;}
._23{width:46.434240px;}
._24{width:47.683200px;}
._41{width:55.504034px;}
._37{width:57.122303px;}
._43{width:58.334017px;}
._34{width:67.960216px;}
._8{width:70.951001px;}
._33{width:75.020967px;}
._44{width:76.188286px;}
._32{width:85.287950px;}
._35{width:86.916554px;}
._36{width:89.096806px;}
._40{width:101.280960px;}
._3f{width:103.003200px;}
._38{width:117.564270px;}
._3b{width:125.600545px;}
._3c{width:127.326759px;}
._31{width:137.677931px;}
._39{width:138.872779px;}
._2f{width:155.734475px;}
._a{width:247.738306px;}
._c{width:255.282234px;}
._14{width:267.649795px;}
._10{width:273.148901px;}
._b{width:283.116729px;}
._12{width:289.539279px;}
._5{width:290.820543px;}
._7{width:294.273025px;}
._d{width:295.517932px;}
._15{width:297.212090px;}
._f{width:301.050865px;}
._11{width:303.318580px;}
._6{width:317.529139px;}
._13{width:320.847689px;}
._e{width:327.439794px;}
._16{width:955.123767px;}
.fc8{color:transparent;}
.fc6{color:rgb(153,0,0);}
.fc5{color:rgb(197,90,17);}
.fc4{color:rgb(84,130,53);}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc9{color:rgb(46,116,181);}
.fc1{color:rgb(149,79,114);}
.fcb{color:rgb(89,89,89);}
.fca{color:rgb(68,84,106);}
.fc7{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs33{font-size:31.799074px;}
.fs37{font-size:31.900994px;}
.fs2b{font-size:31.905382px;}
.fs2e{font-size:31.906148px;}
.fs36{font-size:31.933309px;}
.fs58{font-size:32.457614px;}
.fs5d{font-size:32.481082px;}
.fs71{font-size:32.510129px;}
.fs5c{font-size:32.529525px;}
.fs67{font-size:32.578567px;}
.fs6b{font-size:32.582678px;}
.fs5e{font-size:32.585188px;}
.fs52{font-size:33.151483px;}
.fs14{font-size:33.155599px;}
.fs51{font-size:33.595384px;}
.fs4a{font-size:33.624721px;}
.fs4e{font-size:33.694122px;}
.fs10{font-size:33.696736px;}
.fs3c{font-size:33.719718px;}
.fsc{font-size:33.723628px;}
.fs13{font-size:33.737422px;}
.fs3e{font-size:33.815402px;}
.fs1e{font-size:33.815958px;}
.fs4b{font-size:33.832610px;}
.fsd{font-size:33.836811px;}
.fs44{font-size:33.851264px;}
.fs6{font-size:33.855468px;}
.fs43{font-size:33.862097px;}
.fs5{font-size:33.864725px;}
.fs22{font-size:36.000000px;}
.fs18{font-size:41.760000px;}
.fs46{font-size:44.125610px;}
.fs8{font-size:44.131089px;}
.fs45{font-size:44.233761px;}
.fs7{font-size:44.239254px;}
.fs54{font-size:46.807270px;}
.fs16{font-size:46.813082px;}
.fs25{font-size:48.895854px;}
.fs31{font-size:48.921652px;}
.fs29{font-size:48.928381px;}
.fs2c{font-size:48.929556px;}
.fs34{font-size:48.971209px;}
.fs26{font-size:48.997720px;}
.fs32{font-size:49.023572px;}
.fs2a{font-size:49.030315px;}
.fs2d{font-size:49.031493px;}
.fs2f{font-size:49.035290px;}
.fs24{font-size:49.041298px;}
.fs35{font-size:49.073233px;}
.fs30{font-size:49.137234px;}
.fs23{font-size:49.143255px;}
.fs28{font-size:49.221344px;}
.fs38{font-size:49.318298px;}
.fs27{font-size:49.323675px;}
.fs70{font-size:49.855789px;}
.fs62{font-size:49.864315px;}
.fs6e{font-size:49.898123px;}
.fs64{font-size:49.920231px;}
.fs68{font-size:49.920867px;}
.fs57{font-size:49.934791px;}
.fs55{font-size:49.956179px;}
.fs66{font-size:49.960742px;}
.fs6a{font-size:49.967045px;}
.fs61{font-size:49.968199px;}
.fs5a{font-size:49.989462px;}
.fs6f{font-size:50.001861px;}
.fs65{font-size:50.024015px;}
.fs69{font-size:50.024653px;}
.fs56{font-size:50.060038px;}
.fs6c{font-size:50.070638px;}
.fs59{font-size:50.075001px;}
.fs5b{font-size:50.093390px;}
.fs60{font-size:50.097524px;}
.fs5f{font-size:50.103830px;}
.fs6d{font-size:50.174735px;}
.fs63{font-size:50.201676px;}
.fs4f{font-size:50.945250px;}
.fs11{font-size:50.951576px;}
.fs53{font-size:51.051165px;}
.fs15{font-size:51.057505px;}
.fs50{font-size:51.792883px;}
.fs20{font-size:51.805547px;}
.fs3b{font-size:51.818481px;}
.fs49{font-size:51.838112px;}
.fs47{font-size:51.881638px;}
.fs9{font-size:51.885663px;}
.fs1f{font-size:51.913251px;}
.fs39{font-size:51.938864px;}
.fs4d{font-size:51.945105px;}
.fs21{font-size:51.946723px;}
.fsf{font-size:51.949135px;}
.fs3d{font-size:51.965522px;}
.fs1d{font-size:51.966376px;}
.fs40{font-size:51.989712px;}
.fsb{font-size:51.990593px;}
.fs48{font-size:51.991966px;}
.fsa{font-size:51.998422px;}
.fs1c{font-size:52.007172px;}
.fs12{font-size:52.011859px;}
.fs41{font-size:52.020633px;}
.fs3{font-size:52.027093px;}
.fs42{font-size:52.037281px;}
.fs4{font-size:52.041318px;}
.fs3a{font-size:52.046845px;}
.fs3f{font-size:52.097798px;}
.fs4c{font-size:52.100057px;}
.fse{font-size:52.106527px;}
.fs1b{font-size:52.115295px;}
.fs2{font-size:54.000000px;}
.fs17{font-size:61.171088px;}
.fs0{font-size:66.240000px;}
.fs1a{font-size:77.760000px;}
.fs19{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y328{bottom:-59.143861px;}
.y314{bottom:-59.039755px;}
.y25{bottom:-54.226076px;}
.y2a8{bottom:-54.219343px;}
.y351{bottom:-52.113857px;}
.y349{bottom:-52.111117px;}
.y29{bottom:-49.304594px;}
.y2ac{bottom:-49.298472px;}
.y327{bottom:-42.799214px;}
.y313{bottom:-42.721134px;}
.y24{bottom:-34.323820px;}
.y2a7{bottom:-34.319558px;}
.y28{bottom:-33.755957px;}
.y2ab{bottom:-33.751765px;}
.y34f{bottom:-27.698297px;}
.y347{bottom:-27.695869px;}
.y326{bottom:-26.454567px;}
.y312{bottom:-26.376487px;}
.y4d{bottom:-25.609258px;}
.y2d0{bottom:-25.606078px;}
.y35{bottom:-25.060861px;}
.y2b8{bottom:-25.057750px;}
.y363{bottom:-21.764295px;}
.y27{bottom:-18.207319px;}
.y2aa{bottom:-18.205059px;}
.y35a{bottom:-17.944234px;}
.y23{bottom:-14.448605px;}
.y2a6{bottom:-14.446811px;}
.y34e{bottom:-12.441816px;}
.y346{bottom:-12.439582px;}
.y325{bottom:-10.110232px;}
.y311{bottom:-10.032152px;}
.y350{bottom:-0.168672px;}
.y348{bottom:-0.167082px;}
.y0{bottom:0.000000px;}
.y361{bottom:2.640036px;}
.y2cf{bottom:3.573370px;}
.y4c{bottom:3.573813px;}
.y1a2{bottom:3.600000px;}
.y22e{bottom:3.630000px;}
.y34a{bottom:3.801147px;}
.y342{bottom:3.802655px;}
.y2b7{bottom:4.721000px;}
.y34{bottom:4.721586px;}
.y1a4{bottom:5.040000px;}
.y1ab{bottom:5.070000px;}
.y1a6{bottom:5.220000px;}
.y2c4{bottom:5.666732px;}
.y41{bottom:5.667504px;}
.y358{bottom:6.544784px;}
.y340{bottom:6.848088px;}
.y31d{bottom:7.353555px;}
.y309{bottom:7.431635px;}
.y28f{bottom:7.485692px;}
.y273{bottom:7.485783px;}
.y18f{bottom:7.835476px;}
.y281{bottom:7.863330px;}
.y183{bottom:7.865971px;}
.y2a5{bottom:8.156965px;}
.y22{bottom:8.157978px;}
.y1d9{bottom:11.972504px;}
.y1f0{bottom:12.054495px;}
.y2fd{bottom:12.123845px;}
.y1e6{bottom:12.208990px;}
.y1fa{bottom:12.387415px;}
.y1ce{bottom:12.540350px;}
.y20a{bottom:12.578958px;}
.y322{bottom:13.183805px;}
.y30e{bottom:13.261885px;}
.y5d{bottom:13.375978px;}
.y21b{bottom:16.380000px;}
.y241{bottom:16.425000px;}
.y214{bottom:16.560000px;}
.y360{bottom:17.889670px;}
.y1a8{bottom:18.000000px;}
.y31e{bottom:18.935663px;}
.y30a{bottom:19.013743px;}
.y1cc{bottom:19.116574px;}
.y320{bottom:19.846591px;}
.y30c{bottom:19.950697px;}
.y20e{bottom:20.160000px;}
.y323{bottom:20.419174px;}
.y30f{bottom:20.497254px;}
.y357{bottom:21.846829px;}
.y359{bottom:25.412150px;}
.y31f{bottom:26.171033px;}
.y30b{bottom:26.249112px;}
.y321{bottom:27.107987px;}
.y30d{bottom:27.186066px;}
.y2a3{bottom:27.299477px;}
.y20{bottom:27.302866px;}
.y34b{bottom:28.812955px;}
.y343{bottom:28.814663px;}
.y33f{bottom:28.824444px;}
.y28e{bottom:29.973276px;}
.y272{bottom:29.973368px;}
.y18e{bottom:30.264908px;}
.y280{bottom:30.372498px;}
.y182{bottom:30.382698px;}
.y32f{bottom:30.803349px;}
.y2ce{bottom:31.085076px;}
.y4b{bottom:31.088936px;}
.y362{bottom:31.194107px;}
.y5c{bottom:31.360278px;}
.y1d6{bottom:32.669004px;}
.y1ed{bottom:32.698250px;}
.y2b6{bottom:32.798175px;}
.y33{bottom:32.802248px;}
.y1e3{bottom:32.855275px;}
.y1f7{bottom:33.008210px;}
.y207{bottom:33.273202px;}
.y35c{bottom:34.124714px;}
.y2c3{bottom:35.446346px;}
.y40{bottom:35.450816px;}
.y224{bottom:36.540000px;}
.y2fb{bottom:36.556675px;}
.y334{bottom:36.635909px;}
.y353{bottom:38.138004px;}
.y330{bottom:42.390354px;}
.y332{bottom:43.327730px;}
.y335{bottom:43.900570px;}
.y29d{bottom:44.198071px;}
.y1a{bottom:44.203559px;}
.y5b{bottom:49.382567px;}
.y331{bottom:49.655016px;}
.y2cc{bottom:49.832080px;}
.y49{bottom:49.838268px;}
.y333{bottom:50.566353px;}
.y33e{bottom:50.800697px;}
.y2fa{bottom:51.823949px;}
.y2b4{bottom:51.930354px;}
.y31{bottom:51.936802px;}
.y28c{bottom:52.325345px;}
.y270{bottom:52.325436px;}
.y18c{bottom:52.559603px;}
.y27e{bottom:52.746448px;}
.y180{bottom:52.764163px;}
.y211{bottom:53.100000px;}
.y34c{bottom:53.799334px;}
.y344{bottom:53.800725px;}
.y315{bottom:54.227608px;}
.y2ff{bottom:54.305688px;}
.y2fc{bottom:55.381119px;}
.y2{bottom:57.420000px;}
.y35d{bottom:59.125644px;}
.y354{bottom:63.225372px;}
.y2c2{bottom:63.523089px;}
.y3f{bottom:63.531045px;}
.y2a9{bottom:63.557101px;}
.y26{bottom:63.564993px;}
.y1cb{bottom:65.481502px;}
.y2c6{bottom:66.381343px;}
.y43{bottom:66.389586px;}
.y2f6{bottom:68.077882px;}
.y2ae{bottom:68.819636px;}
.y2b{bottom:68.828182px;}
.y283{bottom:69.224372px;}
.y268{bottom:69.224464px;}
.y185{bottom:69.415254px;}
.y275{bottom:69.662020px;}
.y176{bottom:69.685415px;}
.y23c{bottom:69.705000px;}
.y33d{bottom:72.802988px;}
.y300{bottom:74.059807px;}
.y181{bottom:75.010474px;}
.y1ef{bottom:75.667844px;}
.y201{bottom:76.543832px;}
.y1cd{bottom:76.594811px;}
.y29e{bottom:76.994863px;}
.y1b{bottom:77.004424px;}
.y1{bottom:77.616000px;}
.y32a{bottom:77.724210px;}
.y1dc{bottom:77.745931px;}
.y2a4{bottom:77.860071px;}
.y21{bottom:77.869739px;}
.y34d{bottom:78.785714px;}
.y345{bottom:78.786787px;}
.y1e8{bottom:79.057498px;}
.y1d0{bottom:79.229735px;}
.y1de{bottom:79.245692px;}
.y1f2{bottom:79.398627px;}
.y316{bottom:79.603454px;}
.y310{bottom:79.707560px;}
.y203{bottom:79.828857px;}
.y1e5{bottom:80.494664px;}
.y1f9{bottom:80.622111px;}
.y1db{bottom:80.815870px;}
.y2c0{bottom:82.655267px;}
.y3d{bottom:82.665600px;}
.y200{bottom:82.686739px;}
.y1d7{bottom:84.039305px;}
.y35e{bottom:84.100640px;}
.y209{bottom:84.612322px;}
.y177{bottom:85.984960px;}
.y23b{bottom:86.085000px;}
.y1ca{bottom:86.331700px;}
.y324{bottom:87.255247px;}
.y284{bottom:87.554148px;}
.y1d8{bottom:87.748814px;}
.y1e4{bottom:87.861055px;}
.y1ee{bottom:87.926667px;}
.y276{bottom:88.009740px;}
.y355{bottom:88.286715px;}
.y208{bottom:90.163189px;}
.y269{bottom:90.172779px;}
.y1d1{bottom:92.711881px;}
.y1f8{bottom:92.907924px;}
.y1fc{bottom:92.984392px;}
.y2f7{bottom:93.107901px;}
.y186{bottom:93.783248px;}
.y301{bottom:93.787900px;}
.y33c{bottom:94.779240px;}
.y1e9{bottom:96.056738px;}
.y1df{bottom:96.221525px;}
.y1f3{bottom:96.399950px;}
.y2c7{bottom:98.500152px;}
.y44{bottom:98.512383px;}
.y2ba{bottom:99.544550px;}
.y37{bottom:99.556979px;}
.y2af{bottom:101.598355px;}
.y2c{bottom:101.610971px;}
.y178{bottom:102.311536px;}
.y204{bottom:102.565410px;}
.y317{bottom:104.978258px;}
.y285{bottom:105.883924px;}
.y1d2{bottom:106.224726px;}
.y277{bottom:106.330439px;}
.y1fd{bottom:106.591568px;}
.y2cd{bottom:106.974433px;}
.y4a{bottom:106.987717px;}
.y1c9{bottom:107.182918px;}
.y35f{bottom:109.070449px;}
.y28d{bottom:109.201101px;}
.y27f{bottom:109.653025px;}
.y29f{bottom:109.794900px;}
.y1c{bottom:109.808534px;}
.y18d{bottom:109.910821px;}
.y2b5{bottom:110.242424px;}
.y32{bottom:110.256114px;}
.y26a{bottom:111.123254px;}
.y32b{bottom:111.838437px;}
.y271{bottom:112.440622px;}
.y1ea{bottom:113.052920px;}
.y1e0{bottom:113.218770px;}
.y356{bottom:113.351181px;}
.y1f4{bottom:113.371706px;}
.y302{bottom:113.546184px;}
.y3cf{bottom:113.616000px;}
.y13b{bottom:116.496000px;}
.y266{bottom:116.676000px;}
.y33b{bottom:116.754451px;}
.y43e{bottom:117.036000px;}
.y2f8{bottom:118.112994px;}
.y187{bottom:118.150165px;}
.y179{bottom:118.610000px;}
.y37e{bottom:118.656000px;}
.y1d3{bottom:119.701755px;}
.y1fe{bottom:120.182431px;}
.y3f5{bottom:120.816000px;}
.yd5{bottom:121.536000px;}
.y258{bottom:122.616000px;}
.yeb{bottom:123.876000px;}
.y286{bottom:124.210460px;}
.y278{bottom:124.677079px;}
.y437{bottom:125.136000px;}
.y205{bottom:125.311173px;}
.y2d9{bottom:126.177495px;}
.y2db{bottom:126.327039px;}
.y2d7{bottom:126.401811px;}
.ya9{bottom:127.116000px;}
.y1c8{bottom:128.033117px;}
.y112{bottom:128.556000px;}
.y29b{bottom:128.736000px;}
.y40a{bottom:128.916000px;}
.y1eb{bottom:130.057258px;}
.y1e1{bottom:130.225191px;}
.y1f5{bottom:130.378127px;}
.y318{bottom:130.380130px;}
.y2c8{bottom:130.614724px;}
.y45{bottom:130.630943px;}
.y379{bottom:130.716000px;}
.y26b{bottom:132.071569px;}
.y2bb{bottom:132.325430px;}
.y38{bottom:132.341930px;}
.y1d4{bottom:133.209483px;}
.y303{bottom:133.295098px;}
.y56{bottom:133.548899px;}
.y58{bottom:133.735852px;}
.y3ce{bottom:133.776000px;}
.y1ff{bottom:133.793685px;}
.y54{bottom:133.810633px;}
.y7b{bottom:134.136000px;}
.y2b0{bottom:134.379235px;}
.y2d{bottom:134.395922px;}
.y17a{bottom:134.936576px;}
.y218{bottom:135.540000px;}
.y43d{bottom:137.196000px;}
.y15a{bottom:137.916000px;}
.y13a{bottom:138.276000px;}
.y265{bottom:138.456000px;}
.y33a{bottom:138.730704px;}
.y37d{bottom:140.436000px;}
.y2d8{bottom:140.571104px;}
.y2da{bottom:140.720648px;}
.y2d6{bottom:140.795420px;}
.y2c1{bottom:140.972743px;}
.y3f4{bottom:140.976000px;}
.y3e{bottom:140.990316px;}
.y3a9{bottom:141.876000px;}
.y188{bottom:142.523544px;}
.y287{bottom:142.545635px;}
.y2a0{bottom:142.586284px;}
.y1d{bottom:142.603990px;}
.y279{bottom:143.030203px;}
.y2f9{bottom:143.111856px;}
.yd4{bottom:143.316000px;}
.y257{bottom:144.396000px;}
.y18{bottom:145.296000px;}
.yea{bottom:145.476000px;}
.y1c5{bottom:145.656000px;}
.y32c{bottom:145.948497px;}
.y1d5{bottom:146.696745px;}
.y1ec{bottom:147.051401px;}
.y1e2{bottom:147.221416px;}
.y1f6{bottom:147.374352px;}
.y55{bottom:147.944296px;}
.y206{bottom:148.046703px;}
.y57{bottom:148.131249px;}
.y53{bottom:148.206030px;}
.y1c7{bottom:148.883315px;}
.ya8{bottom:148.896000px;}
.y409{bottom:149.076000px;}
.y111{bottom:150.150000px;}
.y29a{bottom:150.510000px;}
.y17b{bottom:151.241527px;}
.y217{bottom:151.920000px;}
.y378{bottom:152.490000px;}
.y26c{bottom:153.019884px;}
.y304{bottom:153.023192px;}
.y319{bottom:155.761180px;}
.y436{bottom:157.350000px;}
.y2f4{bottom:157.530000px;}
.y159{bottom:159.510000px;}
.y139{bottom:160.050000px;}
.y264{bottom:160.230000px;}
.y339{bottom:160.706957px;}
.y288{bottom:160.870012px;}
.y3f3{bottom:161.130000px;}
.y27a{bottom:161.372519px;}
.y2d5{bottom:161.549135px;}
.y37c{bottom:162.210000px;}
.y2c9{bottom:162.738829px;}
.y46{bottom:162.759037px;}
.y249{bottom:163.650000px;}
.yd3{bottom:165.090000px;}
.y2bc{bottom:165.098744px;}
.y39{bottom:165.119314px;}
.y3cd{bottom:165.990000px;}
.y256{bottom:166.170000px;}
.y189{bottom:166.886153px;}
.y2b1{bottom:167.152549px;}
.y2e{bottom:167.173306px;}
.ye9{bottom:167.250000px;}
.y1c4{bottom:167.430000px;}
.y17c{bottom:167.535666px;}
.y7a{bottom:167.790000px;}
.y52{bottom:168.915958px;}
.y408{bottom:169.230000px;}
.ya7{bottom:170.490000px;}
.y110{bottom:171.930000px;}
.y299{bottom:172.290000px;}
.y305{bottom:172.782516px;}
.y26d{bottom:173.968199px;}
.y377{bottom:174.270000px;}
.y2a1{bottom:175.356039px;}
.y1e{bottom:175.377814px;}
.y3a8{bottom:175.530000px;}
.y2d4{bottom:175.935267px;}
.y435{bottom:177.510000px;}
.y289{bottom:179.205187px;}
.y2f3{bottom:179.310000px;}
.y27b{bottom:179.725644px;}
.y32d{bottom:180.058557px;}
.y31a{bottom:181.163052px;}
.y158{bottom:181.290000px;}
.y138{bottom:181.830000px;}
.y263{bottom:182.010000px;}
.y338{bottom:182.683209px;}
.y51{bottom:183.318833px;}
.y17d{bottom:183.862242px;}
.y37b{bottom:183.990000px;}
.y3cc{bottom:186.150000px;}
.y248{bottom:186.690000px;}
.yd2{bottom:186.870000px;}
.y255{bottom:187.950000px;}
.ye8{bottom:189.030000px;}
.y1c3{bottom:189.210000px;}
.y407{bottom:189.390000px;}
.y79{bottom:189.570000px;}
.y18a{bottom:191.281073px;}
.ya6{bottom:192.270000px;}
.y306{bottom:192.531431px;}
.y10f{bottom:193.710000px;}
.y2ca{bottom:194.831159px;}
.y47{bottom:194.855352px;}
.y26e{bottom:194.916515px;}
.y376{bottom:195.870000px;}
.y3a7{bottom:197.310000px;}
.y434{bottom:197.490000px;}
.y28a{bottom:197.529564px;}
.y2bd{bottom:197.882868px;}
.y3a{bottom:197.907508px;}
.y27c{bottom:198.067960px;}
.y2b2{bottom:199.904245px;}
.y2f{bottom:199.929068px;}
.y17e{bottom:200.167193px;}
.y174{bottom:200.190000px;}
.y2f2{bottom:200.910000px;}
.y3f2{bottom:201.450000px;}
.y157{bottom:203.070000px;}
.y247{bottom:203.250000px;}
.y137{bottom:203.430000px;}
.y337{bottom:204.659462px;}
.y167{bottom:205.590000px;}
.y298{bottom:205.950000px;}
.y3cb{bottom:206.310000px;}
.y31b{bottom:206.533692px;}
.y17{bottom:207.750000px;}
.y2a2{bottom:208.158238px;}
.y1f{bottom:208.184086px;}
.yd1{bottom:208.470000px;}
.y254{bottom:209.550000px;}
.ye7{bottom:210.810000px;}
.y307{bottom:212.259524px;}
.y2d3{bottom:212.498774px;}
.y1bc{bottom:213.870000px;}
.ya5{bottom:214.050000px;}
.y32e{bottom:214.189448px;}
.y10e{bottom:215.490000px;}
.y18b{bottom:215.654452px;}
.y262{bottom:215.670000px;}
.y28b{bottom:215.864739px;}
.y26f{bottom:215.864830px;}
.y27d{bottom:216.421085px;}
.y17f{bottom:216.493769px;}
.y375{bottom:217.650000px;}
.y22a{bottom:217.830000px;}
.y3a6{bottom:219.090000px;}
.y246{bottom:219.630000px;}
.y50{bottom:219.916792px;}
.y2dd{bottom:221.471413px;}
.y3f1{bottom:221.610000px;}
.y2f1{bottom:222.690000px;}
.y78{bottom:223.230000px;}
.y156{bottom:224.850000px;}
.y136{bottom:225.210000px;}
.y16{bottom:225.390000px;}
.y336{bottom:226.635714px;}
.y2d2{bottom:226.899860px;}
.y2cb{bottom:226.944672px;}
.y48{bottom:226.972853px;}
.y166{bottom:227.370000px;}
.y5a{bottom:228.860633px;}
.y433{bottom:229.710000px;}
.yd0{bottom:230.250000px;}
.y2be{bottom:230.634563px;}
.y3b{bottom:230.663271px;}
.y253{bottom:231.330000px;}
.y31c{bottom:231.935564px;}
.y308{bottom:232.018849px;}
.y2b3{bottom:232.688369px;}
.y30{bottom:232.717263px;}
.y1c2{bottom:233.490000px;}
.y4f{bottom:234.319667px;}
.y173{bottom:234.390000px;}
.y2de{bottom:235.827636px;}
.ya4{bottom:235.830000px;}
.y2dc{bottom:235.872500px;}
.y245{bottom:236.190000px;}
.y10d{bottom:237.090000px;}
.y3ca{bottom:238.350000px;}
.y2e8{bottom:239.430000px;}
.y297{bottom:240.150000px;}
.y3a5{bottom:240.870000px;}
.y3f0{bottom:241.770000px;}
.y59{bottom:243.248552px;}
.ye6{bottom:244.470000px;}
.y155{bottom:246.450000px;}
.y135{bottom:246.990000px;}
.y1bb{bottom:247.530000px;}
.y165{bottom:249.150000px;}
.y261{bottom:249.870000px;}
.y229{bottom:250.770000px;}
.y172{bottom:250.950000px;}
.ycf{bottom:252.030000px;}
.y244{bottom:252.570000px;}
.y252{bottom:253.110000px;}
.y41b{bottom:253.650000px;}
.y15{bottom:255.450000px;}
.y296{bottom:256.710000px;}
.y77{bottom:257.070000px;}
.ya3{bottom:257.430000px;}
.y3c9{bottom:258.510000px;}
.y10c{bottom:258.870000px;}
.y2e7{bottom:261.210000px;}
.y3ef{bottom:261.930000px;}
.y3a4{bottom:262.470000px;}
.y2bf{bottom:263.407878px;}
.y3c{bottom:263.440655px;}
.y38b{bottom:265.170000px;}
.ye5{bottom:266.250000px;}
.y260{bottom:266.430000px;}
.y171{bottom:267.510000px;}
.y154{bottom:268.230000px;}
.y134{bottom:268.770000px;}
.y243{bottom:269.130000px;}
.y1ba{bottom:269.310000px;}
.y432{bottom:270.030000px;}
.y1c1{bottom:270.390000px;}
.y164{bottom:270.930000px;}
.yce{bottom:273.810000px;}
.y23a{bottom:278.130000px;}
.y76{bottom:278.670000px;}
.ya2{bottom:279.210000px;}
.y389{bottom:280.650000px;}
.y43c{bottom:281.910000px;}
.y25f{bottom:282.810000px;}
.y295{bottom:283.170000px;}
.y2d1{bottom:283.368240px;}
.y2b9{bottom:283.368332px;}
.y3a3{bottom:284.250000px;}
.y14{bottom:285.150000px;}
.y251{bottom:286.770000px;}
.ye4{bottom:288.030000px;}
.y153{bottom:290.010000px;}
.y431{bottom:290.190000px;}
.y1b9{bottom:291.090000px;}
.y10b{bottom:292.530000px;}
.y170{bottom:293.970000px;}
.y242{bottom:294.690000px;}
.y175{bottom:295.019916px;}
.ycd{bottom:296.490000px;}
.y3c8{bottom:298.830000px;}
.y25e{bottom:299.370000px;}
.y75{bottom:300.450000px;}
.ya1{bottom:300.990000px;}
.y43b{bottom:302.070000px;}
.y133{bottom:302.430000px;}
.y13{bottom:302.790000px;}
.y2c5{bottom:303.107798px;}
.y1c0{bottom:304.410000px;}
.y2e6{bottom:304.590000px;}
.y250{bottom:308.550000px;}
.y3a2{bottom:308.730000px;}
.ye3{bottom:309.630000px;}
.y240{bottom:311.250000px;}
.y152{bottom:311.790000px;}
.y1b8{bottom:312.870000px;}
.y3ee{bottom:314.130000px;}
.y10a{bottom:314.310000px;}
.y3c7{bottom:318.990000px;}
.y2ad{bottom:320.155813px;}
.y12{bottom:320.610000px;}
.y1bf{bottom:320.970000px;}
.y74{bottom:322.230000px;}
.ya0{bottom:322.770000px;}
.y388{bottom:324.030000px;}
.y132{bottom:324.210000px;}
.y25d{bottom:325.830000px;}
.y41a{bottom:326.190000px;}
.y2e5{bottom:326.370000px;}
.ycc{bottom:326.910000px;}
.y23f{bottom:327.675000px;}
.y24f{bottom:330.375000px;}
.ye2{bottom:331.455000px;}
.y151{bottom:333.435000px;}
.y406{bottom:334.335000px;}
.y1b7{bottom:334.515000px;}
.y109{bottom:336.135000px;}
.y1be{bottom:337.575000px;}
.y430{bottom:342.435000px;}
.y73{bottom:344.055000px;}
.y23e{bottom:344.235000px;}
.y9f{bottom:344.415000px;}
.y131{bottom:345.855000px;}
.y3ed{bottom:346.215000px;}
.y419{bottom:346.395000px;}
.y2e4{bottom:348.195000px;}
.y11{bottom:350.535000px;}
.y3c6{bottom:351.075000px;}
.y24e{bottom:352.155000px;}
.ye1{bottom:353.235000px;}
.y405{bottom:354.495000px;}
.y150{bottom:355.215000px;}
.y3a1{bottom:355.755000px;}
.y29c{bottom:356.046371px;}
.y1b6{bottom:356.295000px;}
.y108{bottom:357.915000px;}
.y374{bottom:360.075000px;}
.y23d{bottom:360.615000px;}
.y42f{bottom:362.595000px;}
.y1bd{bottom:364.035000px;}
.y202{bottom:364.155000px;}
.y72{bottom:365.655000px;}
.y9e{bottom:366.195000px;}
.y3ec{bottom:366.375000px;}
.y130{bottom:367.635000px;}
.y2e3{bottom:369.795000px;}
.y3c5{bottom:371.235000px;}
.ycb{bottom:373.755000px;}
.y404{bottom:374.655000px;}
.ye0{bottom:375.015000px;}
.y14f{bottom:376.995000px;}
.y228{bottom:377.895000px;}
.y1b5{bottom:378.075000px;}
.y163{bottom:379.695000px;}
.y10{bottom:381.495000px;}
.y373{bottom:381.855000px;}
.y38a{bottom:385.815000px;}
.y3eb{bottom:386.535000px;}
.y71{bottom:387.435000px;}
.y9d{bottom:387.975000px;}
.y12f{bottom:389.415000px;}
.y3c4{bottom:391.395000px;}
.y107{bottom:391.575000px;}
.y239{bottom:394.275000px;}
.y403{bottom:394.815000px;}
.y24d{bottom:395.535000px;}
.ydf{bottom:396.615000px;}
.y418{bottom:398.595000px;}
.y14e{bottom:398.775000px;}
.y1b4{bottom:399.855000px;}
.y162{bottom:401.295000px;}
.y372{bottom:403.635000px;}
.yca{bottom:407.595000px;}
.y70{bottom:409.215000px;}
.y9c{bottom:409.755000px;}
.y238{bottom:410.835000px;}
.y3a0{bottom:411.195000px;}
.y12e{bottom:412.095000px;}
.y106{bottom:413.355000px;}
.y402{bottom:414.975000px;}
.yf{bottom:415.155000px;}
.y24c{bottom:417.315000px;}
.yde{bottom:418.395000px;}
.y3ea{bottom:418.755000px;}
.y14d{bottom:420.375000px;}
.y1b3{bottom:421.455000px;}
.y161{bottom:423.075000px;}
.y3c3{bottom:423.615000px;}
.y371{bottom:425.415000px;}
.y237{bottom:427.395000px;}
.yc9{bottom:429.375000px;}
.y6f{bottom:430.995000px;}
.y9b{bottom:431.355000px;}
.y39f{bottom:432.975000px;}
.y12d{bottom:433.695000px;}
.y401{bottom:434.955000px;}
.y105{bottom:435.135000px;}
.ye{bottom:437.655000px;}
.y3e9{bottom:438.915000px;}
.ydd{bottom:440.175000px;}
.y236{bottom:443.775000px;}
.y160{bottom:444.855000px;}
.y370{bottom:447.015000px;}
.yc8{bottom:450.975000px;}
.y1fb{bottom:451.879353px;}
.y6e{bottom:452.595000px;}
.y9a{bottom:453.135000px;}
.y14c{bottom:454.215000px;}
.y39e{bottom:454.575000px;}
.y42e{bottom:455.115000px;}
.y1b2{bottom:455.295000px;}
.y12c{bottom:455.475000px;}
.y104{bottom:456.735000px;}
.y3e8{bottom:459.075000px;}
.yd{bottom:460.335000px;}
.y2f0{bottom:461.955000px;}
.y15f{bottom:466.635000px;}
.y400{bottom:467.175000px;}
.y36f{bottom:468.795000px;}
.yc7{bottom:472.755000px;}
.ydc{bottom:473.835000px;}
.y6d{bottom:474.375000px;}
.y99{bottom:474.915000px;}
.y14b{bottom:475.815000px;}
.y39d{bottom:476.355000px;}
.y235{bottom:476.715000px;}
.y12b{bottom:477.255000px;}
.y103{bottom:478.515000px;}
.y3e7{bottom:479.235000px;}
.yc{bottom:483.015000px;}
.y2ef{bottom:483.555000px;}
.y3ff{bottom:487.335000px;}
.y15e{bottom:488.235000px;}
.y36e{bottom:490.575000px;}
.y417{bottom:491.115000px;}
.y1b1{bottom:491.655000px;}
.y234{bottom:493.275000px;}
.yc6{bottom:494.535000px;}
.y3c2{bottom:495.975000px;}
.y6c{bottom:496.155000px;}
.y98{bottom:496.695000px;}
.y14a{bottom:498.495000px;}
.y12a{bottom:499.035000px;}
.y3e6{bottom:499.395000px;}
.y102{bottom:500.295000px;}
.y1b0{bottom:500.655000px;}
.y2ee{bottom:505.335000px;}
.yb{bottom:505.515000px;}
.y42d{bottom:507.495000px;}
.ydb{bottom:508.035000px;}
.y233{bottom:509.655000px;}
.y387{bottom:510.015000px;}
.y416{bottom:511.275000px;}
.y2e2{bottom:512.355000px;}
.yc5{bottom:516.315000px;}
.y6b{bottom:517.935000px;}
.y97{bottom:518.295000px;}
.y1af{bottom:519.375000px;}
.y149{bottom:520.275000px;}
.y129{bottom:521.535000px;}
.y101{bottom:522.075000px;}
.y36d{bottom:524.235000px;}
.yda{bottom:524.595000px;}
.y232{bottom:526.215000px;}
.y42c{bottom:527.655000px;}
.y3c1{bottom:528.015000px;}
.y415{bottom:531.435000px;}
.y39c{bottom:531.795000px;}
.y2e1{bottom:533.955000px;}
.y1ae{bottom:537.375000px;}
.yc4{bottom:537.915000px;}
.y184{bottom:538.449211px;}
.y2ed{bottom:538.995000px;}
.y6a{bottom:539.535000px;}
.y1f1{bottom:540.187990px;}
.ya{bottom:540.255000px;}
.yd9{bottom:541.155000px;}
.y148{bottom:542.055000px;}
.y231{bottom:542.595000px;}
.y128{bottom:543.315000px;}
.y15d{bottom:543.675000px;}
.y36c{bottom:546.015000px;}
.y3c0{bottom:548.175000px;}
.y414{bottom:551.595000px;}
.y96{bottom:552.135000px;}
.y39b{bottom:553.575000px;}
.y100{bottom:555.735000px;}
.y1ad{bottom:556.275000px;}
.y230{bottom:559.155000px;}
.yc3{bottom:559.695000px;}
.y69{bottom:561.315000px;}
.y147{bottom:564.555000px;}
.y127{bottom:565.095000px;}
.y386{bottom:565.455000px;}
.yd8{bottom:567.615000px;}
.y36b{bottom:567.795000px;}
.y3bf{bottom:568.335000px;}
.y9{bottom:569.415000px;}
.y3e5{bottom:571.755000px;}
.y4e{bottom:572.730000px;}
.y2ec{bottom:573.195000px;}
.y95{bottom:573.915000px;}
.y1ac{bottom:574.995000px;}
.y39a{bottom:575.355000px;}
.y22f{bottom:575.715000px;}
.yff{bottom:577.515000px;}
.y42b{bottom:579.855000px;}
.y36{bottom:580.796507px;}
.yc2{bottom:581.475000px;}
.y68{bottom:583.095000px;}
.y146{bottom:586.335000px;}
.y126{bottom:586.695000px;}
.y25c{bottom:586.875000px;}
.y385{bottom:587.235000px;}
.y36a{bottom:589.575000px;}
.y2eb{bottom:589.755000px;}
.y3e4{bottom:591.915000px;}
.y22d{bottom:592.095000px;}
.y1aa{bottom:593.715000px;}
.y94{bottom:595.545000px;}
.y399{bottom:596.985000px;}
.yfe{bottom:599.325000px;}
.y42a{bottom:600.045000px;}
.y42{bottom:600.538167px;}
.y3be{bottom:600.585000px;}
.yc1{bottom:603.285000px;}
.y413{bottom:603.825000px;}
.y67{bottom:604.905000px;}
.y2ea{bottom:606.345000px;}
.y22c{bottom:608.685000px;}
.y384{bottom:609.045000px;}
.y125{bottom:609.405000px;}
.y369{bottom:611.205000px;}
.y3e3{bottom:612.105000px;}
.y1a9{bottom:612.465000px;}
.y24b{bottom:615.165000px;}
.y93{bottom:617.325000px;}
.y2a{bottom:617.588299px;}
.y398{bottom:618.765000px;}
.y3bd{bottom:620.745000px;}
.yfd{bottom:620.925000px;}
.y25b{bottom:621.105000px;}
.y3fe{bottom:623.985000px;}
.yc0{bottom:624.885000px;}
.y22b{bottom:625.065000px;}
.y66{bottom:626.505000px;}
.y1e7{bottom:628.519025px;}
.y383{bottom:630.825000px;}
.y124{bottom:631.185000px;}
.y429{bottom:632.085000px;}
.y43a{bottom:632.265000px;}
.y2e9{bottom:632.805000px;}
.y294{bottom:632.985000px;}
.y2fe{bottom:633.105000px;}
.y329{bottom:633.968921px;}
.y24a{bottom:636.945000px;}
.y25a{bottom:637.665000px;}
.y92{bottom:639.105000px;}
.y3bc{bottom:640.905000px;}
.y223{bottom:642.345000px;}
.yfc{bottom:642.705000px;}
.y3e2{bottom:644.145000px;}
.ybf{bottom:646.665000px;}
.y1a7{bottom:649.185000px;}
.y65{bottom:650.985000px;}
.y428{bottom:652.245000px;}
.y382{bottom:652.425000px;}
.y19{bottom:652.585939px;}
.y397{bottom:652.605000px;}
.y123{bottom:652.965000px;}
.y293{bottom:654.765000px;}
.y227{bottom:658.725000px;}
.y91{bottom:660.885000px;}
.y259{bottom:664.125000px;}
.y282{bottom:664.281623px;}
.y274{bottom:664.293291px;}
.y3e1{bottom:664.305000px;}
.yfb{bottom:664.485000px;}
.y1a5{bottom:667.905000px;}
.y3bb{bottom:672.945000px;}
.y381{bottom:674.205000px;}
.y122{bottom:674.565000px;}
.y226{bottom:675.285000px;}
.y3fd{bottom:676.365000px;}
.y292{bottom:676.545000px;}
.ybe{bottom:680.505000px;}
.y90{bottom:682.485000px;}
.y427{bottom:684.465000px;}
.yfa{bottom:686.265000px;}
.y1a3{bottom:686.805000px;}
.y225{bottom:691.845000px;}
.y3ba{bottom:693.105000px;}
.y380{bottom:695.985000px;}
.y3e0{bottom:696.525000px;}
.y64{bottom:697.965000px;}
.y291{bottom:698.145000px;}
.ybd{bottom:702.105000px;}
.y8f{bottom:704.265000px;}
.y426{bottom:704.625000px;}
.y1a1{bottom:705.525000px;}
.y145{bottom:707.865000px;}
.y216{bottom:708.945000px;}
.y121{bottom:709.305000px;}
.y3b9{bottom:713.265000px;}
.y3df{bottom:716.685000px;}
.y1dd{bottom:716.803339px;}
.y396{bottom:717.765000px;}
.yf9{bottom:719.925000px;}
.ybc{bottom:723.885000px;}
.y425{bottom:724.785000px;}
.y222{bottom:725.505000px;}
.y8e{bottom:726.045000px;}
.y412{bottom:728.565000px;}
.y144{bottom:729.645000px;}
.y120{bottom:731.085000px;}
.y63{bottom:731.625000px;}
.y395{bottom:739.545000px;}
.yf8{bottom:741.705000px;}
.y221{bottom:741.885000px;}
.y1a0{bottom:742.065000px;}
.y3b8{bottom:745.485000px;}
.ybb{bottom:745.665000px;}
.y8d{bottom:747.825000px;}
.y3de{bottom:748.725000px;}
.y143{bottom:751.425000px;}
.y37a{bottom:752.325000px;}
.y11f{bottom:752.685000px;}
.y424{bottom:756.825000px;}
.y220{bottom:758.445000px;}
.y19f{bottom:758.625000px;}
.yf7{bottom:763.485000px;}
.y62{bottom:765.465000px;}
.y3b7{bottom:765.645000px;}
.yba{bottom:767.445000px;}
.y3dd{bottom:768.885000px;}
.y8c{bottom:769.425000px;}
.y142{bottom:773.205000px;}
.y11e{bottom:774.465000px;}
.y21f{bottom:774.825000px;}
.y19e{bottom:775.005000px;}
.y423{bottom:776.985000px;}
.y442{bottom:783.645000px;}
.yf6{bottom:785.085000px;}
.y3b6{bottom:785.625000px;}
.y368{bottom:785.985000px;}
.y61{bottom:787.065000px;}
.yb9{bottom:789.045000px;}
.y8b{bottom:791.205000px;}
.y21e{bottom:791.385000px;}
.y141{bottom:794.805000px;}
.y394{bottom:794.985000px;}
.y422{bottom:797.145000px;}
.y1da{bottom:804.004650px;}
.y19d{bottom:805.965000px;}
.yf5{bottom:806.865000px;}
.y21d{bottom:807.945000px;}
.y11d{bottom:808.125000px;}
.y3dc{bottom:809.205000px;}
.yb8{bottom:810.825000px;}
.y8a{bottom:812.985000px;}
.y140{bottom:816.585000px;}
.y393{bottom:816.765000px;}
.y441{bottom:817.305000px;}
.y37f{bottom:817.485000px;}
.y3b5{bottom:817.845000px;}
.y60{bottom:820.905000px;}
.y411{bottom:821.085000px;}
.y16f{bottom:822.885000px;}
.y21c{bottom:824.325000px;}
.yf4{bottom:828.645000px;}
.y3fc{bottom:829.365000px;}
.y11c{bottom:829.905000px;}
.yb7{bottom:832.605000px;}
.y267{bottom:833.093981px;}
.y89{bottom:834.765000px;}
.y3b4{bottom:838.005000px;}
.y13f{bottom:838.365000px;}
.y19c{bottom:839.805000px;}
.y21a{bottom:840.885000px;}
.y3db{bottom:841.245000px;}
.y5f{bottom:842.685000px;}
.y16e{bottom:844.665000px;}
.y421{bottom:849.525000px;}
.yf3{bottom:850.425000px;}
.y11b{bottom:851.685000px;}
.yb6{bottom:854.385000px;}
.y88{bottom:856.365000px;}
.y367{bottom:856.545000px;}
.y219{bottom:857.265000px;}
.y13e{bottom:860.145000px;}
.y19b{bottom:861.405000px;}
.y16d{bottom:866.310000px;}
.y420{bottom:869.730000px;}
.y3b3{bottom:870.090000px;}
.yf2{bottom:872.070000px;}
.y392{bottom:872.250000px;}
.y410{bottom:873.510000px;}
.y210{bottom:874.590000px;}
.y5e{bottom:876.390000px;}
.y87{bottom:878.190000px;}
.y366{bottom:878.370000px;}
.y3fb{bottom:881.610000px;}
.y2f5{bottom:882.053566px;}
.y2e0{bottom:882.690000px;}
.y19a{bottom:883.230000px;}
.y11a{bottom:885.390000px;}
.yb5{bottom:888.090000px;}
.y440{bottom:889.710000px;}
.y3b2{bottom:890.250000px;}
.y215{bottom:891.150000px;}
.y1cf{bottom:891.157976px;}
.y3da{bottom:893.670000px;}
.yf1{bottom:893.850000px;}
.y391{bottom:894.030000px;}
.y8{bottom:898.170000px;}
.y86{bottom:899.970000px;}
.y365{bottom:900.150000px;}
.y3fa{bottom:901.770000px;}
.y199{bottom:905.010000px;}
.y119{bottom:907.170000px;}
.y213{bottom:907.530000px;}
.yb4{bottom:909.870000px;}
.y3b1{bottom:910.410000px;}
.y3d9{bottom:913.830000px;}
.y352{bottom:914.316783px;}
.yf0{bottom:915.630000px;}
.y35b{bottom:916.047406px;}
.y2df{bottom:919.590000px;}
.y85{bottom:921.750000px;}
.y41f{bottom:921.930000px;}
.y212{bottom:924.090000px;}
.y198{bottom:926.790000px;}
.y118{bottom:928.950000px;}
.y3b0{bottom:930.570000px;}
.yb3{bottom:931.650000px;}
.y7{bottom:931.830000px;}
.y3d8{bottom:933.990000px;}
.yef{bottom:937.410000px;}
.y20d{bottom:941.190000px;}
.y41e{bottom:942.090000px;}
.y364{bottom:943.530000px;}
.y40f{bottom:945.870000px;}
.y197{bottom:948.390000px;}
.y117{bottom:951.630000px;}
.yb2{bottom:953.250000px;}
.y3d7{bottom:954.150000px;}
.y84{bottom:955.410000px;}
.y20f{bottom:957.750000px;}
.yee{bottom:959.010000px;}
.y390{bottom:959.190000px;}
.y6{bottom:961.170000px;}
.y439{bottom:962.250000px;}
.y3af{bottom:962.790000px;}
.y16c{bottom:965.310000px;}
.y40e{bottom:966.030000px;}
.y196{bottom:970.170000px;}
.y116{bottom:973.230000px;}
.y3f9{bottom:974.130000px;}
.yb1{bottom:975.030000px;}
.y83{bottom:977.190000px;}
.yed{bottom:980.790000px;}
.y38f{bottom:980.970000px;}
.y290{bottom:981.690000px;}
.y43f{bottom:982.410000px;}
.y3ae{bottom:982.950000px;}
.y3d6{bottom:986.190000px;}
.y16b{bottom:987.090000px;}
.y1c6{bottom:991.538328px;}
.y195{bottom:991.950000px;}
.y20c{bottom:992.670000px;}
.y3f8{bottom:994.290000px;}
.y115{bottom:995.910000px;}
.yb0{bottom:996.810000px;}
.y82{bottom:998.970000px;}
.y13d{bottom:1002.570000px;}
.yec{bottom:1003.470000px;}
.y3d5{bottom:1006.350000px;}
.y16a{bottom:1008.690000px;}
.y20b{bottom:1009.230000px;}
.y5{bottom:1012.470000px;}
.y194{bottom:1013.730000px;}
.y41d{bottom:1014.450000px;}
.y3ad{bottom:1014.990000px;}
.y114{bottom:1017.690000px;}
.y40d{bottom:1018.410000px;}
.yaf{bottom:1018.590000px;}
.y81{bottom:1020.570000px;}
.y15c{bottom:1024.350000px;}
.y13c{bottom:1025.250000px;}
.y3d4{bottom:1026.510000px;}
.y169{bottom:1030.470000px;}
.y438{bottom:1034.610000px;}
.y3ac{bottom:1035.150000px;}
.y193{bottom:1035.330000px;}
.y40c{bottom:1038.570000px;}
.y113{bottom:1039.290000px;}
.yae{bottom:1040.190000px;}
.y80{bottom:1042.350000px;}
.y38e{bottom:1046.130000px;}
.y3f7{bottom:1046.670000px;}
.y15b{bottom:1046.850000px;}
.y168{bottom:1052.250000px;}
.y192{bottom:1057.110000px;}
.y3d3{bottom:1058.550000px;}
.y40b{bottom:1058.730000px;}
.y341{bottom:1059.689099px;}
.yad{bottom:1061.970000px;}
.y4{bottom:1063.590000px;}
.y7f{bottom:1064.130000px;}
.y3f6{bottom:1066.830000px;}
.y3ab{bottom:1067.370000px;}
.y38d{bottom:1067.910000px;}
.yd7{bottom:1074.030000px;}
.y3d2{bottom:1078.710000px;}
.y191{bottom:1078.890000px;}
.yac{bottom:1083.750000px;}
.y7e{bottom:1085.910000px;}
.y41c{bottom:1086.990000px;}
.y3aa{bottom:1087.530000px;}
.y38c{bottom:1092.390000px;}
.yd6{bottom:1095.630000px;}
.y3d1{bottom:1098.870000px;}
.y190{bottom:1101.570000px;}
.y7d{bottom:1107.510000px;}
.y3{bottom:1114.890000px;}
.yab{bottom:1117.410000px;}
.y3d0{bottom:1119.030000px;}
.y7c{bottom:1132.020000px;}
.yaa{bottom:1139.220000px;}
.h70{height:16.151021px;}
.h14{height:16.153027px;}
.h4e{height:16.380000px;}
.h56{height:16.416000px;}
.h4f{height:16.560000px;}
.h53{height:16.596000px;}
.h2b{height:18.000000px;}
.h2d{height:18.036000px;}
.h6e{height:20.637824px;}
.h69{height:20.637892px;}
.he{height:20.640455px;}
.h78{height:30.532853px;}
.h80{height:32.306623px;}
.h81{height:32.410170px;}
.h4d{height:32.940000px;}
.h2e{height:38.589961px;}
.h20{height:43.453125px;}
.h67{height:43.888607px;}
.hc{height:43.894057px;}
.h66{height:43.996177px;}
.hb{height:44.001640px;}
.h51{height:44.088750px;}
.h76{height:47.927170px;}
.h1a{height:47.933122px;}
.h32{height:48.633230px;}
.h43{height:48.658890px;}
.h38{height:48.665582px;}
.h3c{height:48.666751px;}
.h47{height:48.708180px;}
.h33{height:48.734549px;}
.h44{height:48.760262px;}
.h39{height:48.766969px;}
.h3d{height:48.768140px;}
.h41{height:48.771917px;}
.h31{height:48.777892px;}
.h48{height:48.809656px;}
.h42{height:48.873314px;}
.h30{height:48.879302px;}
.h37{height:48.956972px;}
.h4c{height:49.053404px;}
.h36{height:49.058753px;}
.h1c{height:49.223610px;}
.h87{height:49.596489px;}
.h95{height:49.630115px;}
.h8a{height:49.652105px;}
.h8e{height:49.652737px;}
.h79{height:49.687860px;}
.h86{height:49.699815px;}
.h7e{height:49.720964px;}
.h96{height:49.733296px;}
.h8b{height:49.755332px;}
.h8f{height:49.755966px;}
.h7a{height:49.791161px;}
.h92{height:49.801704px;}
.h7d{height:49.806044px;}
.h85{height:49.828445px;}
.h82{height:49.834718px;}
.h93{height:49.905242px;}
.h88{height:49.932039px;}
.h34{height:50.065725px;}
.h45{height:50.092141px;}
.h3a{height:50.099031px;}
.h3e{height:50.100234px;}
.h49{height:50.142884px;}
.h46{height:50.196500px;}
.h3b{height:50.203404px;}
.h3f{height:50.204610px;}
.h4a{height:50.247348px;}
.h77{height:50.319874px;}
.h1b{height:50.326123px;}
.h71{height:50.671618px;}
.h15{height:50.677910px;}
.h74{height:50.776965px;}
.h18{height:50.783270px;}
.h97{height:51.048628px;}
.h7b{height:51.129519px;}
.h8c{height:51.156091px;}
.h90{height:51.162546px;}
.h7f{height:51.291914px;}
.h83{height:51.302603px;}
.h28{height:51.527295px;}
.h27{height:51.634420px;}
.h58{height:51.659896px;}
.h5f{height:51.710470px;}
.h6a{height:51.712712px;}
.hf{height:51.719134px;}
.h23{height:51.727837px;}
.h63{height:51.741225px;}
.h8{height:51.747650px;}
.h59{height:51.767297px;}
.h5e{height:51.817976px;}
.h6d{height:51.820223px;}
.h12{height:51.826658px;}
.h22{height:51.835379px;}
.h73{height:52.164155px;}
.h17{height:52.170632px;}
.h72{height:53.032068px;}
.h5a{height:53.058279px;}
.h6b{height:53.078379px;}
.h68{height:53.122946px;}
.hd{height:53.127068px;}
.h2a{height:53.155316px;}
.h6f{height:53.187932px;}
.h29{height:53.189589px;}
.h13{height:53.192059px;}
.h5c{height:53.208837px;}
.h24{height:53.209712px;}
.h10{height:53.234508px;}
.h6c{height:53.235914px;}
.h11{height:53.242525px;}
.h16{height:53.256283px;}
.h65{height:53.265267px;}
.ha{height:53.271882px;}
.h64{height:53.282313px;}
.h9{height:53.286448px;}
.h5b{height:53.292107px;}
.h60{height:53.344279px;}
.h25{height:53.362194px;}
.h6{height:53.709961px;}
.h2c{height:55.291992px;}
.h50{height:65.880000px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h5{height:68.084282px;}
.h1f{height:79.925027px;}
.h1d{height:91.177734px;}
.h8d{height:95.183837px;}
.h89{height:95.184254px;}
.h1e{height:98.426190px;}
.h55{height:99.036000px;}
.h94{height:125.461101px;}
.h91{height:129.795378px;}
.h3{height:159.732422px;}
.h35{height:162.706730px;}
.h40{height:163.311544px;}
.h2f{height:163.330616px;}
.h4b{height:163.906322px;}
.h52{height:164.910000px;}
.h62{height:225.173629px;}
.h7{height:225.236732px;}
.h57{height:232.506019px;}
.h61{height:232.569400px;}
.h26{height:232.639348px;}
.h5d{height:233.466361px;}
.h21{height:233.544769px;}
.h84{height:247.466285px;}
.h7c{height:248.332264px;}
.h54{height:263.730000px;}
.h75{height:297.851760px;}
.h19{height:305.092671px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:42.480000px;}
.w11{width:49.536000px;}
.w12{width:50.940000px;}
.w10{width:61.380000px;}
.w22{width:68.076000px;}
.w20{width:70.740000px;}
.w1d{width:71.640000px;}
.w1f{width:72.000000px;}
.w1e{width:72.036000px;}
.w21{width:74.520000px;}
.we{width:78.696000px;}
.wf{width:80.460000px;}
.w1b{width:84.240000px;}
.w2f{width:107.322550px;}
.wd{width:127.620000px;}
.w23{width:165.630000px;}
.wc{width:180.750000px;}
.w2a{width:215.667288px;}
.w7{width:216.579110px;}
.w1a{width:233.715000px;}
.w2d{width:266.887606px;}
.w2e{width:267.487781px;}
.wa{width:290.275258px;}
.w27{width:298.346383px;}
.w4{width:298.369532px;}
.w26{width:299.241411px;}
.w3{width:299.264630px;}
.w29{width:304.640213px;}
.w6{width:304.663850px;}
.w24{width:315.435577px;}
.w28{width:316.309468px;}
.w9{width:316.311603px;}
.w25{width:316.330660px;}
.wb{width:316.335861px;}
.w5{width:317.239887px;}
.w31{width:327.194756px;}
.w30{width:349.725192px;}
.w1c{width:432.975000px;}
.w2b{width:597.592656px;}
.w2c{width:630.426731px;}
.w8{width:638.979468px;}
.w14{width:661.316425px;}
.w15{width:674.600043px;}
.w16{width:674.616258px;}
.w17{width:675.191241px;}
.w18{width:675.730322px;}
.w19{width:675.792474px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x20{left:-266.385061px;}
.xa0{left:-265.263549px;}
.xb2{left:-238.590359px;}
.xb1{left:-232.284600px;}
.x1e{left:-217.725318px;}
.x1c{left:-210.967020px;}
.x1b{left:-204.370921px;}
.xb3{left:-198.002884px;}
.x1d{left:-189.048509px;}
.xb4{left:-173.745972px;}
.xb5{left:-149.520226px;}
.xb6{left:-125.263315px;}
.xb7{left:-101.027180px;}
.xb8{left:-76.770268px;}
.x1f{left:-59.283787px;}
.xb9{left:-52.539328px;}
.xbb{left:-3.227038px;}
.x0{left:0.000000px;}
.xba{left:1.613519px;}
.x3b{left:8.100000px;}
.x46{left:10.440000px;}
.x98{left:12.240000px;}
.x41{left:14.220000px;}
.x45{left:16.560000px;}
.x47{left:18.720000px;}
.x37{left:19.736510px;}
.x3f{left:21.960000px;}
.x8e{left:23.070000px;}
.x88{left:24.234829px;}
.x11{left:25.834957px;}
.x95{left:28.620000px;}
.xa6{left:31.391289px;}
.xf{left:32.603825px;}
.x93{left:35.460000px;}
.x4a{left:37.894277px;}
.xe{left:39.156951px;}
.xa{left:41.816980px;}
.x3a{left:43.566401px;}
.x6c{left:45.564545px;}
.x97{left:46.830000px;}
.x8{left:48.579106px;}
.xc{left:50.174967px;}
.x6b{left:51.757043px;}
.x13{left:53.234039px;}
.x7{left:55.178940px;}
.x36{left:57.584358px;}
.x4b{left:60.355810px;}
.x10{left:62.403023px;}
.x34{left:64.363755px;}
.xa7{left:69.206489px;}
.x9{left:70.542490px;}
.x6d{left:74.233518px;}
.x94{left:76.500000px;}
.x4c{left:78.386156px;}
.x39{left:84.210925px;}
.x96{left:86.394000px;}
.x35{left:88.753380px;}
.x6e{left:92.250375px;}
.x25{left:95.337646px;}
.x4d{left:96.441969px;}
.x17{left:99.603591px;}
.x12{left:101.506044px;}
.xab{left:104.343904px;}
.x15{left:106.359125px;}
.x2{left:108.035987px;}
.x6a{left:109.154200px;}
.x14{left:110.250008px;}
.xb{left:112.867986px;}
.x4e{left:114.467222px;}
.x2a{left:121.662222px;}
.x49{left:123.004474px;}
.xa8{left:125.097044px;}
.xa3{left:127.007154px;}
.x16{left:128.279483px;}
.xd{left:130.021521px;}
.x4f{left:132.528128px;}
.xac{left:133.911476px;}
.x4{left:135.035987px;}
.x2f{left:138.635987px;}
.x2c{left:140.435987px;}
.xbc{left:144.035987px;}
.x24{left:146.638741px;}
.x38{left:149.090330px;}
.x50{left:150.558474px;}
.x2e{left:162.029987px;}
.x6f{left:164.368770px;}
.x30{left:165.629987px;}
.x51{left:168.588820px;}
.x48{left:172.614000px;}
.x70{left:182.411110px;}
.x52{left:186.649726px;}
.xad{left:193.015441px;}
.x71{left:200.433064px;}
.x53{left:204.680072px;}
.x1a{left:214.499816px;}
.x19{left:216.297235px;}
.x72{left:218.475405px;}
.x9e{left:221.228092px;}
.x54{left:222.730792px;}
.xa1{left:226.800636px;}
.xa2{left:228.028771px;}
.x73{left:236.487165px;}
.x5{left:238.529987px;}
.x22{left:240.358726px;}
.x21{left:246.424987px;}
.x23{left:247.713132px;}
.xae{left:252.160977px;}
.x74{left:254.529505px;}
.x18{left:257.974935px;}
.x75{left:272.551459px;}
.x55{left:276.842203px;}
.x89{left:282.887580px;}
.x3c{left:288.795000px;}
.x76{left:290.583606px;}
.x56{left:294.903110px;}
.x8b{left:304.815000px;}
.x77{left:308.605560px;}
.x57{left:312.933456px;}
.x69{left:319.585329px;}
.x9f{left:325.469812px;}
.x78{left:326.647900px;}
.x58{left:330.994362px;}
.xa9{left:340.461634px;}
.x79{left:344.669854px;}
.x59{left:349.024708px;}
.xaa{left:355.962226px;}
.x7a{left:362.702001px;}
.x5a{left:367.075427px;}
.x7b{left:380.723955px;}
.x5b{left:385.105773px;}
.x8c{left:389.775000px;}
.xaf{left:395.402752px;}
.x7c{left:398.766295px;}
.x5c{left:403.156493px;}
.x9d{left:406.347019px;}
.x33{left:408.165012px;}
.x3d{left:416.415000px;}
.x8a{left:417.479548px;}
.x5d{left:421.186839px;}
.x9b{left:423.437685px;}
.x6{left:428.391685px;}
.x7d{left:434.820396px;}
.x31{left:438.194987px;}
.x5e{left:439.247745px;}
.x1{left:442.334987px;}
.x2b{left:453.501670px;}
.x5f{left:457.278091px;}
.x8d{left:461.415000px;}
.x7e{left:470.884690px;}
.x60{left:475.338997px;}
.xa4{left:481.264279px;}
.x7f{left:488.906644px;}
.x61{left:493.369344px;}
.x3e{left:495.105000px;}
.x26{left:500.908375px;}
.xa5{left:505.557395px;}
.x80{left:506.948985px;}
.x62{left:511.420063px;}
.x27{left:525.218354px;}
.x29{left:526.446584px;}
.x63{left:529.450409px;}
.x8f{left:533.445000px;}
.x81{left:543.003085px;}
.x64{left:547.501129px;}
.x28{left:553.452679px;}
.x82{left:561.025039px;}
.x65{left:565.531475px;}
.x40{left:575.925000px;}
.x83{left:579.067379px;}
.x66{left:583.592381px;}
.x84{left:597.079140px;}
.x67{left:601.622727px;}
.x90{left:605.445000px;}
.x85{left:615.121480px;}
.x68{left:619.683633px;}
.x86{left:633.143434px;}
.x42{left:637.305000px;}
.x87{left:651.175581px;}
.xb0{left:662.895066px;}
.x91{left:677.490000px;}
.x43{left:686.850000px;}
.x9c{left:706.649987px;}
.x9a{left:721.049987px;}
.x32{left:724.649987px;}
.x44{left:737.790000px;}
.x99{left:740.309987px;}
.x92{left:748.230000px;}
.x3{left:751.649987px;}
.x2d{left:785.309987px;}
@media print{
.v2{vertical-align:-13.940425pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.127112pt;}
.v5{vertical-align:13.047563pt;}
.v1{vertical-align:13.944991pt;}
.v4{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-2.624000pt;}
.ls3b{letter-spacing:-1.280000pt;}
.ls90{letter-spacing:-0.832000pt;}
.ls36{letter-spacing:-0.810667pt;}
.ls88{letter-spacing:-0.784000pt;}
.ls33{letter-spacing:-0.757333pt;}
.ls34{letter-spacing:-0.741333pt;}
.ls39{letter-spacing:-0.709333pt;}
.ls30{letter-spacing:-0.682667pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.560000pt;}
.ls92{letter-spacing:-0.524800pt;}
.ls7f{letter-spacing:-0.522133pt;}
.ls93{letter-spacing:-0.499200pt;}
.ls23{letter-spacing:-0.419733pt;}
.ls74{letter-spacing:-0.418896pt;}
.ls71{letter-spacing:-0.418486pt;}
.ls24{letter-spacing:-0.412267pt;}
.ls5b{letter-spacing:-0.396591pt;}
.ls5e{letter-spacing:-0.396547pt;}
.ls58{letter-spacing:-0.395140pt;}
.ls5d{letter-spacing:-0.395091pt;}
.ls17{letter-spacing:-0.371893pt;}
.ls81{letter-spacing:-0.371847pt;}
.ls47{letter-spacing:-0.371751pt;}
.ls19{letter-spacing:-0.371688pt;}
.ls83{letter-spacing:-0.371642pt;}
.ls73{letter-spacing:-0.371626pt;}
.ls72{letter-spacing:-0.371263pt;}
.ls4a{letter-spacing:-0.370310pt;}
.ls1b{letter-spacing:-0.364205pt;}
.ls85{letter-spacing:-0.364160pt;}
.ls28{letter-spacing:-0.361067pt;}
.ls8c{letter-spacing:-0.358101pt;}
.ls5a{letter-spacing:-0.351838pt;}
.ls59{letter-spacing:-0.350551pt;}
.ls5c{letter-spacing:-0.350508pt;}
.ls49{letter-spacing:-0.323207pt;}
.ls8f{letter-spacing:-0.309867pt;}
.ls14{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.275747pt;}
.ls80{letter-spacing:-0.275713pt;}
.ls18{letter-spacing:-0.275595pt;}
.ls82{letter-spacing:-0.275561pt;}
.ls48{letter-spacing:-0.274573pt;}
.ls4f{letter-spacing:-0.272000pt;}
.ls1a{letter-spacing:-0.270047pt;}
.ls84{letter-spacing:-0.270013pt;}
.ls8b{letter-spacing:-0.265401pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls65{letter-spacing:-0.224000pt;}
.ls31{letter-spacing:-0.212267pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls68{letter-spacing:-0.171733pt;}
.ls40{letter-spacing:-0.146133pt;}
.ls21{letter-spacing:-0.117867pt;}
.ls29{letter-spacing:-0.102400pt;}
.ls2e{letter-spacing:-0.069333pt;}
.ls63{letter-spacing:-0.048000pt;}
.ls26{letter-spacing:-0.043520pt;}
.ls86{letter-spacing:-0.038400pt;}
.ls96{letter-spacing:-0.033280pt;}
.ls8e{letter-spacing:-0.030720pt;}
.ls69{letter-spacing:-0.023040pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.007340pt;}
.ls67{letter-spacing:0.017920pt;}
.ls97{letter-spacing:0.028160pt;}
.ls1{letter-spacing:0.032000pt;}
.ls41{letter-spacing:0.053867pt;}
.ls95{letter-spacing:0.062720pt;}
.ls61{letter-spacing:0.064000pt;}
.ls3f{letter-spacing:0.079467pt;}
.ls3c{letter-spacing:0.102400pt;}
.ls32{letter-spacing:0.115200pt;}
.ls51{letter-spacing:0.116070pt;}
.ls42{letter-spacing:0.117760pt;}
.ls2b{letter-spacing:0.117867pt;}
.ls43{letter-spacing:0.125333pt;}
.ls13{letter-spacing:0.128000pt;}
.ls8a{letter-spacing:0.140800pt;}
.ls66{letter-spacing:0.176640pt;}
.ls6a{letter-spacing:0.205867pt;}
.ls3a{letter-spacing:0.207467pt;}
.ls64{letter-spacing:0.208000pt;}
.ls22{letter-spacing:0.220267pt;}
.ls3e{letter-spacing:0.227733pt;}
.ls8d{letter-spacing:0.230400pt;}
.ls4d{letter-spacing:0.240000pt;}
.ls1e{letter-spacing:0.246187pt;}
.ls5f{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.266133pt;}
.ls87{letter-spacing:0.278933pt;}
.ls37{letter-spacing:0.285440pt;}
.ls11{letter-spacing:0.288000pt;}
.ls60{letter-spacing:0.304000pt;}
.ls4c{letter-spacing:0.326827pt;}
.ls2f{letter-spacing:0.330133pt;}
.ls1c{letter-spacing:0.332893pt;}
.ls4b{letter-spacing:0.348160pt;}
.ls20{letter-spacing:0.352000pt;}
.ls2c{letter-spacing:0.364160pt;}
.ls62{letter-spacing:0.480000pt;}
.ls4e{letter-spacing:0.672000pt;}
.ls94{letter-spacing:0.794667pt;}
.ls50{letter-spacing:0.843470pt;}
.ls70{letter-spacing:0.893965pt;}
.ls45{letter-spacing:0.893980pt;}
.ls76{letter-spacing:0.895199pt;}
.ls4{letter-spacing:0.895269pt;}
.ls57{letter-spacing:0.915831pt;}
.ls52{letter-spacing:0.915979pt;}
.ls7d{letter-spacing:0.939522pt;}
.ls79{letter-spacing:0.940342pt;}
.ls7b{letter-spacing:0.942283pt;}
.ls9{letter-spacing:0.942356pt;}
.ls7{letter-spacing:0.943108pt;}
.lsb{letter-spacing:0.943494pt;}
.ls1d{letter-spacing:0.946565pt;}
.ls56{letter-spacing:0.953034pt;}
.ls6f{letter-spacing:0.968044pt;}
.ls7e{letter-spacing:0.970561pt;}
.lsc{letter-spacing:0.970681pt;}
.ls7a{letter-spacing:0.971285pt;}
.ls8{letter-spacing:0.971406pt;}
.ls6c{letter-spacing:1.006348pt;}
.ls6d{letter-spacing:1.009204pt;}
.ls77{letter-spacing:1.010275pt;}
.ls5{letter-spacing:1.010400pt;}
.ls91{letter-spacing:1.413120pt;}
.ls38{letter-spacing:4.613120pt;}
.lse{letter-spacing:11.315970pt;}
.lsf{letter-spacing:11.369148pt;}
.ls54{letter-spacing:11.825458pt;}
.ls55{letter-spacing:11.869479pt;}
.ls89{letter-spacing:12.056502pt;}
.lsd{letter-spacing:14.559816pt;}
.ls6b{letter-spacing:40.901574pt;}
.ls6e{letter-spacing:40.941616pt;}
.ls44{letter-spacing:40.955366pt;}
.ls35{letter-spacing:47.323307pt;}
.ls2d{letter-spacing:48.016640pt;}
.ls0{letter-spacing:52.730027pt;}
.ls75{letter-spacing:106.721777pt;}
.ls3{letter-spacing:106.735029pt;}
.ls7c{letter-spacing:213.462410pt;}
.lsa{letter-spacing:213.488917pt;}
.ls78{letter-spacing:217.809755pt;}
.ls6{letter-spacing:217.836801pt;}
.ls2{letter-spacing:754.853120pt;}
.ws1{word-spacing:-58.880000pt;}
.ws32{word-spacing:-51.403029pt;}
.ws5e{word-spacing:-51.385771pt;}
.ws59{word-spacing:-51.335514pt;}
.ws0{word-spacing:-33.701120pt;}
.ws18{word-spacing:-31.077120pt;}
.ws99{word-spacing:-20.031787pt;}
.ws98{word-spacing:-19.237120pt;}
.ws23{word-spacing:-15.621120pt;}
.ws28{word-spacing:-15.518720pt;}
.ws1f{word-spacing:-13.637013pt;}
.ws31{word-spacing:-13.573013pt;}
.ws30{word-spacing:-13.534613pt;}
.ws27{word-spacing:-13.514347pt;}
.ws55{word-spacing:-13.483520pt;}
.ws74{word-spacing:-13.447680pt;}
.ws2f{word-spacing:-13.432213pt;}
.ws1d{word-spacing:-13.424747pt;}
.ws21{word-spacing:-13.422080pt;}
.ws29{word-spacing:-13.409280pt;}
.ws2c{word-spacing:-13.386347pt;}
.ws2e{word-spacing:-13.360747pt;}
.ws9b{word-spacing:-13.335040pt;}
.ws73{word-spacing:-13.324800pt;}
.ws19{word-spacing:-13.306880pt;}
.ws56{word-spacing:-13.283840pt;}
.ws93{word-spacing:-13.276160pt;}
.ws9a{word-spacing:-13.273600pt;}
.ws95{word-spacing:-13.268480pt;}
.ws22{word-spacing:-13.263360pt;}
.ws1e{word-spacing:-13.237547pt;}
.ws1b{word-spacing:-13.204480pt;}
.ws2d{word-spacing:-13.160747pt;}
.ws58{word-spacing:-13.135147pt;}
.ws1a{word-spacing:-13.114880pt;}
.ws20{word-spacing:-13.094613pt;}
.ws2a{word-spacing:-12.894613pt;}
.ws97{word-spacing:-12.807680pt;}
.ws62{word-spacing:-12.784747pt;}
.ws96{word-spacing:-12.782080pt;}
.ws2b{word-spacing:-12.746880pt;}
.ws1c{word-spacing:-12.720213pt;}
.ws25{word-spacing:-12.597547pt;}
.ws26{word-spacing:-12.565547pt;}
.ws94{word-spacing:-12.474880pt;}
.ws53{word-spacing:-11.104000pt;}
.ws52{word-spacing:-11.056000pt;}
.ws4{word-spacing:-10.976000pt;}
.ws54{word-spacing:-10.912000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.832000pt;}
.ws51{word-spacing:-10.800000pt;}
.ws6{word-spacing:-10.608000pt;}
.ws3c{word-spacing:-10.576000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws34{word-spacing:-10.469384pt;}
.ws60{word-spacing:-10.465869pt;}
.ws5b{word-spacing:-10.455633pt;}
.ws39{word-spacing:-10.428795pt;}
.ws83{word-spacing:-10.084959pt;}
.ws8c{word-spacing:-10.079547pt;}
.ws7e{word-spacing:-10.065303pt;}
.ws82{word-spacing:-10.064036pt;}
.ws7b{word-spacing:-10.063206pt;}
.ws7d{word-spacing:-10.059511pt;}
.ws75{word-spacing:-10.056505pt;}
.ws88{word-spacing:-10.049397pt;}
.ws84{word-spacing:-10.049269pt;}
.ws8f{word-spacing:-10.044818pt;}
.ws7a{word-spacing:-10.042327pt;}
.ws80{word-spacing:-10.038056pt;}
.ws81{word-spacing:-10.017187pt;}
.ws40{word-spacing:-9.872334pt;}
.ws4d{word-spacing:-9.858267pt;}
.ws46{word-spacing:-9.849882pt;}
.ws42{word-spacing:-9.849646pt;}
.ws4a{word-spacing:-9.848291pt;}
.ws3f{word-spacing:-9.843098pt;}
.ws4c{word-spacing:-9.837772pt;}
.ws45{word-spacing:-9.829404pt;}
.ws41{word-spacing:-9.829168pt;}
.ws49{word-spacing:-9.827816pt;}
.ws3e{word-spacing:-9.822634pt;}
.ws16{word-spacing:-9.404228pt;}
.ws72{word-spacing:-9.403060pt;}
.ws57{word-spacing:-8.594987pt;}
.ws24{word-spacing:-8.389120pt;}
.ws3d{word-spacing:-7.232000pt;}
.ws8a{word-spacing:-6.545498pt;}
.ws86{word-spacing:-6.544672pt;}
.ws91{word-spacing:-6.530924pt;}
.ws78{word-spacing:-6.520374pt;}
.ws47{word-spacing:-6.409591pt;}
.ws43{word-spacing:-6.409437pt;}
.ws17{word-spacing:0.000000pt;}
.ws37{word-spacing:7.942703pt;}
.ws5a{word-spacing:8.135913pt;}
.ws5f{word-spacing:8.143878pt;}
.ws38{word-spacing:8.153324pt;}
.ws33{word-spacing:8.185057pt;}
.ws85{word-spacing:19.092799pt;}
.ws8d{word-spacing:19.150325pt;}
.ws76{word-spacing:19.749458pt;}
.ws36{word-spacing:30.389428pt;}
.ws92{word-spacing:39.125292pt;}
.ws87{word-spacing:39.142627pt;}
.ws8b{word-spacing:39.143126pt;}
.ws8e{word-spacing:39.260562pt;}
.ws68{word-spacing:41.252831pt;}
.wsc{word-spacing:41.257953pt;}
.ws89{word-spacing:41.907605pt;}
.ws90{word-spacing:41.925396pt;}
.ws77{word-spacing:42.530861pt;}
.ws67{word-spacing:52.596669pt;}
.wsb{word-spacing:52.603201pt;}
.ws79{word-spacing:65.297123pt;}
.ws63{word-spacing:85.382959pt;}
.ws7{word-spacing:85.393561pt;}
.ws64{word-spacing:85.671362pt;}
.ws8{word-spacing:85.682000pt;}
.ws7c{word-spacing:97.938235pt;}
.ws7f{word-spacing:98.040676pt;}
.ws5c{word-spacing:109.690082pt;}
.ws3b{word-spacing:109.719011pt;}
.ws61{word-spacing:109.797467pt;}
.ws4b{word-spacing:112.413487pt;}
.ws4f{word-spacing:112.427260pt;}
.ws4e{word-spacing:112.536014pt;}
.ws48{word-spacing:112.674676pt;}
.ws50{word-spacing:112.827713pt;}
.ws44{word-spacing:112.949170pt;}
.ws3a{word-spacing:125.568892pt;}
.ws5d{word-spacing:126.096860pt;}
.ws35{word-spacing:126.262697pt;}
.ws69{word-spacing:167.747688pt;}
.wsd{word-spacing:167.768518pt;}
.ws70{word-spacing:192.545884pt;}
.ws14{word-spacing:192.569793pt;}
.ws6f{word-spacing:192.734177pt;}
.ws13{word-spacing:192.758110pt;}
.ws6c{word-spacing:196.482696pt;}
.ws10{word-spacing:196.507094pt;}
.ws6d{word-spacing:196.655642pt;}
.ws11{word-spacing:196.680062pt;}
.ws6b{word-spacing:196.694075pt;}
.wsf{word-spacing:196.718499pt;}
.ws71{word-spacing:207.091770pt;}
.ws15{word-spacing:207.117486pt;}
.ws6e{word-spacing:211.346657pt;}
.ws12{word-spacing:211.372901pt;}
.ws6a{word-spacing:214.219453pt;}
.wse{word-spacing:214.246054pt;}
.ws65{word-spacing:214.606874pt;}
.ws9{word-spacing:214.633523pt;}
.ws66{word-spacing:251.999147pt;}
.wsa{word-spacing:252.030439pt;}
._2e{margin-left:-11.610009pt;}
._3{margin-left:-5.090987pt;}
._1{margin-left:-3.557973pt;}
._0{margin-left:-2.385920pt;}
._2{margin-left:-1.288107pt;}
._4{width:1.167360pt;}
._9{width:2.819188pt;}
._1a{width:4.121600pt;}
._1b{width:5.131958pt;}
._18{width:6.299733pt;}
._17{width:7.288320pt;}
._1e{width:8.432640pt;}
._21{width:9.719680pt;}
._1c{width:10.746027pt;}
._1d{width:11.863893pt;}
._22{width:14.494720pt;}
._19{width:16.074240pt;}
._25{width:17.185707pt;}
._28{width:18.114133pt;}
._27{width:19.211947pt;}
._2d{width:20.549120pt;}
._26{width:21.682347pt;}
._1f{width:23.374507pt;}
._20{width:24.305493pt;}
._2a{width:25.283413pt;}
._29{width:26.213547pt;}
._30{width:29.614535pt;}
._2b{width:30.676480pt;}
._2c{width:31.785387pt;}
._42{width:33.061973pt;}
._3d{width:34.789760pt;}
._3e{width:35.784747pt;}
._3a{width:37.621376pt;}
._23{width:41.274880pt;}
._24{width:42.385067pt;}
._41{width:49.336919pt;}
._37{width:50.775380pt;}
._43{width:51.852460pt;}
._34{width:60.409081pt;}
._8{width:63.067557pt;}
._33{width:66.685304pt;}
._44{width:67.722921pt;}
._32{width:75.811511pt;}
._35{width:77.259159pt;}
._36{width:79.197161pt;}
._40{width:90.027520pt;}
._3f{width:91.558400pt;}
._38{width:104.501574pt;}
._3b{width:111.644929pt;}
._3c{width:113.179341pt;}
._31{width:122.380383pt;}
._39{width:123.442470pt;}
._2f{width:138.430645pt;}
._a{width:220.211827pt;}
._c{width:226.917541pt;}
._14{width:237.910929pt;}
._10{width:242.799023pt;}
._b{width:251.659314pt;}
._12{width:257.368248pt;}
._5{width:258.507150pt;}
._7{width:261.576022pt;}
._d{width:262.682606pt;}
._15{width:264.188524pt;}
._f{width:267.600769pt;}
._11{width:269.616515pt;}
._6{width:282.248124pt;}
._13{width:285.197946pt;}
._e{width:291.057595pt;}
._16{width:848.998904pt;}
.fs33{font-size:28.265844pt;}
.fs37{font-size:28.356439pt;}
.fs2b{font-size:28.360339pt;}
.fs2e{font-size:28.361021pt;}
.fs36{font-size:28.385164pt;}
.fs58{font-size:28.851212pt;}
.fs5d{font-size:28.872073pt;}
.fs71{font-size:28.897893pt;}
.fs5c{font-size:28.915134pt;}
.fs67{font-size:28.958726pt;}
.fs6b{font-size:28.962380pt;}
.fs5e{font-size:28.964612pt;}
.fs52{font-size:29.467985pt;}
.fs14{font-size:29.471644pt;}
.fs51{font-size:29.862563pt;}
.fs4a{font-size:29.888641pt;}
.fs4e{font-size:29.950331pt;}
.fs10{font-size:29.952655pt;}
.fs3c{font-size:29.973083pt;}
.fsc{font-size:29.976558pt;}
.fs13{font-size:29.988820pt;}
.fs3e{font-size:30.058135pt;}
.fs1e{font-size:30.058629pt;}
.fs4b{font-size:30.073431pt;}
.fsd{font-size:30.077165pt;}
.fs44{font-size:30.090013pt;}
.fs6{font-size:30.093749pt;}
.fs43{font-size:30.099642pt;}
.fs5{font-size:30.101978pt;}
.fs22{font-size:32.000000pt;}
.fs18{font-size:37.120000pt;}
.fs46{font-size:39.222764pt;}
.fs8{font-size:39.227635pt;}
.fs45{font-size:39.318899pt;}
.fs7{font-size:39.323781pt;}
.fs54{font-size:41.606462pt;}
.fs16{font-size:41.611629pt;}
.fs25{font-size:43.462981pt;}
.fs31{font-size:43.485913pt;}
.fs29{font-size:43.491894pt;}
.fs2c{font-size:43.492939pt;}
.fs34{font-size:43.529964pt;}
.fs26{font-size:43.553529pt;}
.fs32{font-size:43.576509pt;}
.fs2a{font-size:43.582502pt;}
.fs2d{font-size:43.583549pt;}
.fs2f{font-size:43.586924pt;}
.fs24{font-size:43.592265pt;}
.fs35{font-size:43.620651pt;}
.fs30{font-size:43.677542pt;}
.fs23{font-size:43.682893pt;}
.fs28{font-size:43.752306pt;}
.fs38{font-size:43.838487pt;}
.fs27{font-size:43.843267pt;}
.fs70{font-size:44.316257pt;}
.fs62{font-size:44.323836pt;}
.fs6e{font-size:44.353887pt;}
.fs64{font-size:44.373539pt;}
.fs68{font-size:44.374104pt;}
.fs57{font-size:44.386480pt;}
.fs55{font-size:44.405493pt;}
.fs66{font-size:44.409548pt;}
.fs6a{font-size:44.415151pt;}
.fs61{font-size:44.416177pt;}
.fs5a{font-size:44.435077pt;}
.fs6f{font-size:44.446099pt;}
.fs65{font-size:44.465792pt;}
.fs69{font-size:44.466358pt;}
.fs56{font-size:44.497812pt;}
.fs6c{font-size:44.507234pt;}
.fs59{font-size:44.511112pt;}
.fs5b{font-size:44.527458pt;}
.fs60{font-size:44.531132pt;}
.fs5f{font-size:44.536738pt;}
.fs6d{font-size:44.599765pt;}
.fs63{font-size:44.623712pt;}
.fs4f{font-size:45.284667pt;}
.fs11{font-size:45.290290pt;}
.fs53{font-size:45.378814pt;}
.fs15{font-size:45.384449pt;}
.fs50{font-size:46.038118pt;}
.fs20{font-size:46.049375pt;}
.fs3b{font-size:46.060872pt;}
.fs49{font-size:46.078322pt;}
.fs47{font-size:46.117011pt;}
.fs9{font-size:46.120590pt;}
.fs1f{font-size:46.145112pt;}
.fs39{font-size:46.167879pt;}
.fs4d{font-size:46.173427pt;}
.fs21{font-size:46.174865pt;}
.fsf{font-size:46.177009pt;}
.fs3d{font-size:46.191575pt;}
.fs1d{font-size:46.192334pt;}
.fs40{font-size:46.213077pt;}
.fsb{font-size:46.213860pt;}
.fs48{font-size:46.215081pt;}
.fsa{font-size:46.220820pt;}
.fs1c{font-size:46.228597pt;}
.fs12{font-size:46.232763pt;}
.fs41{font-size:46.240563pt;}
.fs3{font-size:46.246305pt;}
.fs42{font-size:46.255361pt;}
.fs4{font-size:46.258950pt;}
.fs3a{font-size:46.263862pt;}
.fs3f{font-size:46.309154pt;}
.fs4c{font-size:46.311162pt;}
.fse{font-size:46.316913pt;}
.fs1b{font-size:46.324707pt;}
.fs2{font-size:48.000000pt;}
.fs17{font-size:54.374301pt;}
.fs0{font-size:58.880000pt;}
.fs1a{font-size:69.120000pt;}
.fs19{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y328{bottom:-52.572321pt;}
.y314{bottom:-52.479782pt;}
.y25{bottom:-48.200956pt;}
.y2a8{bottom:-48.194972pt;}
.y351{bottom:-46.323428pt;}
.y349{bottom:-46.320993pt;}
.y29{bottom:-43.826306pt;}
.y2ac{bottom:-43.820864pt;}
.y327{bottom:-38.043745pt;}
.y313{bottom:-37.974341pt;}
.y24{bottom:-30.510062pt;}
.y2a7{bottom:-30.506274pt;}
.y28{bottom:-30.005295pt;}
.y2ab{bottom:-30.001569pt;}
.y34f{bottom:-24.620709pt;}
.y347{bottom:-24.618550pt;}
.y326{bottom:-23.515170pt;}
.y312{bottom:-23.445766pt;}
.y4d{bottom:-22.763785pt;}
.y2d0{bottom:-22.760958pt;}
.y35{bottom:-22.276321pt;}
.y2b8{bottom:-22.273555pt;}
.y363{bottom:-19.346040pt;}
.y27{bottom:-16.184284pt;}
.y2aa{bottom:-16.182274pt;}
.y35a{bottom:-15.950430pt;}
.y23{bottom:-12.843205pt;}
.y2a6{bottom:-12.841610pt;}
.y34e{bottom:-11.059392pt;}
.y346{bottom:-11.057406pt;}
.y325{bottom:-8.986873pt;}
.y311{bottom:-8.917469pt;}
.y350{bottom:-0.149931pt;}
.y348{bottom:-0.148518pt;}
.y0{bottom:0.000000pt;}
.y361{bottom:2.346699pt;}
.y2cf{bottom:3.176329pt;}
.y4c{bottom:3.176723pt;}
.y1a2{bottom:3.200000pt;}
.y22e{bottom:3.226667pt;}
.y34a{bottom:3.378797pt;}
.y342{bottom:3.380138pt;}
.y2b7{bottom:4.196445pt;}
.y34{bottom:4.196966pt;}
.y1a4{bottom:4.480000pt;}
.y1ab{bottom:4.506667pt;}
.y1a6{bottom:4.640000pt;}
.y2c4{bottom:5.037095pt;}
.y41{bottom:5.037781pt;}
.y358{bottom:5.817586pt;}
.y340{bottom:6.087189pt;}
.y31d{bottom:6.536493pt;}
.y309{bottom:6.605897pt;}
.y28f{bottom:6.653948pt;}
.y273{bottom:6.654030pt;}
.y18f{bottom:6.964868pt;}
.y281{bottom:6.989627pt;}
.y183{bottom:6.991974pt;}
.y2a5{bottom:7.250636pt;}
.y22{bottom:7.251536pt;}
.y1d9{bottom:10.642225pt;}
.y1f0{bottom:10.715107pt;}
.y2fd{bottom:10.776752pt;}
.y1e6{bottom:10.852436pt;}
.y1fa{bottom:11.011036pt;}
.y1ce{bottom:11.146978pt;}
.y20a{bottom:11.181296pt;}
.y322{bottom:11.718938pt;}
.y30e{bottom:11.788342pt;}
.y5d{bottom:11.889758pt;}
.y21b{bottom:14.560000pt;}
.y241{bottom:14.600000pt;}
.y214{bottom:14.720000pt;}
.y360{bottom:15.901929pt;}
.y1a8{bottom:16.000000pt;}
.y31e{bottom:16.831701pt;}
.y30a{bottom:16.901105pt;}
.y1cc{bottom:16.992511pt;}
.y320{bottom:17.641414pt;}
.y30c{bottom:17.733953pt;}
.y20e{bottom:17.920000pt;}
.y323{bottom:18.150377pt;}
.y30f{bottom:18.219781pt;}
.y357{bottom:19.419404pt;}
.y359{bottom:22.588578pt;}
.y31f{bottom:23.263140pt;}
.y30b{bottom:23.332544pt;}
.y321{bottom:24.095988pt;}
.y30d{bottom:24.165392pt;}
.y2a3{bottom:24.266201pt;}
.y20{bottom:24.269215pt;}
.y34b{bottom:25.611515pt;}
.y343{bottom:25.613034pt;}
.y33f{bottom:25.621728pt;}
.y28e{bottom:26.642912pt;}
.y272{bottom:26.642994pt;}
.y18e{bottom:26.902141pt;}
.y280{bottom:26.997776pt;}
.y182{bottom:27.006843pt;}
.y32f{bottom:27.380754pt;}
.y2ce{bottom:27.631178pt;}
.y4b{bottom:27.634610pt;}
.y362{bottom:27.728095pt;}
.y5c{bottom:27.875803pt;}
.y1d6{bottom:29.039115pt;}
.y1ed{bottom:29.065111pt;}
.y2b6{bottom:29.153933pt;}
.y33{bottom:29.157554pt;}
.y1e3{bottom:29.204689pt;}
.y1f7{bottom:29.340631pt;}
.y207{bottom:29.576180pt;}
.y35c{bottom:30.333079pt;}
.y2c3{bottom:31.507863pt;}
.y40{bottom:31.511837pt;}
.y224{bottom:32.480000pt;}
.y2fb{bottom:32.494823pt;}
.y334{bottom:32.565252pt;}
.y353{bottom:33.900448pt;}
.y330{bottom:37.680315pt;}
.y332{bottom:38.513537pt;}
.y335{bottom:39.022729pt;}
.y29d{bottom:39.287174pt;}
.y1a{bottom:39.292053pt;}
.y5b{bottom:43.895615pt;}
.y331{bottom:44.137792pt;}
.y2cc{bottom:44.295183pt;}
.y49{bottom:44.300683pt;}
.y333{bottom:44.947869pt;}
.y33e{bottom:45.156175pt;}
.y2fa{bottom:46.065732pt;}
.y2b4{bottom:46.160315pt;}
.y31{bottom:46.166047pt;}
.y28c{bottom:46.511418pt;}
.y270{bottom:46.511499pt;}
.y18c{bottom:46.719647pt;}
.y27e{bottom:46.885732pt;}
.y180{bottom:46.901478pt;}
.y211{bottom:47.200000pt;}
.y34c{bottom:47.821631pt;}
.y344{bottom:47.822867pt;}
.y315{bottom:48.202318pt;}
.y2ff{bottom:48.271722pt;}
.y2fc{bottom:49.227662pt;}
.y2{bottom:51.040000pt;}
.y35d{bottom:52.556128pt;}
.y354{bottom:56.200330pt;}
.y2c2{bottom:56.464968pt;}
.y3f{bottom:56.472040pt;}
.y2a9{bottom:56.495201pt;}
.y26{bottom:56.502216pt;}
.y1cb{bottom:58.205780pt;}
.y2c6{bottom:59.005638pt;}
.y43{bottom:59.012965pt;}
.y2f6{bottom:60.513673pt;}
.y2ae{bottom:61.173010pt;}
.y2b{bottom:61.180606pt;}
.y283{bottom:61.532775pt;}
.y268{bottom:61.532857pt;}
.y185{bottom:61.702448pt;}
.y275{bottom:61.921795pt;}
.y176{bottom:61.942591pt;}
.y23c{bottom:61.960000pt;}
.y33d{bottom:64.713767pt;}
.y300{bottom:65.830940pt;}
.y181{bottom:66.675977pt;}
.y1ef{bottom:67.260306pt;}
.y201{bottom:68.038962pt;}
.y1cd{bottom:68.084276pt;}
.y29e{bottom:68.439878pt;}
.y1b{bottom:68.448377pt;}
.y1{bottom:68.992000pt;}
.y32a{bottom:69.088187pt;}
.y1dc{bottom:69.107495pt;}
.y2a4{bottom:69.208952pt;}
.y21{bottom:69.217546pt;}
.y34d{bottom:70.031746pt;}
.y345{bottom:70.032699pt;}
.y1e8{bottom:70.273331pt;}
.y1d0{bottom:70.426431pt;}
.y1de{bottom:70.440615pt;}
.y1f2{bottom:70.576557pt;}
.y316{bottom:70.758625pt;}
.y310{bottom:70.851164pt;}
.y203{bottom:70.958984pt;}
.y1e5{bottom:71.550813pt;}
.y1f9{bottom:71.664098pt;}
.y1db{bottom:71.836329pt;}
.y2c0{bottom:73.471349pt;}
.y3d{bottom:73.480533pt;}
.y200{bottom:73.499324pt;}
.y1d7{bottom:74.701604pt;}
.y35e{bottom:74.756125pt;}
.y209{bottom:75.210953pt;}
.y177{bottom:76.431076pt;}
.y23b{bottom:76.520000pt;}
.y1ca{bottom:76.739289pt;}
.y324{bottom:77.560219pt;}
.y284{bottom:77.825909pt;}
.y1d8{bottom:77.998946pt;}
.y1e4{bottom:78.098715pt;}
.y1ee{bottom:78.157037pt;}
.y276{bottom:78.230880pt;}
.y355{bottom:78.477080pt;}
.y208{bottom:80.145057pt;}
.y269{bottom:80.153581pt;}
.y1d1{bottom:82.410561pt;}
.y1f8{bottom:82.584822pt;}
.y1fc{bottom:82.652793pt;}
.y2f7{bottom:82.762579pt;}
.y186{bottom:83.362887pt;}
.y301{bottom:83.367023pt;}
.y33c{bottom:84.248214pt;}
.y1e9{bottom:85.383767pt;}
.y1df{bottom:85.530245pt;}
.y1f3{bottom:85.688845pt;}
.y2c7{bottom:87.555691pt;}
.y44{bottom:87.566563pt;}
.y2ba{bottom:88.484044pt;}
.y37{bottom:88.495092pt;}
.y2af{bottom:90.309649pt;}
.y2c{bottom:90.320863pt;}
.y178{bottom:90.943588pt;}
.y204{bottom:91.169254pt;}
.y317{bottom:93.314007pt;}
.y285{bottom:94.119044pt;}
.y1d2{bottom:94.421978pt;}
.y277{bottom:94.515946pt;}
.y1fd{bottom:94.748060pt;}
.y2cd{bottom:95.088385pt;}
.y4a{bottom:95.100193pt;}
.y1c9{bottom:95.273705pt;}
.y35f{bottom:96.951510pt;}
.y28d{bottom:97.067645pt;}
.y27f{bottom:97.469355pt;}
.y29f{bottom:97.595466pt;}
.y1c{bottom:97.607585pt;}
.y18d{bottom:97.698508pt;}
.y2b5{bottom:97.993266pt;}
.y32{bottom:98.005435pt;}
.y26a{bottom:98.776226pt;}
.y32b{bottom:99.411944pt;}
.y271{bottom:99.947220pt;}
.y1ea{bottom:100.491485pt;}
.y1e0{bottom:100.638907pt;}
.y356{bottom:100.756606pt;}
.y1f4{bottom:100.774850pt;}
.y302{bottom:100.929942pt;}
.y3cf{bottom:100.992000pt;}
.y13b{bottom:103.552000pt;}
.y266{bottom:103.712000pt;}
.y33b{bottom:103.781735pt;}
.y43e{bottom:104.032000pt;}
.y2f8{bottom:104.989328pt;}
.y187{bottom:105.022369pt;}
.y179{bottom:105.431111pt;}
.y37e{bottom:105.472000pt;}
.y1d3{bottom:106.401560pt;}
.y1fe{bottom:106.828827pt;}
.y3f5{bottom:107.392000pt;}
.yd5{bottom:108.032000pt;}
.y258{bottom:108.992000pt;}
.yeb{bottom:110.112000pt;}
.y286{bottom:110.409298pt;}
.y278{bottom:110.824070pt;}
.y437{bottom:111.232000pt;}
.y205{bottom:111.387709pt;}
.y2d9{bottom:112.157773pt;}
.y2db{bottom:112.290701pt;}
.y2d7{bottom:112.357165pt;}
.ya9{bottom:112.992000pt;}
.y1c8{bottom:113.807215pt;}
.y112{bottom:114.272000pt;}
.y29b{bottom:114.432000pt;}
.y40a{bottom:114.592000pt;}
.y1eb{bottom:115.606451pt;}
.y1e1{bottom:115.755726pt;}
.y1f5{bottom:115.891668pt;}
.y318{bottom:115.893449pt;}
.y2c8{bottom:116.101977pt;}
.y45{bottom:116.116394pt;}
.y379{bottom:116.192000pt;}
.y26b{bottom:117.396950pt;}
.y2bb{bottom:117.622605pt;}
.y38{bottom:117.637271pt;}
.y1d4{bottom:118.408430pt;}
.y303{bottom:118.484532pt;}
.y56{bottom:118.710132pt;}
.y58{bottom:118.876313pt;}
.y3ce{bottom:118.912000pt;}
.y1ff{bottom:118.927720pt;}
.y54{bottom:118.942785pt;}
.y7b{bottom:119.232000pt;}
.y2b0{bottom:119.448209pt;}
.y2d{bottom:119.463042pt;}
.y17a{bottom:119.943623pt;}
.y218{bottom:120.480000pt;}
.y43d{bottom:121.952000pt;}
.y15a{bottom:122.592000pt;}
.y13a{bottom:122.912000pt;}
.y265{bottom:123.072000pt;}
.y33a{bottom:123.316181pt;}
.y37d{bottom:124.832000pt;}
.y2d8{bottom:124.952092pt;}
.y2da{bottom:125.085020pt;}
.y2d6{bottom:125.151484pt;}
.y2c1{bottom:125.309104pt;}
.y3f4{bottom:125.312000pt;}
.y3e{bottom:125.324726pt;}
.y3a9{bottom:126.112000pt;}
.y188{bottom:126.687595pt;}
.y287{bottom:126.707231pt;}
.y2a0{bottom:126.743364pt;}
.y1d{bottom:126.759102pt;}
.y279{bottom:127.137958pt;}
.y2f9{bottom:127.210539pt;}
.yd4{bottom:127.392000pt;}
.y257{bottom:128.352000pt;}
.y18{bottom:129.152000pt;}
.yea{bottom:129.312000pt;}
.y1c5{bottom:129.472000pt;}
.y32c{bottom:129.731997pt;}
.y1d5{bottom:130.397107pt;}
.y1ec{bottom:130.712356pt;}
.y1e2{bottom:130.863481pt;}
.y1f6{bottom:130.999424pt;}
.y55{bottom:131.506041pt;}
.y206{bottom:131.597070pt;}
.y57{bottom:131.672221pt;}
.y53{bottom:131.738693pt;}
.y1c7{bottom:132.340724pt;}
.ya8{bottom:132.352000pt;}
.y409{bottom:132.512000pt;}
.y111{bottom:133.466667pt;}
.y29a{bottom:133.786667pt;}
.y17b{bottom:134.436913pt;}
.y217{bottom:135.040000pt;}
.y378{bottom:135.546667pt;}
.y26c{bottom:136.017675pt;}
.y304{bottom:136.020615pt;}
.y319{bottom:138.454382pt;}
.y436{bottom:139.866667pt;}
.y2f4{bottom:140.026667pt;}
.y159{bottom:141.786667pt;}
.y139{bottom:142.266667pt;}
.y264{bottom:142.426667pt;}
.y339{bottom:142.850628pt;}
.y288{bottom:142.995566pt;}
.y3f3{bottom:143.226667pt;}
.y27a{bottom:143.442239pt;}
.y2d5{bottom:143.599231pt;}
.y37c{bottom:144.186667pt;}
.y2c9{bottom:144.656737pt;}
.y46{bottom:144.674699pt;}
.y249{bottom:145.466667pt;}
.yd3{bottom:146.746667pt;}
.y2bc{bottom:146.754439pt;}
.y39{bottom:146.772724pt;}
.y3cd{bottom:147.546667pt;}
.y256{bottom:147.706667pt;}
.y189{bottom:148.343247pt;}
.y2b1{bottom:148.580044pt;}
.y2e{bottom:148.598494pt;}
.ye9{bottom:148.666667pt;}
.y1c4{bottom:148.826667pt;}
.y17c{bottom:148.920592pt;}
.y7a{bottom:149.146667pt;}
.y52{bottom:150.147518pt;}
.y408{bottom:150.426667pt;}
.ya7{bottom:151.546667pt;}
.y110{bottom:152.826667pt;}
.y299{bottom:153.146667pt;}
.y305{bottom:153.584459pt;}
.y26d{bottom:154.638400pt;}
.y377{bottom:154.906667pt;}
.y2a1{bottom:155.872034pt;}
.y1e{bottom:155.891390pt;}
.y3a8{bottom:156.026667pt;}
.y2d4{bottom:156.386904pt;}
.y435{bottom:157.786667pt;}
.y289{bottom:159.293500pt;}
.y2f3{bottom:159.386667pt;}
.y27b{bottom:159.756128pt;}
.y32d{bottom:160.052051pt;}
.y31a{bottom:161.033824pt;}
.y158{bottom:161.146667pt;}
.y138{bottom:161.626667pt;}
.y263{bottom:161.786667pt;}
.y338{bottom:162.385075pt;}
.y51{bottom:162.950074pt;}
.y17d{bottom:163.433104pt;}
.y37b{bottom:163.546667pt;}
.y3cc{bottom:165.466667pt;}
.y248{bottom:165.946667pt;}
.yd2{bottom:166.106667pt;}
.y255{bottom:167.066667pt;}
.ye8{bottom:168.026667pt;}
.y1c3{bottom:168.186667pt;}
.y407{bottom:168.346667pt;}
.y79{bottom:168.506667pt;}
.y18a{bottom:170.027620pt;}
.ya6{bottom:170.906667pt;}
.y306{bottom:171.139049pt;}
.y10f{bottom:172.186667pt;}
.y2ca{bottom:173.183252pt;}
.y47{bottom:173.204757pt;}
.y26e{bottom:173.259124pt;}
.y376{bottom:174.106667pt;}
.y3a7{bottom:175.386667pt;}
.y434{bottom:175.546667pt;}
.y28a{bottom:175.581834pt;}
.y2bd{bottom:175.895882pt;}
.y3a{bottom:175.917785pt;}
.y27c{bottom:176.060409pt;}
.y2b2{bottom:177.692662pt;}
.y2f{bottom:177.714728pt;}
.y17e{bottom:177.926394pt;}
.y174{bottom:177.946667pt;}
.y2f2{bottom:178.586667pt;}
.y3f2{bottom:179.066667pt;}
.y157{bottom:180.506667pt;}
.y247{bottom:180.666667pt;}
.y137{bottom:180.826667pt;}
.y337{bottom:181.919521pt;}
.y167{bottom:182.746667pt;}
.y298{bottom:183.066667pt;}
.y3cb{bottom:183.386667pt;}
.y31b{bottom:183.585504pt;}
.y17{bottom:184.666667pt;}
.y2a2{bottom:185.029545pt;}
.y1f{bottom:185.052521pt;}
.yd1{bottom:185.306667pt;}
.y254{bottom:186.266667pt;}
.ye7{bottom:187.386667pt;}
.y307{bottom:188.675132pt;}
.y2d3{bottom:188.887799pt;}
.y1bc{bottom:190.106667pt;}
.ya5{bottom:190.266667pt;}
.y32e{bottom:190.390620pt;}
.y10e{bottom:191.546667pt;}
.y18b{bottom:191.692846pt;}
.y262{bottom:191.706667pt;}
.y28b{bottom:191.879768pt;}
.y26f{bottom:191.879849pt;}
.y27d{bottom:192.374298pt;}
.y17f{bottom:192.438906pt;}
.y375{bottom:193.466667pt;}
.y22a{bottom:193.626667pt;}
.y3a6{bottom:194.746667pt;}
.y246{bottom:195.226667pt;}
.y50{bottom:195.481593pt;}
.y2dd{bottom:196.863478pt;}
.y3f1{bottom:196.986667pt;}
.y2f1{bottom:197.946667pt;}
.y78{bottom:198.426667pt;}
.y156{bottom:199.866667pt;}
.y136{bottom:200.186667pt;}
.y16{bottom:200.346667pt;}
.y336{bottom:201.453968pt;}
.y2d2{bottom:201.688765pt;}
.y2cb{bottom:201.728597pt;}
.y48{bottom:201.753647pt;}
.y166{bottom:202.106667pt;}
.y5a{bottom:203.431674pt;}
.y433{bottom:204.186667pt;}
.yd0{bottom:204.666667pt;}
.y2be{bottom:205.008501pt;}
.y3b{bottom:205.034019pt;}
.y253{bottom:205.626667pt;}
.y31c{bottom:206.164946pt;}
.y308{bottom:206.238977pt;}
.y2b3{bottom:206.834105pt;}
.y30{bottom:206.859789pt;}
.y1c2{bottom:207.546667pt;}
.y4f{bottom:208.284148pt;}
.y173{bottom:208.346667pt;}
.y2de{bottom:209.624566pt;}
.ya4{bottom:209.626667pt;}
.y2dc{bottom:209.664444pt;}
.y245{bottom:209.946667pt;}
.y10d{bottom:210.746667pt;}
.y3ca{bottom:211.866667pt;}
.y2e8{bottom:212.826667pt;}
.y297{bottom:213.466667pt;}
.y3a5{bottom:214.106667pt;}
.y3f0{bottom:214.906667pt;}
.y59{bottom:216.220935pt;}
.ye6{bottom:217.306667pt;}
.y155{bottom:219.066667pt;}
.y135{bottom:219.546667pt;}
.y1bb{bottom:220.026667pt;}
.y165{bottom:221.466667pt;}
.y261{bottom:222.106667pt;}
.y229{bottom:222.906667pt;}
.y172{bottom:223.066667pt;}
.ycf{bottom:224.026667pt;}
.y244{bottom:224.506667pt;}
.y252{bottom:224.986667pt;}
.y41b{bottom:225.466667pt;}
.y15{bottom:227.066667pt;}
.y296{bottom:228.186667pt;}
.y77{bottom:228.506667pt;}
.ya3{bottom:228.826667pt;}
.y3c9{bottom:229.786667pt;}
.y10c{bottom:230.106667pt;}
.y2e7{bottom:232.186667pt;}
.y3ef{bottom:232.826667pt;}
.y3a4{bottom:233.306667pt;}
.y2bf{bottom:234.140336pt;}
.y3c{bottom:234.169471pt;}
.y38b{bottom:235.706667pt;}
.ye5{bottom:236.666667pt;}
.y260{bottom:236.826667pt;}
.y171{bottom:237.786667pt;}
.y154{bottom:238.426667pt;}
.y134{bottom:238.906667pt;}
.y243{bottom:239.226667pt;}
.y1ba{bottom:239.386667pt;}
.y432{bottom:240.026667pt;}
.y1c1{bottom:240.346667pt;}
.y164{bottom:240.826667pt;}
.yce{bottom:243.386667pt;}
.y23a{bottom:247.226667pt;}
.y76{bottom:247.706667pt;}
.ya2{bottom:248.186667pt;}
.y389{bottom:249.466667pt;}
.y43c{bottom:250.586667pt;}
.y25f{bottom:251.386667pt;}
.y295{bottom:251.706667pt;}
.y2d1{bottom:251.882880pt;}
.y2b9{bottom:251.882961pt;}
.y3a3{bottom:252.666667pt;}
.y14{bottom:253.466667pt;}
.y251{bottom:254.906667pt;}
.ye4{bottom:256.026667pt;}
.y153{bottom:257.786667pt;}
.y431{bottom:257.946667pt;}
.y1b9{bottom:258.746667pt;}
.y10b{bottom:260.026667pt;}
.y170{bottom:261.306667pt;}
.y242{bottom:261.946667pt;}
.y175{bottom:262.239926pt;}
.ycd{bottom:263.546667pt;}
.y3c8{bottom:265.626667pt;}
.y25e{bottom:266.106667pt;}
.y75{bottom:267.066667pt;}
.ya1{bottom:267.546667pt;}
.y43b{bottom:268.506667pt;}
.y133{bottom:268.826667pt;}
.y13{bottom:269.146667pt;}
.y2c5{bottom:269.429154pt;}
.y1c0{bottom:270.586667pt;}
.y2e6{bottom:270.746667pt;}
.y250{bottom:274.266667pt;}
.y3a2{bottom:274.426667pt;}
.ye3{bottom:275.226667pt;}
.y240{bottom:276.666667pt;}
.y152{bottom:277.146667pt;}
.y1b8{bottom:278.106667pt;}
.y3ee{bottom:279.226667pt;}
.y10a{bottom:279.386667pt;}
.y3c7{bottom:283.546667pt;}
.y2ad{bottom:284.582945pt;}
.y12{bottom:284.986667pt;}
.y1bf{bottom:285.306667pt;}
.y74{bottom:286.426667pt;}
.ya0{bottom:286.906667pt;}
.y388{bottom:288.026667pt;}
.y132{bottom:288.186667pt;}
.y25d{bottom:289.626667pt;}
.y41a{bottom:289.946667pt;}
.y2e5{bottom:290.106667pt;}
.ycc{bottom:290.586667pt;}
.y23f{bottom:291.266667pt;}
.y24f{bottom:293.666667pt;}
.ye2{bottom:294.626667pt;}
.y151{bottom:296.386667pt;}
.y406{bottom:297.186667pt;}
.y1b7{bottom:297.346667pt;}
.y109{bottom:298.786667pt;}
.y1be{bottom:300.066667pt;}
.y430{bottom:304.386667pt;}
.y73{bottom:305.826667pt;}
.y23e{bottom:305.986667pt;}
.y9f{bottom:306.146667pt;}
.y131{bottom:307.426667pt;}
.y3ed{bottom:307.746667pt;}
.y419{bottom:307.906667pt;}
.y2e4{bottom:309.506667pt;}
.y11{bottom:311.586667pt;}
.y3c6{bottom:312.066667pt;}
.y24e{bottom:313.026667pt;}
.ye1{bottom:313.986667pt;}
.y405{bottom:315.106667pt;}
.y150{bottom:315.746667pt;}
.y3a1{bottom:316.226667pt;}
.y29c{bottom:316.485663pt;}
.y1b6{bottom:316.706667pt;}
.y108{bottom:318.146667pt;}
.y374{bottom:320.066667pt;}
.y23d{bottom:320.546667pt;}
.y42f{bottom:322.306667pt;}
.y1bd{bottom:323.586667pt;}
.y202{bottom:323.693333pt;}
.y72{bottom:325.026667pt;}
.y9e{bottom:325.506667pt;}
.y3ec{bottom:325.666667pt;}
.y130{bottom:326.786667pt;}
.y2e3{bottom:328.706667pt;}
.y3c5{bottom:329.986667pt;}
.ycb{bottom:332.226667pt;}
.y404{bottom:333.026667pt;}
.ye0{bottom:333.346667pt;}
.y14f{bottom:335.106667pt;}
.y228{bottom:335.906667pt;}
.y1b5{bottom:336.066667pt;}
.y163{bottom:337.506667pt;}
.y10{bottom:339.106667pt;}
.y373{bottom:339.426667pt;}
.y38a{bottom:342.946667pt;}
.y3eb{bottom:343.586667pt;}
.y71{bottom:344.386667pt;}
.y9d{bottom:344.866667pt;}
.y12f{bottom:346.146667pt;}
.y3c4{bottom:347.906667pt;}
.y107{bottom:348.066667pt;}
.y239{bottom:350.466667pt;}
.y403{bottom:350.946667pt;}
.y24d{bottom:351.586667pt;}
.ydf{bottom:352.546667pt;}
.y418{bottom:354.306667pt;}
.y14e{bottom:354.466667pt;}
.y1b4{bottom:355.426667pt;}
.y162{bottom:356.706667pt;}
.y372{bottom:358.786667pt;}
.yca{bottom:362.306667pt;}
.y70{bottom:363.746667pt;}
.y9c{bottom:364.226667pt;}
.y238{bottom:365.186667pt;}
.y3a0{bottom:365.506667pt;}
.y12e{bottom:366.306667pt;}
.y106{bottom:367.426667pt;}
.y402{bottom:368.866667pt;}
.yf{bottom:369.026667pt;}
.y24c{bottom:370.946667pt;}
.yde{bottom:371.906667pt;}
.y3ea{bottom:372.226667pt;}
.y14d{bottom:373.666667pt;}
.y1b3{bottom:374.626667pt;}
.y161{bottom:376.066667pt;}
.y3c3{bottom:376.546667pt;}
.y371{bottom:378.146667pt;}
.y237{bottom:379.906667pt;}
.yc9{bottom:381.666667pt;}
.y6f{bottom:383.106667pt;}
.y9b{bottom:383.426667pt;}
.y39f{bottom:384.866667pt;}
.y12d{bottom:385.506667pt;}
.y401{bottom:386.626667pt;}
.y105{bottom:386.786667pt;}
.ye{bottom:389.026667pt;}
.y3e9{bottom:390.146667pt;}
.ydd{bottom:391.266667pt;}
.y236{bottom:394.466667pt;}
.y160{bottom:395.426667pt;}
.y370{bottom:397.346667pt;}
.yc8{bottom:400.866667pt;}
.y1fb{bottom:401.670536pt;}
.y6e{bottom:402.306667pt;}
.y9a{bottom:402.786667pt;}
.y14c{bottom:403.746667pt;}
.y39e{bottom:404.066667pt;}
.y42e{bottom:404.546667pt;}
.y1b2{bottom:404.706667pt;}
.y12c{bottom:404.866667pt;}
.y104{bottom:405.986667pt;}
.y3e8{bottom:408.066667pt;}
.yd{bottom:409.186667pt;}
.y2f0{bottom:410.626667pt;}
.y15f{bottom:414.786667pt;}
.y400{bottom:415.266667pt;}
.y36f{bottom:416.706667pt;}
.yc7{bottom:420.226667pt;}
.ydc{bottom:421.186667pt;}
.y6d{bottom:421.666667pt;}
.y99{bottom:422.146667pt;}
.y14b{bottom:422.946667pt;}
.y39d{bottom:423.426667pt;}
.y235{bottom:423.746667pt;}
.y12b{bottom:424.226667pt;}
.y103{bottom:425.346667pt;}
.y3e7{bottom:425.986667pt;}
.yc{bottom:429.346667pt;}
.y2ef{bottom:429.826667pt;}
.y3ff{bottom:433.186667pt;}
.y15e{bottom:433.986667pt;}
.y36e{bottom:436.066667pt;}
.y417{bottom:436.546667pt;}
.y1b1{bottom:437.026667pt;}
.y234{bottom:438.466667pt;}
.yc6{bottom:439.586667pt;}
.y3c2{bottom:440.866667pt;}
.y6c{bottom:441.026667pt;}
.y98{bottom:441.506667pt;}
.y14a{bottom:443.106667pt;}
.y12a{bottom:443.586667pt;}
.y3e6{bottom:443.906667pt;}
.y102{bottom:444.706667pt;}
.y1b0{bottom:445.026667pt;}
.y2ee{bottom:449.186667pt;}
.yb{bottom:449.346667pt;}
.y42d{bottom:451.106667pt;}
.ydb{bottom:451.586667pt;}
.y233{bottom:453.026667pt;}
.y387{bottom:453.346667pt;}
.y416{bottom:454.466667pt;}
.y2e2{bottom:455.426667pt;}
.yc5{bottom:458.946667pt;}
.y6b{bottom:460.386667pt;}
.y97{bottom:460.706667pt;}
.y1af{bottom:461.666667pt;}
.y149{bottom:462.466667pt;}
.y129{bottom:463.586667pt;}
.y101{bottom:464.066667pt;}
.y36d{bottom:465.986667pt;}
.yda{bottom:466.306667pt;}
.y232{bottom:467.746667pt;}
.y42c{bottom:469.026667pt;}
.y3c1{bottom:469.346667pt;}
.y415{bottom:472.386667pt;}
.y39c{bottom:472.706667pt;}
.y2e1{bottom:474.626667pt;}
.y1ae{bottom:477.666667pt;}
.yc4{bottom:478.146667pt;}
.y184{bottom:478.621521pt;}
.y2ed{bottom:479.106667pt;}
.y6a{bottom:479.586667pt;}
.y1f1{bottom:480.167102pt;}
.ya{bottom:480.226667pt;}
.yd9{bottom:481.026667pt;}
.y148{bottom:481.826667pt;}
.y231{bottom:482.306667pt;}
.y128{bottom:482.946667pt;}
.y15d{bottom:483.266667pt;}
.y36c{bottom:485.346667pt;}
.y3c0{bottom:487.266667pt;}
.y414{bottom:490.306667pt;}
.y96{bottom:490.786667pt;}
.y39b{bottom:492.066667pt;}
.y100{bottom:493.986667pt;}
.y1ad{bottom:494.466667pt;}
.y230{bottom:497.026667pt;}
.yc3{bottom:497.506667pt;}
.y69{bottom:498.946667pt;}
.y147{bottom:501.826667pt;}
.y127{bottom:502.306667pt;}
.y386{bottom:502.626667pt;}
.yd8{bottom:504.546667pt;}
.y36b{bottom:504.706667pt;}
.y3bf{bottom:505.186667pt;}
.y9{bottom:506.146667pt;}
.y3e5{bottom:508.226667pt;}
.y4e{bottom:509.093333pt;}
.y2ec{bottom:509.506667pt;}
.y95{bottom:510.146667pt;}
.y1ac{bottom:511.106667pt;}
.y39a{bottom:511.426667pt;}
.y22f{bottom:511.746667pt;}
.yff{bottom:513.346667pt;}
.y42b{bottom:515.426667pt;}
.y36{bottom:516.263562pt;}
.yc2{bottom:516.866667pt;}
.y68{bottom:518.306667pt;}
.y146{bottom:521.186667pt;}
.y126{bottom:521.506667pt;}
.y25c{bottom:521.666667pt;}
.y385{bottom:521.986667pt;}
.y36a{bottom:524.066667pt;}
.y2eb{bottom:524.226667pt;}
.y3e4{bottom:526.146667pt;}
.y22d{bottom:526.306667pt;}
.y1aa{bottom:527.746667pt;}
.y94{bottom:529.373333pt;}
.y399{bottom:530.653333pt;}
.yfe{bottom:532.733333pt;}
.y42a{bottom:533.373333pt;}
.y42{bottom:533.811704pt;}
.y3be{bottom:533.853333pt;}
.yc1{bottom:536.253333pt;}
.y413{bottom:536.733333pt;}
.y67{bottom:537.693333pt;}
.y2ea{bottom:538.973333pt;}
.y22c{bottom:541.053333pt;}
.y384{bottom:541.373333pt;}
.y125{bottom:541.693333pt;}
.y369{bottom:543.293333pt;}
.y3e3{bottom:544.093333pt;}
.y1a9{bottom:544.413333pt;}
.y24b{bottom:546.813333pt;}
.y93{bottom:548.733333pt;}
.y2a{bottom:548.967377pt;}
.y398{bottom:550.013333pt;}
.y3bd{bottom:551.773333pt;}
.yfd{bottom:551.933333pt;}
.y25b{bottom:552.093333pt;}
.y3fe{bottom:554.653333pt;}
.yc0{bottom:555.453333pt;}
.y22b{bottom:555.613333pt;}
.y66{bottom:556.893333pt;}
.y1e7{bottom:558.683578pt;}
.y383{bottom:560.733333pt;}
.y124{bottom:561.053333pt;}
.y429{bottom:561.853333pt;}
.y43a{bottom:562.013333pt;}
.y2e9{bottom:562.493333pt;}
.y294{bottom:562.653333pt;}
.y2fe{bottom:562.760000pt;}
.y329{bottom:563.527930pt;}
.y24a{bottom:566.173333pt;}
.y25a{bottom:566.813333pt;}
.y92{bottom:568.093333pt;}
.y3bc{bottom:569.693333pt;}
.y223{bottom:570.973333pt;}
.yfc{bottom:571.293333pt;}
.y3e2{bottom:572.573333pt;}
.ybf{bottom:574.813333pt;}
.y1a7{bottom:577.053333pt;}
.y65{bottom:578.653333pt;}
.y428{bottom:579.773333pt;}
.y382{bottom:579.933333pt;}
.y19{bottom:580.076390pt;}
.y397{bottom:580.093333pt;}
.y123{bottom:580.413333pt;}
.y293{bottom:582.013333pt;}
.y227{bottom:585.533333pt;}
.y91{bottom:587.453333pt;}
.y259{bottom:590.333333pt;}
.y282{bottom:590.472553pt;}
.y274{bottom:590.482925pt;}
.y3e1{bottom:590.493333pt;}
.yfb{bottom:590.653333pt;}
.y1a5{bottom:593.693333pt;}
.y3bb{bottom:598.173333pt;}
.y381{bottom:599.293333pt;}
.y122{bottom:599.613333pt;}
.y226{bottom:600.253333pt;}
.y3fd{bottom:601.213333pt;}
.y292{bottom:601.373333pt;}
.ybe{bottom:604.893333pt;}
.y90{bottom:606.653333pt;}
.y427{bottom:608.413333pt;}
.yfa{bottom:610.013333pt;}
.y1a3{bottom:610.493333pt;}
.y225{bottom:614.973333pt;}
.y3ba{bottom:616.093333pt;}
.y380{bottom:618.653333pt;}
.y3e0{bottom:619.133333pt;}
.y64{bottom:620.413333pt;}
.y291{bottom:620.573333pt;}
.ybd{bottom:624.093333pt;}
.y8f{bottom:626.013333pt;}
.y426{bottom:626.333333pt;}
.y1a1{bottom:627.133333pt;}
.y145{bottom:629.213333pt;}
.y216{bottom:630.173333pt;}
.y121{bottom:630.493333pt;}
.y3b9{bottom:634.013333pt;}
.y3df{bottom:637.053333pt;}
.y1dd{bottom:637.158524pt;}
.y396{bottom:638.013333pt;}
.yf9{bottom:639.933333pt;}
.ybc{bottom:643.453333pt;}
.y425{bottom:644.253333pt;}
.y222{bottom:644.893333pt;}
.y8e{bottom:645.373333pt;}
.y412{bottom:647.613333pt;}
.y144{bottom:648.573333pt;}
.y120{bottom:649.853333pt;}
.y63{bottom:650.333333pt;}
.y395{bottom:657.373333pt;}
.yf8{bottom:659.293333pt;}
.y221{bottom:659.453333pt;}
.y1a0{bottom:659.613333pt;}
.y3b8{bottom:662.653333pt;}
.ybb{bottom:662.813333pt;}
.y8d{bottom:664.733333pt;}
.y3de{bottom:665.533333pt;}
.y143{bottom:667.933333pt;}
.y37a{bottom:668.733333pt;}
.y11f{bottom:669.053333pt;}
.y424{bottom:672.733333pt;}
.y220{bottom:674.173333pt;}
.y19f{bottom:674.333333pt;}
.yf7{bottom:678.653333pt;}
.y62{bottom:680.413333pt;}
.y3b7{bottom:680.573333pt;}
.yba{bottom:682.173333pt;}
.y3dd{bottom:683.453333pt;}
.y8c{bottom:683.933333pt;}
.y142{bottom:687.293333pt;}
.y11e{bottom:688.413333pt;}
.y21f{bottom:688.733333pt;}
.y19e{bottom:688.893333pt;}
.y423{bottom:690.653333pt;}
.y442{bottom:696.573333pt;}
.yf6{bottom:697.853333pt;}
.y3b6{bottom:698.333333pt;}
.y368{bottom:698.653333pt;}
.y61{bottom:699.613333pt;}
.yb9{bottom:701.373333pt;}
.y8b{bottom:703.293333pt;}
.y21e{bottom:703.453333pt;}
.y141{bottom:706.493333pt;}
.y394{bottom:706.653333pt;}
.y422{bottom:708.573333pt;}
.y1da{bottom:714.670800pt;}
.y19d{bottom:716.413333pt;}
.yf5{bottom:717.213333pt;}
.y21d{bottom:718.173333pt;}
.y11d{bottom:718.333333pt;}
.y3dc{bottom:719.293333pt;}
.yb8{bottom:720.733333pt;}
.y8a{bottom:722.653333pt;}
.y140{bottom:725.853333pt;}
.y393{bottom:726.013333pt;}
.y441{bottom:726.493333pt;}
.y37f{bottom:726.653333pt;}
.y3b5{bottom:726.973333pt;}
.y60{bottom:729.693333pt;}
.y411{bottom:729.853333pt;}
.y16f{bottom:731.453333pt;}
.y21c{bottom:732.733333pt;}
.yf4{bottom:736.573333pt;}
.y3fc{bottom:737.213333pt;}
.y11c{bottom:737.693333pt;}
.yb7{bottom:740.093333pt;}
.y267{bottom:740.527983pt;}
.y89{bottom:742.013333pt;}
.y3b4{bottom:744.893333pt;}
.y13f{bottom:745.213333pt;}
.y19c{bottom:746.493333pt;}
.y21a{bottom:747.453333pt;}
.y3db{bottom:747.773333pt;}
.y5f{bottom:749.053333pt;}
.y16e{bottom:750.813333pt;}
.y421{bottom:755.133333pt;}
.yf3{bottom:755.933333pt;}
.y11b{bottom:757.053333pt;}
.yb6{bottom:759.453333pt;}
.y88{bottom:761.213333pt;}
.y367{bottom:761.373333pt;}
.y219{bottom:762.013333pt;}
.y13e{bottom:764.573333pt;}
.y19b{bottom:765.693333pt;}
.y16d{bottom:770.053333pt;}
.y420{bottom:773.093333pt;}
.y3b3{bottom:773.413333pt;}
.yf2{bottom:775.173333pt;}
.y392{bottom:775.333333pt;}
.y410{bottom:776.453333pt;}
.y210{bottom:777.413333pt;}
.y5e{bottom:779.013333pt;}
.y87{bottom:780.613333pt;}
.y366{bottom:780.773333pt;}
.y3fb{bottom:783.653333pt;}
.y2f5{bottom:784.047614pt;}
.y2e0{bottom:784.613333pt;}
.y19a{bottom:785.093333pt;}
.y11a{bottom:787.013333pt;}
.yb5{bottom:789.413333pt;}
.y440{bottom:790.853333pt;}
.y3b2{bottom:791.333333pt;}
.y215{bottom:792.133333pt;}
.y1cf{bottom:792.140423pt;}
.y3da{bottom:794.373333pt;}
.yf1{bottom:794.533333pt;}
.y391{bottom:794.693333pt;}
.y8{bottom:798.373333pt;}
.y86{bottom:799.973333pt;}
.y365{bottom:800.133333pt;}
.y3fa{bottom:801.573333pt;}
.y199{bottom:804.453333pt;}
.y119{bottom:806.373333pt;}
.y213{bottom:806.693333pt;}
.yb4{bottom:808.773333pt;}
.y3b1{bottom:809.253333pt;}
.y3d9{bottom:812.293333pt;}
.y352{bottom:812.726030pt;}
.yf0{bottom:813.893333pt;}
.y35b{bottom:814.264361pt;}
.y2df{bottom:817.413333pt;}
.y85{bottom:819.333333pt;}
.y41f{bottom:819.493333pt;}
.y212{bottom:821.413333pt;}
.y198{bottom:823.813333pt;}
.y118{bottom:825.733333pt;}
.y3b0{bottom:827.173333pt;}
.yb3{bottom:828.133333pt;}
.y7{bottom:828.293333pt;}
.y3d8{bottom:830.213333pt;}
.yef{bottom:833.253333pt;}
.y20d{bottom:836.613333pt;}
.y41e{bottom:837.413333pt;}
.y364{bottom:838.693333pt;}
.y40f{bottom:840.773333pt;}
.y197{bottom:843.013333pt;}
.y117{bottom:845.893333pt;}
.yb2{bottom:847.333333pt;}
.y3d7{bottom:848.133333pt;}
.y84{bottom:849.253333pt;}
.y20f{bottom:851.333333pt;}
.yee{bottom:852.453333pt;}
.y390{bottom:852.613333pt;}
.y6{bottom:854.373333pt;}
.y439{bottom:855.333333pt;}
.y3af{bottom:855.813333pt;}
.y16c{bottom:858.053333pt;}
.y40e{bottom:858.693333pt;}
.y196{bottom:862.373333pt;}
.y116{bottom:865.093333pt;}
.y3f9{bottom:865.893333pt;}
.yb1{bottom:866.693333pt;}
.y83{bottom:868.613333pt;}
.yed{bottom:871.813333pt;}
.y38f{bottom:871.973333pt;}
.y290{bottom:872.613333pt;}
.y43f{bottom:873.253333pt;}
.y3ae{bottom:873.733333pt;}
.y3d6{bottom:876.613333pt;}
.y16b{bottom:877.413333pt;}
.y1c6{bottom:881.367402pt;}
.y195{bottom:881.733333pt;}
.y20c{bottom:882.373333pt;}
.y3f8{bottom:883.813333pt;}
.y115{bottom:885.253333pt;}
.yb0{bottom:886.053333pt;}
.y82{bottom:887.973333pt;}
.y13d{bottom:891.173333pt;}
.yec{bottom:891.973333pt;}
.y3d5{bottom:894.533333pt;}
.y16a{bottom:896.613333pt;}
.y20b{bottom:897.093333pt;}
.y5{bottom:899.973333pt;}
.y194{bottom:901.093333pt;}
.y41d{bottom:901.733333pt;}
.y3ad{bottom:902.213333pt;}
.y114{bottom:904.613333pt;}
.y40d{bottom:905.253333pt;}
.yaf{bottom:905.413333pt;}
.y81{bottom:907.173333pt;}
.y15c{bottom:910.533333pt;}
.y13c{bottom:911.333333pt;}
.y3d4{bottom:912.453333pt;}
.y169{bottom:915.973333pt;}
.y438{bottom:919.653333pt;}
.y3ac{bottom:920.133333pt;}
.y193{bottom:920.293333pt;}
.y40c{bottom:923.173333pt;}
.y113{bottom:923.813333pt;}
.yae{bottom:924.613333pt;}
.y80{bottom:926.533333pt;}
.y38e{bottom:929.893333pt;}
.y3f7{bottom:930.373333pt;}
.y15b{bottom:930.533333pt;}
.y168{bottom:935.333333pt;}
.y192{bottom:939.653333pt;}
.y3d3{bottom:940.933333pt;}
.y40b{bottom:941.093333pt;}
.y341{bottom:941.945866pt;}
.yad{bottom:943.973333pt;}
.y4{bottom:945.413333pt;}
.y7f{bottom:945.893333pt;}
.y3f6{bottom:948.293333pt;}
.y3ab{bottom:948.773333pt;}
.y38d{bottom:949.253333pt;}
.yd7{bottom:954.693333pt;}
.y3d2{bottom:958.853333pt;}
.y191{bottom:959.013333pt;}
.yac{bottom:963.333333pt;}
.y7e{bottom:965.253333pt;}
.y41c{bottom:966.213333pt;}
.y3aa{bottom:966.693333pt;}
.y38c{bottom:971.013333pt;}
.yd6{bottom:973.893333pt;}
.y3d1{bottom:976.773333pt;}
.y190{bottom:979.173333pt;}
.y7d{bottom:984.453333pt;}
.y3{bottom:991.013333pt;}
.yab{bottom:993.253333pt;}
.y3d0{bottom:994.693333pt;}
.y7c{bottom:1006.240000pt;}
.yaa{bottom:1012.640000pt;}
.h70{height:14.356463pt;}
.h14{height:14.358246pt;}
.h4e{height:14.560000pt;}
.h56{height:14.592000pt;}
.h4f{height:14.720000pt;}
.h53{height:14.752000pt;}
.h2b{height:16.000000pt;}
.h2d{height:16.032000pt;}
.h6e{height:18.344732pt;}
.h69{height:18.344793pt;}
.he{height:18.347071pt;}
.h78{height:27.140314pt;}
.h80{height:28.716998pt;}
.h81{height:28.809040pt;}
.h4d{height:29.280000pt;}
.h2e{height:34.302188pt;}
.h20{height:38.625000pt;}
.h67{height:39.012095pt;}
.hc{height:39.016939pt;}
.h66{height:39.107713pt;}
.hb{height:39.112569pt;}
.h51{height:39.190000pt;}
.h76{height:42.601929pt;}
.h1a{height:42.607219pt;}
.h32{height:43.229538pt;}
.h43{height:43.252346pt;}
.h38{height:43.258295pt;}
.h3c{height:43.259334pt;}
.h47{height:43.296160pt;}
.h33{height:43.319599pt;}
.h44{height:43.342455pt;}
.h39{height:43.348417pt;}
.h3d{height:43.349458pt;}
.h41{height:43.352815pt;}
.h31{height:43.358127pt;}
.h48{height:43.386361pt;}
.h42{height:43.442946pt;}
.h30{height:43.448268pt;}
.h37{height:43.517308pt;}
.h4c{height:43.603026pt;}
.h36{height:43.607781pt;}
.h1c{height:43.754320pt;}
.h87{height:44.085768pt;}
.h95{height:44.115658pt;}
.h8a{height:44.135204pt;}
.h8e{height:44.135767pt;}
.h79{height:44.166987pt;}
.h86{height:44.177613pt;}
.h7e{height:44.196412pt;}
.h96{height:44.207374pt;}
.h8b{height:44.226962pt;}
.h8f{height:44.227525pt;}
.h7a{height:44.258810pt;}
.h92{height:44.268182pt;}
.h7d{height:44.272039pt;}
.h85{height:44.291951pt;}
.h82{height:44.297527pt;}
.h93{height:44.360215pt;}
.h88{height:44.384034pt;}
.h34{height:44.502867pt;}
.h45{height:44.526348pt;}
.h3a{height:44.532472pt;}
.h3e{height:44.533541pt;}
.h49{height:44.571452pt;}
.h46{height:44.619111pt;}
.h3b{height:44.625248pt;}
.h3f{height:44.626320pt;}
.h4a{height:44.664309pt;}
.h77{height:44.728777pt;}
.h1b{height:44.734331pt;}
.h71{height:45.041438pt;}
.h15{height:45.047032pt;}
.h74{height:45.135080pt;}
.h18{height:45.140684pt;}
.h97{height:45.376558pt;}
.h7b{height:45.448462pt;}
.h8c{height:45.472081pt;}
.h90{height:45.477819pt;}
.h7f{height:45.592812pt;}
.h83{height:45.602314pt;}
.h28{height:45.802040pt;}
.h27{height:45.897262pt;}
.h58{height:45.919907pt;}
.h5f{height:45.964862pt;}
.h6a{height:45.966855pt;}
.hf{height:45.972563pt;}
.h23{height:45.980299pt;}
.h63{height:45.992200pt;}
.h8{height:45.997911pt;}
.h59{height:46.015375pt;}
.h5e{height:46.060423pt;}
.h6d{height:46.062421pt;}
.h12{height:46.068140pt;}
.h22{height:46.075892pt;}
.h73{height:46.368138pt;}
.h17{height:46.373895pt;}
.h72{height:47.139616pt;}
.h5a{height:47.162914pt;}
.h6b{height:47.180781pt;}
.h68{height:47.220397pt;}
.hd{height:47.224061pt;}
.h2a{height:47.249170pt;}
.h6f{height:47.278162pt;}
.h29{height:47.279634pt;}
.h13{height:47.281830pt;}
.h5c{height:47.296744pt;}
.h24{height:47.297522pt;}
.h10{height:47.319563pt;}
.h6c{height:47.320813pt;}
.h11{height:47.326689pt;}
.h16{height:47.338918pt;}
.h65{height:47.346904pt;}
.ha{height:47.352784pt;}
.h64{height:47.362056pt;}
.h9{height:47.365731pt;}
.h5b{height:47.370761pt;}
.h60{height:47.417137pt;}
.h25{height:47.433061pt;}
.h6{height:47.742188pt;}
.h2c{height:49.148438pt;}
.h50{height:58.560000pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h5{height:60.519362pt;}
.h1f{height:71.044468pt;}
.h1d{height:81.046875pt;}
.h8d{height:84.607855pt;}
.h89{height:84.608226pt;}
.h1e{height:87.489947pt;}
.h55{height:88.032000pt;}
.h94{height:111.520978pt;}
.h91{height:115.373670pt;}
.h3{height:141.984375pt;}
.h35{height:144.628204pt;}
.h40{height:145.165817pt;}
.h2f{height:145.182770pt;}
.h4b{height:145.694508pt;}
.h52{height:146.586667pt;}
.h62{height:200.154337pt;}
.h7{height:200.210429pt;}
.h57{height:206.672017pt;}
.h61{height:206.728356pt;}
.h26{height:206.790531pt;}
.h5d{height:207.525654pt;}
.h21{height:207.595350pt;}
.h84{height:219.970031pt;}
.h7c{height:220.739790pt;}
.h54{height:234.426667pt;}
.h75{height:264.757120pt;}
.h19{height:271.193486pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:37.760000pt;}
.w11{width:44.032000pt;}
.w12{width:45.280000pt;}
.w10{width:54.560000pt;}
.w22{width:60.512000pt;}
.w20{width:62.880000pt;}
.w1d{width:63.680000pt;}
.w1f{width:64.000000pt;}
.w1e{width:64.032000pt;}
.w21{width:66.240000pt;}
.we{width:69.952000pt;}
.wf{width:71.520000pt;}
.w1b{width:74.880000pt;}
.w2f{width:95.397822pt;}
.wd{width:113.440000pt;}
.w23{width:147.226667pt;}
.wc{width:160.666667pt;}
.w2a{width:191.704256pt;}
.w7{width:192.514765pt;}
.w1a{width:207.746667pt;}
.w2d{width:237.233428pt;}
.w2e{width:237.766917pt;}
.wa{width:258.022452pt;}
.w27{width:265.196785pt;}
.w4{width:265.217362pt;}
.w26{width:265.992365pt;}
.w3{width:266.013004pt;}
.w29{width:270.791300pt;}
.w6{width:270.812311pt;}
.w24{width:280.387180pt;}
.w28{width:281.163972pt;}
.w9{width:281.165870pt;}
.w25{width:281.182809pt;}
.wb{width:281.187432pt;}
.w5{width:281.991011pt;}
.w31{width:290.839783pt;}
.w30{width:310.866837pt;}
.w1c{width:384.866667pt;}
.w2b{width:531.193472pt;}
.w2c{width:560.379316pt;}
.w8{width:567.981749pt;}
.w14{width:587.836822pt;}
.w15{width:599.644483pt;}
.w16{width:599.658896pt;}
.w17{width:600.169992pt;}
.w18{width:600.649175pt;}
.w19{width:600.704422pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x20{left:-236.786721pt;}
.xa0{left:-235.789822pt;}
.xb2{left:-212.080319pt;}
.xb1{left:-206.475200pt;}
.x1e{left:-193.533616pt;}
.x1c{left:-187.526240pt;}
.x1b{left:-181.663041pt;}
.xb3{left:-176.002564pt;}
.x1d{left:-168.043119pt;}
.xb4{left:-154.440864pt;}
.xb5{left:-132.906868pt;}
.xb6{left:-111.345168pt;}
.xb7{left:-89.801938pt;}
.xb8{left:-68.240238pt;}
.x1f{left:-52.696700pt;}
.xb9{left:-46.701625pt;}
.xbb{left:-2.868479pt;}
.x0{left:0.000000pt;}
.xba{left:1.434239pt;}
.x3b{left:7.200000pt;}
.x46{left:9.280000pt;}
.x98{left:10.880000pt;}
.x41{left:12.640000pt;}
.x45{left:14.720000pt;}
.x47{left:16.640000pt;}
.x37{left:17.543565pt;}
.x3f{left:19.520000pt;}
.x8e{left:20.506667pt;}
.x88{left:21.542070pt;}
.x11{left:22.964406pt;}
.x95{left:25.440000pt;}
.xa6{left:27.903368pt;}
.xf{left:28.981177pt;}
.x93{left:31.520000pt;}
.x4a{left:33.683802pt;}
.xe{left:34.806179pt;}
.xa{left:37.170649pt;}
.x3a{left:38.725690pt;}
.x6c{left:40.501818pt;}
.x97{left:41.626667pt;}
.x8{left:43.181427pt;}
.xc{left:44.599971pt;}
.x6b{left:46.006260pt;}
.x13{left:47.319146pt;}
.x7{left:49.047947pt;}
.x36{left:51.186096pt;}
.x4b{left:53.649609pt;}
.x10{left:55.469354pt;}
.x34{left:57.212227pt;}
.xa7{left:61.516879pt;}
.x9{left:62.704435pt;}
.x6d{left:65.985349pt;}
.x94{left:68.000000pt;}
.x4c{left:69.676583pt;}
.x39{left:74.854156pt;}
.x96{left:76.794667pt;}
.x35{left:78.891893pt;}
.x6e{left:82.000333pt;}
.x25{left:84.744574pt;}
.x4d{left:85.726195pt;}
.x17{left:88.536525pt;}
.x12{left:90.227594pt;}
.xab{left:92.750137pt;}
.x15{left:94.541445pt;}
.x2{left:96.031988pt;}
.x6a{left:97.025955pt;}
.x14{left:98.000007pt;}
.xb{left:100.327099pt;}
.x4e{left:101.748641pt;}
.x2a{left:108.144198pt;}
.x49{left:109.337310pt;}
.xa8{left:111.197372pt;}
.xa3{left:112.895248pt;}
.x16{left:114.026208pt;}
.xd{left:115.574686pt;}
.x4f{left:117.802780pt;}
.xac{left:119.032423pt;}
.x4{left:120.031988pt;}
.x2f{left:123.231988pt;}
.x2c{left:124.831988pt;}
.xbc{left:128.031988pt;}
.x24{left:130.345547pt;}
.x38{left:132.524738pt;}
.x50{left:133.829755pt;}
.x2e{left:144.026655pt;}
.x6f{left:146.105573pt;}
.x30{left:147.226655pt;}
.x51{left:149.856729pt;}
.x48{left:153.434667pt;}
.x70{left:162.143209pt;}
.x52{left:165.910868pt;}
.xad{left:171.569281pt;}
.x71{left:178.162724pt;}
.x53{left:181.937842pt;}
.x1a{left:190.666503pt;}
.x19{left:192.264209pt;}
.x72{left:194.200360pt;}
.x9e{left:196.647193pt;}
.x54{left:197.982926pt;}
.xa1{left:201.600565pt;}
.xa2{left:202.692241pt;}
.x73{left:210.210813pt;}
.x5{left:212.026655pt;}
.x22{left:213.652201pt;}
.x21{left:219.044433pt;}
.x23{left:220.189450pt;}
.xae{left:224.143091pt;}
.x74{left:226.248449pt;}
.x18{left:229.311053pt;}
.x75{left:242.267964pt;}
.x55{left:246.081959pt;}
.x89{left:251.455626pt;}
.x3c{left:256.706667pt;}
.x76{left:258.296539pt;}
.x56{left:262.136097pt;}
.x8b{left:270.946667pt;}
.x77{left:274.316053pt;}
.x57{left:278.163072pt;}
.x69{left:284.075848pt;}
.x9f{left:289.306499pt;}
.x78{left:290.353689pt;}
.x58{left:294.217210pt;}
.xa9{left:302.632564pt;}
.x79{left:306.373204pt;}
.x59{left:310.244185pt;}
.xaa{left:316.410867pt;}
.x7a{left:322.401779pt;}
.x5a{left:326.289269pt;}
.x7b{left:338.421293pt;}
.x5b{left:342.316243pt;}
.x8c{left:346.466667pt;}
.xaf{left:351.469113pt;}
.x7c{left:354.458929pt;}
.x5c{left:358.361327pt;}
.x9d{left:361.197350pt;}
.x33{left:362.813344pt;}
.x3d{left:370.146667pt;}
.x8a{left:371.092932pt;}
.x5d{left:374.388301pt;}
.x9b{left:376.389053pt;}
.x6{left:380.792609pt;}
.x7d{left:386.507019pt;}
.x31{left:389.506655pt;}
.x5e{left:390.442440pt;}
.x1{left:393.186655pt;}
.x2b{left:403.112595pt;}
.x5f{left:406.469414pt;}
.x8d{left:410.146667pt;}
.x7e{left:418.564169pt;}
.x60{left:422.523553pt;}
.xa4{left:427.790471pt;}
.x7f{left:434.583684pt;}
.x61{left:438.550528pt;}
.x3e{left:440.093333pt;}
.x26{left:445.251889pt;}
.xa5{left:449.384351pt;}
.x80{left:450.621320pt;}
.x62{left:454.595612pt;}
.x27{left:466.860759pt;}
.x29{left:467.952520pt;}
.x63{left:470.622586pt;}
.x8f{left:474.173333pt;}
.x81{left:482.669409pt;}
.x64{left:486.667670pt;}
.x28{left:491.957937pt;}
.x82{left:498.688924pt;}
.x65{left:502.694644pt;}
.x40{left:511.933333pt;}
.x83{left:514.726560pt;}
.x66{left:518.748783pt;}
.x84{left:530.737013pt;}
.x67{left:534.775757pt;}
.x90{left:538.173333pt;}
.x85{left:546.774649pt;}
.x68{left:550.829896pt;}
.x86{left:562.794163pt;}
.x42{left:566.493333pt;}
.x87{left:578.822739pt;}
.xb0{left:589.240058pt;}
.x91{left:602.213333pt;}
.x43{left:610.533333pt;}
.x9c{left:628.133322pt;}
.x9a{left:640.933322pt;}
.x32{left:644.133322pt;}
.x44{left:655.813333pt;}
.x99{left:658.053322pt;}
.x92{left:665.093333pt;}
.x3{left:668.133322pt;}
.x2d{left:698.053322pt;}
}




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