
    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_581a91d8946b4b284d795623.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_eb62605ece295128502903f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3b1f39ccfa50777a1e8faafc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2ca53cb2e932fbeb0ff018a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_a98de2c3ac73fa6f5f7cc728.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_8845b2e7ad11575f42e54968.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891113;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_ce7581ecdda120a12046d038.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_5dc04db906e172a9f0a5865e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677246;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_847f15bb549d71d7a138e5f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_813ca83fe29aa8faac07c48e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.869629;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;}
.mc{transform:matrix(0.000000,-0.248998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248998,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.248999,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248999,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248999,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.249943,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249943,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249943,0.250000,0.000000,0,0);}
.m34{transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,-0.249987,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249987,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249987,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);}
.m2e{transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);}
.m31{transform:matrix(0.000000,-0.250007,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250007,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250007,0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);}
.m27{transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);}
.m2b{transform:matrix(0.000000,-0.250042,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250042,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250042,0.250000,0.000000,0,0);}
.m29{transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250044,0.250000,0.000000,0,0);}
.m39{transform:matrix(0.000000,-0.250279,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250279,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250279,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250872,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250872,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250872,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250873,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250873,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250873,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.251050,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251050,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251050,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.251052,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251052,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251052,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.252570,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252570,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252570,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.254363,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.254363,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.254363,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.254364,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.254364,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.254364,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.255872,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255872,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255872,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.255876,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255876,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255876,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.244259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244259,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244263,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245711,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247456,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,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.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-44.113200px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.v6{vertical-align:44.113200px;}
.ls82{letter-spacing:-10.822322px;}
.ls50{letter-spacing:-10.627396px;}
.ls66{letter-spacing:-10.623654px;}
.ls73{letter-spacing:-10.594228px;}
.ls6c{letter-spacing:-10.570153px;}
.ls78{letter-spacing:-10.539154px;}
.ls7d{letter-spacing:-10.482150px;}
.ls5c{letter-spacing:-10.456547px;}
.ls47{letter-spacing:-10.442432px;}
.ls51{letter-spacing:-8.796090px;}
.ls6d{letter-spacing:-8.752155px;}
.ls5d{letter-spacing:-8.656225px;}
.ls67{letter-spacing:-8.325450px;}
.ls4f{letter-spacing:-8.186460px;}
.ls65{letter-spacing:-8.166870px;}
.ls6b{letter-spacing:-8.145570px;}
.ls5b{letter-spacing:-8.056289px;}
.ls3e{letter-spacing:-7.937793px;}
.ls3f{letter-spacing:-7.906003px;}
.ls40{letter-spacing:-7.269888px;}
.ls72{letter-spacing:-7.115742px;}
.ls77{letter-spacing:-7.078320px;}
.ls2e{letter-spacing:-7.051776px;}
.ls7c{letter-spacing:-7.040736px;}
.ls38{letter-spacing:-6.998994px;}
.ls36{letter-spacing:-6.899682px;}
.ls30{letter-spacing:-6.754752px;}
.ls31{letter-spacing:-6.754698px;}
.ls80{letter-spacing:-5.734216px;}
.ls45{letter-spacing:-5.688788px;}
.ls52{letter-spacing:-5.643094px;}
.ls68{letter-spacing:-5.629590px;}
.ls6e{letter-spacing:-5.614936px;}
.ls71{letter-spacing:-5.613359px;}
.ls76{letter-spacing:-5.584178px;}
.ls7b{letter-spacing:-5.553975px;}
.ls5a{letter-spacing:-5.553336px;}
.ls44{letter-spacing:-5.532931px;}
.ls34{letter-spacing:-5.521429px;}
.ls81{letter-spacing:-5.485805px;}
.ls2f{letter-spacing:-5.454108px;}
.ls46{letter-spacing:-5.280703px;}
.ls4d{letter-spacing:-4.622287px;}
.ls63{letter-spacing:-4.560127px;}
.ls58{letter-spacing:-4.521930px;}
.ls35{letter-spacing:-4.417782px;}
.ls37{letter-spacing:-4.336685px;}
.ls39{letter-spacing:-4.279905px;}
.ls7f{letter-spacing:-4.167904px;}
.ls4a{letter-spacing:-4.101678px;}
.ls60{letter-spacing:-4.091850px;}
.ls6a{letter-spacing:-4.081190px;}
.ls70{letter-spacing:-4.080094px;}
.ls75{letter-spacing:-4.058851px;}
.ls7a{letter-spacing:-4.036927px;}
.ls55{letter-spacing:-4.036473px;}
.ls43{letter-spacing:-4.021618px;}
.ls33{letter-spacing:-4.013226px;}
.ls3a{letter-spacing:-3.959630px;}
.ls4e{letter-spacing:-3.893429px;}
.ls2d{letter-spacing:-3.873177px;}
.ls3c{letter-spacing:-3.835226px;}
.ls59{letter-spacing:-3.831496px;}
.ls4c{letter-spacing:-3.623587px;}
.ls64{letter-spacing:-3.609963px;}
.ls57{letter-spacing:-3.565946px;}
.ls62{letter-spacing:-3.541202px;}
.ls3b{letter-spacing:-2.969723px;}
.ls41{letter-spacing:-2.906183px;}
.ls4b{letter-spacing:-2.542726px;}
.ls56{letter-spacing:-2.502293px;}
.ls61{letter-spacing:-2.484898px;}
.ls2c{letter-spacing:-2.160000px;}
.ls3d{letter-spacing:-1.446912px;}
.ls11{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.864000px;}
.ls29{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.132480px;}
.ls86{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.192960px;}
.ls1b{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.336960px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.385920px;}
.ls19{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.496080px;}
.lsa{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.576000px;}
.ls85{letter-spacing:0.864000px;}
.lsb{letter-spacing:1.440000px;}
.ls21{letter-spacing:1.620000px;}
.lsf{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.880000px;}
.ls28{letter-spacing:3.600000px;}
.ls1e{letter-spacing:5.040000px;}
.ls24{letter-spacing:5.760000px;}
.ls26{letter-spacing:6.480000px;}
.ls25{letter-spacing:7.200000px;}
.ls9{letter-spacing:7.920000px;}
.ls83{letter-spacing:8.640000px;}
.ls27{letter-spacing:10.080000px;}
.ls17{letter-spacing:10.800000px;}
.ls18{letter-spacing:11.520000px;}
.ls1d{letter-spacing:12.240000px;}
.lsd{letter-spacing:12.960000px;}
.ls20{letter-spacing:15.120000px;}
.ls22{letter-spacing:20.880000px;}
.lse{letter-spacing:22.320000px;}
.ls1a{letter-spacing:25.200000px;}
.ls2a{letter-spacing:31.680000px;}
.lsc{letter-spacing:37.440000px;}
.ls84{letter-spacing:49.680000px;}
.ls7e{letter-spacing:131.586671px;}
.ls69{letter-spacing:160.008576px;}
.ls5f{letter-spacing:182.215339px;}
.ls54{letter-spacing:183.490958px;}
.ls49{letter-spacing:186.455815px;}
.ls14{letter-spacing:194.400000px;}
.ls42{letter-spacing:216.528998px;}
.ls74{letter-spacing:218.533670px;}
.ls6f{letter-spacing:219.677453px;}
.ls79{letter-spacing:262.272073px;}
.ls53{letter-spacing:419.536908px;}
.ls5e{letter-spacing:425.292600px;}
.ls48{letter-spacing:426.314088px;}
.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;}
}
.ws56{word-spacing:-72.000000px;}
.ws82{word-spacing:-25.262861px;}
.ws16{word-spacing:-18.504000px;}
.ws6d{word-spacing:-18.282240px;}
.wsc5{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws83{word-spacing:-17.992973px;}
.wsc9{word-spacing:-17.928000px;}
.wsc7{word-spacing:-17.856000px;}
.ws5d{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsc8{word-spacing:-17.568000px;}
.wsc6{word-spacing:-17.280000px;}
.ws32{word-spacing:-17.136000px;}
.wsc2{word-spacing:-16.718065px;}
.ws93{word-spacing:-16.452401px;}
.wsa5{word-spacing:-16.413030px;}
.wsad{word-spacing:-16.370305px;}
.ws8d{word-spacing:-16.308054px;}
.wsb8{word-spacing:-16.280633px;}
.ws9c{word-spacing:-16.190712px;}
.ws7b{word-spacing:-16.097686px;}
.ws1{word-spacing:-15.336000px;}
.wsc1{word-spacing:-14.223798px;}
.wsb2{word-spacing:-13.924131px;}
.wsb7{word-spacing:-13.851633px;}
.wsbc{word-spacing:-13.776813px;}
.ws8c{word-spacing:-13.724568px;}
.ws7a{word-spacing:-13.695930px;}
.ws72{word-spacing:-13.217985px;}
.ws33{word-spacing:-12.060000px;}
.ws84{word-spacing:-12.055277px;}
.ws74{word-spacing:-9.861468px;}
.ws73{word-spacing:-8.263800px;}
.ws5{word-spacing:-0.916560px;}
.ws70{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.505440px;}
.ws6{word-spacing:-0.385920px;}
.ws52{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.144000px;}
.ws39{word-spacing:0.216000px;}
.ws20{word-spacing:0.288000px;}
.ws78{word-spacing:0.432000px;}
.ws8{word-spacing:0.720000px;}
.ws29{word-spacing:1.008000px;}
.ws2a{word-spacing:1.296000px;}
.ws2f{word-spacing:1.440000px;}
.ws88{word-spacing:1.446912px;}
.ws18{word-spacing:1.728000px;}
.ws7f{word-spacing:1.781138px;}
.ws86{word-spacing:1.934819px;}
.ws87{word-spacing:1.948051px;}
.ws3d{word-spacing:2.016000px;}
.wsa8{word-spacing:2.097217px;}
.ws3c{word-spacing:2.160000px;}
.ws7d{word-spacing:2.233710px;}
.ws3b{word-spacing:2.448000px;}
.ws9f{word-spacing:2.503750px;}
.ws96{word-spacing:2.544221px;}
.wsc3{word-spacing:2.823576px;}
.ws35{word-spacing:2.880000px;}
.ws85{word-spacing:2.924727px;}
.ws8e{word-spacing:2.961287px;}
.wsbd{word-spacing:2.972550px;}
.wsb3{word-spacing:3.004333px;}
.ws8f{word-spacing:3.117144px;}
.ws36{word-spacing:3.168000px;}
.ws77{word-spacing:3.452401px;}
.ws76{word-spacing:3.452429px;}
.ws5b{word-spacing:3.456000px;}
.wsa6{word-spacing:3.541202px;}
.ws9d{word-spacing:3.565946px;}
.ws80{word-spacing:3.577264px;}
.wsbe{word-spacing:3.598598px;}
.ws4b{word-spacing:3.600000px;}
.wsb9{word-spacing:3.617808px;}
.ws94{word-spacing:3.623587px;}
.wsb4{word-spacing:3.636935px;}
.ws66{word-spacing:3.888000px;}
.ws21{word-spacing:4.176000px;}
.ws12{word-spacing:4.320000px;}
.ws9e{word-spacing:4.521930px;}
.wsa7{word-spacing:4.560127px;}
.ws55{word-spacing:4.608000px;}
.ws95{word-spacing:4.622287px;}
.ws7e{word-spacing:4.715610px;}
.ws89{word-spacing:4.744428px;}
.wsab{word-spacing:4.836690px;}
.ws50{word-spacing:4.896000px;}
.wsf{word-spacing:5.040000px;}
.ws48{word-spacing:5.328000px;}
.ws7c{word-spacing:5.521429px;}
.wscd{word-spacing:5.616000px;}
.wsa2{word-spacing:5.656543px;}
.wsb0{word-spacing:5.719230px;}
.ws99{word-spacing:5.747940px;}
.ws7{word-spacing:5.760000px;}
.wsd{word-spacing:6.048000px;}
.ws62{word-spacing:6.336000px;}
.ws43{word-spacing:6.480000px;}
.ws63{word-spacing:6.696000px;}
.ws4e{word-spacing:6.768000px;}
.ws90{word-spacing:7.013574px;}
.wsbf{word-spacing:7.040250px;}
.ws75{word-spacing:7.051776px;}
.ws59{word-spacing:7.056000px;}
.wsba{word-spacing:7.078536px;}
.wsb5{word-spacing:7.115526px;}
.ws37{word-spacing:7.200000px;}
.wsc4{word-spacing:7.268724px;}
.wsca{word-spacing:7.416000px;}
.ws58{word-spacing:7.488000px;}
.ws8a{word-spacing:7.906003px;}
.ws23{word-spacing:7.920000px;}
.wsa0{word-spacing:8.056289px;}
.ws54{word-spacing:8.136000px;}
.wsae{word-spacing:8.145570px;}
.wsa9{word-spacing:8.166870px;}
.ws97{word-spacing:8.186460px;}
.ws13{word-spacing:8.208000px;}
.ws3f{word-spacing:8.640000px;}
.ws4f{word-spacing:8.928000px;}
.ws3e{word-spacing:9.216000px;}
.ws22{word-spacing:9.360000px;}
.ws46{word-spacing:9.648000px;}
.ws47{word-spacing:9.936000px;}
.ws17{word-spacing:10.080000px;}
.ws45{word-spacing:10.368000px;}
.wsa1{word-spacing:10.456547px;}
.wsaf{word-spacing:10.570153px;}
.wsaa{word-spacing:10.623654px;}
.ws98{word-spacing:10.627396px;}
.ws69{word-spacing:10.656000px;}
.ws53{word-spacing:10.800000px;}
.ws2c{word-spacing:11.376000px;}
.ws5e{word-spacing:11.520000px;}
.ws2b{word-spacing:11.808000px;}
.ws2d{word-spacing:12.240000px;}
.ws6e{word-spacing:12.384000px;}
.ws4a{word-spacing:12.528000px;}
.ws26{word-spacing:12.960000px;}
.ws1e{word-spacing:13.680000px;}
.ws6c{word-spacing:14.688000px;}
.ws19{word-spacing:14.976000px;}
.ws1a{word-spacing:15.120000px;}
.ws44{word-spacing:15.408000px;}
.ws6a{word-spacing:15.696000px;}
.ws4c{word-spacing:15.840000px;}
.ws9{word-spacing:16.560000px;}
.ws5c{word-spacing:16.848000px;}
.ws11{word-spacing:17.280000px;}
.wse{word-spacing:17.568000px;}
.ws65{word-spacing:17.856000px;}
.ws40{word-spacing:18.000000px;}
.ws64{word-spacing:18.288000px;}
.wsb{word-spacing:18.720000px;}
.ws5a{word-spacing:19.440000px;}
.ws2e{word-spacing:20.160000px;}
.ws5f{word-spacing:20.736000px;}
.ws34{word-spacing:20.880000px;}
.ws61{word-spacing:21.024000px;}
.ws31{word-spacing:21.168000px;}
.ws60{word-spacing:21.600000px;}
.ws28{word-spacing:21.816000px;}
.ws57{word-spacing:22.176000px;}
.ws27{word-spacing:22.320000px;}
.ws51{word-spacing:23.040000px;}
.ws3a{word-spacing:23.328000px;}
.ws38{word-spacing:23.760000px;}
.ws6b{word-spacing:24.048000px;}
.ws24{word-spacing:24.480000px;}
.ws25{word-spacing:25.200000px;}
.ws1f{word-spacing:27.360000px;}
.wsc{word-spacing:28.800000px;}
.ws49{word-spacing:30.240000px;}
.ws6f{word-spacing:30.384000px;}
.ws68{word-spacing:30.816000px;}
.ws1d{word-spacing:30.960000px;}
.ws30{word-spacing:31.680000px;}
.ws67{word-spacing:33.120000px;}
.ws1c{word-spacing:37.296000px;}
.ws1b{word-spacing:37.440000px;}
.ws4d{word-spacing:42.480000px;}
.wsce{word-spacing:49.896000px;}
.ws41{word-spacing:57.600000px;}
.ws42{word-spacing:67.680000px;}
.wscc{word-spacing:68.400000px;}
.wscb{word-spacing:69.120000px;}
.wsac{word-spacing:102.288883px;}
.wsc0{word-spacing:106.116149px;}
.ws81{word-spacing:139.062945px;}
.wsa4{word-spacing:155.730734px;}
.ws9b{word-spacing:156.820945px;}
.ws92{word-spacing:159.354866px;}
.ws8b{word-spacing:191.122589px;}
.wsb6{word-spacing:193.729583px;}
.wsb1{word-spacing:194.743544px;}
.ws14{word-spacing:202.320000px;}
.wsbb{word-spacing:236.768949px;}
.ws9a{word-spacing:362.449647px;}
.wsa3{word-spacing:367.422150px;}
.ws91{word-spacing:368.304642px;}
.ws71{word-spacing:378.095850px;}
.ws79{word-spacing:391.767300px;}
._8{margin-left:-67.347000px;}
._f{margin-left:-4.652728px;}
._10{margin-left:-3.319680px;}
._6{margin-left:-2.160000px;}
._0{margin-left:-1.053000px;}
._1{width:1.008000px;}
._2{width:2.314080px;}
._e{width:3.346920px;}
._c{width:4.453920px;}
._5{width:5.490000px;}
._9{width:6.912000px;}
._3{width:8.438760px;}
._b{width:9.576000px;}
._d{width:11.520000px;}
._a{width:14.184000px;}
._7{width:17.290080px;}
._4{width:38.061000px;}
._1f{width:50.472000px;}
._20{width:95.760000px;}
._1e{width:118.619860px;}
._19{width:131.310682px;}
._17{width:147.311539px;}
._18{width:148.995840px;}
._16{width:169.696488px;}
._15{width:170.884467px;}
._13{width:173.645628px;}
._1c{width:174.824697px;}
._1b{width:176.739319px;}
._1a{width:190.987267px;}
._11{width:206.506872px;}
._21{width:239.760000px;}
._1d{width:252.211795px;}
._14{width:392.819301px;}
._12{width:399.164886px;}
.fc4{color:rgb(128,0,128);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs32{font-size:31.454400px;}
.fs28{font-size:31.674600px;}
.fs1e{font-size:32.186400px;}
.fs2a{font-size:33.826200px;}
.fs34{font-size:34.030800px;}
.fs33{font-size:34.380600px;}
.fs20{font-size:34.576800px;}
.fs2b{font-size:34.621200px;}
.fs21{font-size:35.180400px;}
.fs13{font-size:36.172800px;}
.fs2c{font-size:37.065000px;}
.fs22{font-size:37.887600px;}
.fs29{font-size:37.935600px;}
.fs1f{font-size:38.548800px;}
.fs11{font-size:44.995800px;}
.fs2{font-size:48.240000px;}
.fsd{font-size:49.638000px;}
.fs18{font-size:53.818200px;}
.fs7{font-size:55.092000px;}
.fs49{font-size:59.283600px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:60.000000px;}
.fs12{font-size:60.876600px;}
.fs6{font-size:61.479000px;}
.fs8{font-size:61.479600px;}
.fse{font-size:63.435600px;}
.fs1b{font-size:63.613200px;}
.fsb{font-size:63.702000px;}
.fs19{font-size:63.835200px;}
.fs27{font-size:64.071000px;}
.fs44{font-size:64.078200px;}
.fs41{font-size:64.424400px;}
.fs40{font-size:64.426200px;}
.fs3c{font-size:64.763400px;}
.fs3d{font-size:64.765200px;}
.fs37{font-size:64.780800px;}
.fs31{font-size:64.950000px;}
.fs1d{font-size:65.106000px;}
.fs47{font-size:66.157200px;}
.fs5{font-size:66.240000px;}
.fs10{font-size:67.935000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:75.052200px;}
.fs9{font-size:75.052800px;}
.fsf{font-size:77.440800px;}
.fs1c{font-size:77.657400px;}
.fsc{font-size:77.766600px;}
.fs1a{font-size:77.928600px;}
.fs2d{font-size:78.216000px;}
.fs2f{font-size:78.220200px;}
.fs46{font-size:78.225000px;}
.fs45{font-size:78.230400px;}
.fs43{font-size:78.648000px;}
.fs42{font-size:78.650400px;}
.fs3e{font-size:79.061400px;}
.fs3f{font-size:79.063800px;}
.fs39{font-size:79.069800px;}
.fs3a{font-size:79.083600px;}
.fs36{font-size:79.281000px;}
.fs35{font-size:79.290000px;}
.fs25{font-size:79.480200px;}
.fs24{font-size:79.498200px;}
.fs4a{font-size:80.673600px;}
.fs48{font-size:80.763600px;}
.fs15{font-size:82.933200px;}
.fs14{font-size:83.266800px;}
.fs1{font-size:84.240000px;}
.fs2e{font-size:85.705200px;}
.fs30{font-size:85.709400px;}
.fs3b{font-size:86.640600px;}
.fs38{font-size:86.655000px;}
.fs23{font-size:87.090000px;}
.fs26{font-size:87.109800px;}
.fs17{font-size:90.873600px;}
.fs16{font-size:91.239000px;}
.y0{bottom:0.000000px;}
.y2ac{bottom:3.960000px;}
.y2{bottom:4.320000px;}
.y2b7{bottom:5.220000px;}
.y2bd{bottom:5.400000px;}
.yd9{bottom:39.715050px;}
.y12f{bottom:39.800550px;}
.y26d{bottom:41.247750px;}
.yaa{bottom:41.308200px;}
.y240{bottom:43.057050px;}
.y218{bottom:43.292700px;}
.y1f0{bottom:43.524600px;}
.y1a3{bottom:43.643100px;}
.y17b{bottom:45.141600px;}
.y2aa{bottom:45.360000px;}
.y1c6{bottom:45.632700px;}
.y2ae{bottom:45.720000px;}
.y152{bottom:45.854700px;}
.y2ca{bottom:46.260000px;}
.y2b5{bottom:46.620000px;}
.y105{bottom:46.758750px;}
.y2bb{bottom:46.800000px;}
.y1{bottom:53.100000px;}
.y11{bottom:57.420000px;}
.yc7{bottom:67.218300px;}
.y11e{bottom:67.359000px;}
.y147{bottom:67.634100px;}
.y9d{bottom:67.860300px;}
.y25b{bottom:69.808800px;}
.y234{bottom:70.727250px;}
.y20c{bottom:71.113200px;}
.y1e4{bottom:71.485050px;}
.y198{bottom:71.689800px;}
.y1c1{bottom:72.344550px;}
.y16f{bottom:72.802650px;}
.yf2{bottom:81.828900px;}
.y9e{bottom:82.231016px;}
.y11f{bottom:82.280478px;}
.y25c{bottom:85.273046px;}
.y235{bottom:85.705529px;}
.y20d{bottom:86.172824px;}
.yc8{bottom:86.249272px;}
.y1e5{bottom:86.623495px;}
.yd5{bottom:98.031177px;}
.y14d{bottom:100.738050px;}
.y175{bottom:106.639350px;}
.yfa{bottom:108.738150px;}
.y101{bottom:108.956185px;}
.y19e{bottom:109.724400px;}
.yd0{bottom:110.862600px;}
.y286{bottom:111.420000px;}
.y3f{bottom:111.600000px;}
.y5f{bottom:113.580000px;}
.y145{bottom:113.760000px;}
.y148{bottom:114.111900px;}
.y33{bottom:115.740000px;}
.yfb{bottom:116.237400px;}
.y120{bottom:117.932437px;}
.y1bf{bottom:118.440000px;}
.y1e2{bottom:118.980000px;}
.y170{bottom:119.801550px;}
.y63{bottom:122.058720px;}
.y199{bottom:122.789700px;}
.y196{bottom:123.300000px;}
.y20a{bottom:124.200000px;}
.y259{bottom:125.460000px;}
.y9b{bottom:126.000000px;}
.y232{bottom:127.080000px;}
.y12b{bottom:127.263450px;}
.yd4{bottom:127.813977px;}
.y1ee{bottom:127.843050px;}
.yf3{bottom:128.809800px;}
.y11c{bottom:128.880000px;}
.y263{bottom:129.314250px;}
.yc5{bottom:129.960000px;}
.y285{bottom:132.120000px;}
.y216{bottom:132.820350px;}
.y144{bottom:134.460000px;}
.y23e{bottom:135.637500px;}
.y2a7{bottom:136.440000px;}
.y1be{bottom:139.140000px;}
.y1e1{bottom:139.680000px;}
.y16d{bottom:140.220000px;}
.yd1{bottom:141.054913px;}
.y25d{bottom:142.201316px;}
.y3e{bottom:142.560000px;}
.y195{bottom:144.000000px;}
.y5e{bottom:144.720000px;}
.y266{bottom:144.780479px;}
.y209{bottom:144.900000px;}
.y258{bottom:146.160000px;}
.y32{bottom:146.700000px;}
.y231{bottom:147.780000px;}
.y12a{bottom:148.610850px;}
.y1ed{bottom:149.500650px;}
.y11b{bottom:149.580000px;}
.y62{bottom:150.492240px;}
.yc4{bottom:150.660000px;}
.y236{bottom:150.825000px;}
.y9f{bottom:151.102866px;}
.y20e{bottom:151.645950px;}
.y1e6{bottom:152.439300px;}
.y284{bottom:152.820000px;}
.ya9{bottom:153.687300px;}
.y121{bottom:153.791861px;}
.y215{bottom:154.365300px;}
.yd8{bottom:154.916850px;}
.y143{bottom:155.160000px;}
.yd2{bottom:155.536800px;}
.yf4{bottom:155.942267px;}
.y23d{bottom:157.066050px;}
.y296{bottom:157.140000px;}
.yc9{bottom:157.611438px;}
.y1bd{bottom:159.840000px;}
.y1e0{bottom:160.380000px;}
.y104{bottom:160.792050px;}
.y16c{bottom:160.920000px;}
.y194{bottom:164.700000px;}
.y268{bottom:164.749280px;}
.y208{bottom:165.600000px;}
.y257{bottom:166.860000px;}
.y9a{bottom:167.400000px;}
.y230{bottom:168.480000px;}
.y26c{bottom:170.125500px;}
.yd3{bottom:170.217238px;}
.y11a{bottom:170.280000px;}
.yc3{bottom:171.360000px;}
.yf0{bottom:172.800000px;}
.y283{bottom:173.520000px;}
.y3d{bottom:174.240000px;}
.y5d{bottom:175.680000px;}
.y142{bottom:175.860000px;}
.y31{bottom:177.840000px;}
.y61{bottom:179.107920px;}
.y1bc{bottom:180.540000px;}
.y1df{bottom:181.080000px;}
.y16b{bottom:181.620000px;}
.y100{bottom:184.166665px;}
.y149{bottom:184.759650px;}
.y193{bottom:185.400000px;}
.y207{bottom:186.300000px;}
.y23f{bottom:186.608550px;}
.y19a{bottom:186.897750px;}
.y256{bottom:187.560000px;}
.y99{bottom:188.100000px;}
.y22f{bottom:189.180000px;}
.y122{bottom:189.443820px;}
.y119{bottom:190.980000px;}
.y171{bottom:191.718600px;}
.yc2{bottom:192.060000px;}
.yef{bottom:193.500000px;}
.y282{bottom:194.220000px;}
.y217{bottom:194.736600px;}
.y1ca{bottom:196.222803px;}
.y141{bottom:196.560000px;}
.y14a{bottom:197.110050px;}
.y2a6{bottom:198.540000px;}
.y25e{bottom:199.129587px;}
.y1bb{bottom:201.240000px;}
.y172{bottom:201.478800px;}
.y1de{bottom:201.780000px;}
.y16a{bottom:202.320000px;}
.y1ef{bottom:202.909500px;}
.y19b{bottom:203.904900px;}
.y12e{bottom:205.606800px;}
.y19d{bottom:205.642350px;}
.y192{bottom:206.100000px;}
.y5c{bottom:206.820000px;}
.y206{bottom:207.000000px;}
.y3c{bottom:207.360000px;}
.y255{bottom:208.260000px;}
.y30{bottom:208.800000px;}
.y22e{bottom:209.880000px;}
.y174{bottom:211.054800px;}
.y118{bottom:211.680000px;}
.yc1{bottom:212.760000px;}
.yf7{bottom:212.850705px;}
.yee{bottom:214.200000px;}
.y281{bottom:214.920000px;}
.y237{bottom:216.152725px;}
.y19f{bottom:216.984000px;}
.y140{bottom:217.260000px;}
.y20f{bottom:217.328461px;}
.y1e7{bottom:218.465586px;}
.y295{bottom:219.240000px;}
.ya0{bottom:219.774909px;}
.y14c{bottom:220.501500px;}
.y1ba{bottom:221.940000px;}
.y1dd{bottom:222.480000px;}
.y169{bottom:223.020000px;}
.y123{bottom:225.095779px;}
.yd{bottom:225.360000px;}
.y191{bottom:226.800000px;}
.y205{bottom:227.700000px;}
.yca{bottom:228.766572px;}
.y254{bottom:228.960000px;}
.y98{bottom:229.500000px;}
.y22d{bottom:230.580000px;}
.y177{bottom:230.697150px;}
.y117{bottom:232.380000px;}
.yc0{bottom:233.460000px;}
.y14e{bottom:233.563200px;}
.yed{bottom:234.900000px;}
.y280{bottom:235.620000px;}
.y5b{bottom:237.780000px;}
.y13f{bottom:237.960000px;}
.yfe{bottom:238.431600px;}
.y2f{bottom:239.940000px;}
.y1c2{bottom:240.606900px;}
.y1b9{bottom:242.640000px;}
.y1dc{bottom:243.180000px;}
.y168{bottom:243.720000px;}
.ya7{bottom:247.104000px;}
.y190{bottom:247.500000px;}
.y204{bottom:248.400000px;}
.y253{bottom:249.660000px;}
.y97{bottom:250.200000px;}
.y22c{bottom:251.280000px;}
.y1c9{bottom:252.807119px;}
.y116{bottom:253.080000px;}
.y12c{bottom:253.483200px;}
.ybf{bottom:254.160000px;}
.y14f{bottom:254.913000px;}
.y23b{bottom:255.055500px;}
.yec{bottom:255.600000px;}
.y25f{bottom:256.057857px;}
.y27f{bottom:256.320000px;}
.yc{bottom:256.500000px;}
.yd6{bottom:257.088750px;}
.y178{bottom:257.116200px;}
.y1a0{bottom:258.526650px;}
.y13e{bottom:258.660000px;}
.y1c3{bottom:258.695100px;}
.y213{bottom:258.953700px;}
.y26a{bottom:260.125050px;}
.y1eb{bottom:260.313000px;}
.y2a5{bottom:260.640000px;}
.y124{bottom:260.747738px;}
.y1b8{bottom:263.340000px;}
.y1db{bottom:263.880000px;}
.y167{bottom:264.420000px;}
.y18f{bottom:268.200000px;}
.yff{bottom:268.207571px;}
.y5a{bottom:268.920000px;}
.y203{bottom:269.100000px;}
.y252{bottom:270.360000px;}
.y3b{bottom:270.540000px;}
.y2e{bottom:270.900000px;}
.y22b{bottom:271.980000px;}
.y17a{bottom:273.757800px;}
.y115{bottom:273.780000px;}
.ybe{bottom:274.860000px;}
.yeb{bottom:276.300000px;}
.y151{bottom:276.896850px;}
.y27e{bottom:277.020000px;}
.y102{bottom:277.251450px;}
.y13d{bottom:279.360000px;}
.y1a2{bottom:279.614400px;}
.y294{bottom:281.160000px;}
.y238{bottom:281.272196px;}
.y210{bottom:282.801587px;}
.y1c5{bottom:283.934550px;}
.y1b7{bottom:284.040000px;}
.y1e8{bottom:284.281392px;}
.y1da{bottom:284.580000px;}
.y166{bottom:285.120000px;}
.ya1{bottom:288.646759px;}
.y18e{bottom:288.900000px;}
.y202{bottom:289.800000px;}
.y251{bottom:291.060000px;}
.y96{bottom:291.600000px;}
.y14b{bottom:292.453050px;}
.y22a{bottom:292.680000px;}
.y114{bottom:294.480000px;}
.y173{bottom:295.305600px;}
.ybd{bottom:295.560000px;}
.y125{bottom:296.607162px;}
.yea{bottom:297.000000px;}
.y19c{bottom:297.079650px;}
.y27d{bottom:297.720000px;}
.y59{bottom:299.880000px;}
.y13c{bottom:300.060000px;}
.ycb{bottom:300.128737px;}
.yf6{bottom:301.301199px;}
.y3a{bottom:301.500000px;}
.y2d{bottom:301.860000px;}
.y1b6{bottom:304.740000px;}
.y1d9{bottom:305.280000px;}
.y165{bottom:305.820000px;}
.y18d{bottom:309.600000px;}
.y201{bottom:310.500000px;}
.y250{bottom:311.760000px;}
.y95{bottom:312.300000px;}
.y260{bottom:312.986128px;}
.y229{bottom:313.380000px;}
.y113{bottom:315.180000px;}
.ybc{bottom:316.260000px;}
.y17c{bottom:316.818450px;}
.ye9{bottom:317.700000px;}
.y27c{bottom:318.420000px;}
.y269{bottom:319.623600px;}
.y13b{bottom:320.760000px;}
.y2a4{bottom:322.560000px;}
.y1b5{bottom:325.440000px;}
.y1d8{bottom:325.980000px;}
.y164{bottom:326.520000px;}
.y18c{bottom:330.300000px;}
.y58{bottom:331.020000px;}
.y200{bottom:331.200000px;}
.yf5{bottom:331.515879px;}
.y126{bottom:332.259121px;}
.y24f{bottom:332.460000px;}
.y39{bottom:332.640000px;}
.y2c{bottom:333.000000px;}
.y228{bottom:334.080000px;}
.y112{bottom:335.880000px;}
.ybb{bottom:336.960000px;}
.ye8{bottom:338.400000px;}
.y27b{bottom:339.120000px;}
.y154{bottom:340.528475px;}
.y13a{bottom:341.280000px;}
.y293{bottom:343.260000px;}
.y1b4{bottom:346.140000px;}
.y239{bottom:346.391666px;}
.y1d7{bottom:346.680000px;}
.y163{bottom:347.220000px;}
.y211{bottom:348.274712px;}
.y1e9{bottom:350.097197px;}
.y1a5{bottom:350.891850px;}
.y18b{bottom:351.000000px;}
.y1ff{bottom:351.900000px;}
.y24e{bottom:353.160000px;}
.y94{bottom:353.700000px;}
.y227{bottom:354.780000px;}
.y2c8{bottom:356.400000px;}
.y111{bottom:356.580000px;}
.ya2{bottom:357.318802px;}
.yba{bottom:357.660000px;}
.ye7{bottom:359.100000px;}
.y27a{bottom:359.820000px;}
.y57{bottom:361.980000px;}
.y2b{bottom:363.960000px;}
.y265{bottom:364.518044px;}
.y1c8{bottom:364.908122px;}
.y1b3{bottom:366.840000px;}
.y1d6{bottom:367.380000px;}
.y127{bottom:367.911080px;}
.y162{bottom:367.920000px;}
.y261{bottom:369.914399px;}
.ycc{bottom:371.283872px;}
.y18a{bottom:371.700000px;}
.y1fe{bottom:372.600000px;}
.y24d{bottom:373.860000px;}
.y93{bottom:374.400000px;}
.y226{bottom:375.480000px;}
.ya6{bottom:377.048400px;}
.y110{bottom:377.280000px;}
.yb9{bottom:378.360000px;}
.ye6{bottom:379.800000px;}
.y279{bottom:380.520000px;}
.yf8{bottom:382.020900px;}
.y2c9{bottom:382.320000px;}
.y139{bottom:382.680000px;}
.y2a3{bottom:384.660000px;}
.y1b2{bottom:387.540000px;}
.y1d5{bottom:388.080000px;}
.y161{bottom:388.620000px;}
.yf9{bottom:389.520150px;}
.ya5{bottom:392.019000px;}
.y189{bottom:392.400000px;}
.y176{bottom:392.746350px;}
.y56{bottom:393.120000px;}
.y1fd{bottom:393.300000px;}
.y24c{bottom:394.560000px;}
.y2a{bottom:395.100000px;}
.y225{bottom:396.180000px;}
.y267{bottom:397.590738px;}
.y10f{bottom:397.980000px;}
.y153{bottom:398.231100px;}
.yb8{bottom:399.060000px;}
.ye5{bottom:400.500000px;}
.y278{bottom:401.220000px;}
.ycf{bottom:402.074860px;}
.y138{bottom:403.380000px;}
.y128{bottom:403.770504px;}
.y292{bottom:405.360000px;}
.y1a4{bottom:406.989525px;}
.ya4{bottom:406.989600px;}
.y1b1{bottom:408.240000px;}
.y1d4{bottom:408.780000px;}
.y160{bottom:409.320000px;}
.y23a{bottom:411.511137px;}
.y188{bottom:413.100000px;}
.y212{bottom:413.747838px;}
.y1fc{bottom:414.000000px;}
.y24b{bottom:415.260000px;}
.y92{bottom:415.800000px;}
.y1ea{bottom:415.913002px;}
.y224{bottom:416.880000px;}
.y10e{bottom:418.680000px;}
.y2c6{bottom:419.400000px;}
.yb7{bottom:419.760000px;}
.y1c7{bottom:420.227100px;}
.ye4{bottom:421.200000px;}
.y277{bottom:421.920000px;}
.yce{bottom:423.169050px;}
.y55{bottom:424.080000px;}
.y60{bottom:425.700000px;}
.y29{bottom:426.060000px;}
.ya3{bottom:426.190651px;}
.y262{bottom:426.842669px;}
.y1b0{bottom:428.940000px;}
.y1d3{bottom:429.480000px;}
.y15f{bottom:430.020000px;}
.y187{bottom:433.800000px;}
.y1fb{bottom:434.700000px;}
.y24a{bottom:435.960000px;}
.y91{bottom:436.500000px;}
.y264{bottom:437.326430px;}
.y223{bottom:437.580000px;}
.y10d{bottom:439.380000px;}
.y129{bottom:439.422463px;}
.yb6{bottom:440.460000px;}
.ye3{bottom:441.900000px;}
.y276{bottom:442.620000px;}
.ycd{bottom:442.646037px;}
.y137{bottom:444.780000px;}
.y2c7{bottom:445.500000px;}
.ya8{bottom:446.512050px;}
.y2a2{bottom:446.760000px;}
.y1af{bottom:449.640000px;}
.y7a{bottom:450.180000px;}
.y15e{bottom:450.720000px;}
.y186{bottom:454.500000px;}
.y54{bottom:455.220000px;}
.y1fa{bottom:455.400000px;}
.y249{bottom:456.660000px;}
.y28{bottom:457.200000px;}
.y222{bottom:458.280000px;}
.y10c{bottom:460.080000px;}
.y12d{bottom:460.533750px;}
.yb5{bottom:461.160000px;}
.ye2{bottom:462.600000px;}
.y275{bottom:463.320000px;}
.yd7{bottom:463.707450px;}
.y136{bottom:465.480000px;}
.yfc{bottom:466.939350px;}
.y23c{bottom:467.053800px;}
.y291{bottom:467.460000px;}
.y214{bottom:467.920950px;}
.y179{bottom:469.090500px;}
.y150{bottom:470.312850px;}
.y1ae{bottom:470.340000px;}
.y1ec{bottom:470.372850px;}
.y1d2{bottom:470.880000px;}
.y15d{bottom:471.420000px;}
.y1c4{bottom:473.019600px;}
.y1a1{bottom:473.410200px;}
.yfd{bottom:474.438600px;}
.y185{bottom:475.200000px;}
.y1f9{bottom:476.100000px;}
.y248{bottom:477.360000px;}
.y90{bottom:477.900000px;}
.y221{bottom:478.980000px;}
.y26b{bottom:479.002350px;}
.y10b{bottom:480.780000px;}
.y79{bottom:481.320000px;}
.yb4{bottom:481.860000px;}
.y2c4{bottom:482.580000px;}
.ye1{bottom:483.300000px;}
.y274{bottom:484.020000px;}
.y53{bottom:486.180000px;}
.y27{bottom:488.160000px;}
.y1ad{bottom:491.040000px;}
.y1d1{bottom:491.580000px;}
.y15c{bottom:492.120000px;}
.y184{bottom:495.900000px;}
.y1f8{bottom:496.800000px;}
.y247{bottom:498.060000px;}
.y8f{bottom:498.600000px;}
.y220{bottom:499.680000px;}
.y10a{bottom:501.480000px;}
.y103{bottom:502.009500px;}
.yb3{bottom:502.560000px;}
.ye0{bottom:504.000000px;}
.y273{bottom:504.720000px;}
.y135{bottom:506.880000px;}
.y2c5{bottom:507.600000px;}
.y2a1{bottom:508.860000px;}
.y1ac{bottom:511.740000px;}
.y78{bottom:512.280000px;}
.y15b{bottom:512.820000px;}
.y183{bottom:516.600000px;}
.y52{bottom:517.320000px;}
.y1f7{bottom:517.500000px;}
.y246{bottom:518.760000px;}
.y26{bottom:519.300000px;}
.y21f{bottom:520.380000px;}
.y109{bottom:522.180000px;}
.yb2{bottom:523.260000px;}
.ydf{bottom:524.700000px;}
.y272{bottom:525.420000px;}
.y134{bottom:527.580000px;}
.y290{bottom:529.560000px;}
.y1ab{bottom:532.440000px;}
.y1d0{bottom:532.980000px;}
.y15a{bottom:533.520000px;}
.y182{bottom:537.300000px;}
.y1f6{bottom:538.200000px;}
.y245{bottom:539.460000px;}
.y8e{bottom:540.000000px;}
.y21e{bottom:541.080000px;}
.y108{bottom:542.880000px;}
.y77{bottom:543.240000px;}
.yb1{bottom:543.960000px;}
.y2c2{bottom:544.680000px;}
.yde{bottom:545.400000px;}
.y271{bottom:546.120000px;}
.y51{bottom:548.280000px;}
.y25{bottom:550.260000px;}
.y1aa{bottom:553.140000px;}
.y1cf{bottom:553.680000px;}
.y159{bottom:554.220000px;}
.y181{bottom:558.000000px;}
.y1f5{bottom:558.900000px;}
.y244{bottom:560.160000px;}
.y8d{bottom:560.700000px;}
.y21d{bottom:561.780000px;}
.y107{bottom:563.580000px;}
.yb0{bottom:564.660000px;}
.ydd{bottom:566.100000px;}
.y270{bottom:566.820000px;}
.y133{bottom:568.980000px;}
.y2c3{bottom:570.600000px;}
.y2a0{bottom:570.960000px;}
.y1a9{bottom:573.840000px;}
.y1ce{bottom:574.380000px;}
.y158{bottom:574.920000px;}
.y76{bottom:575.820000px;}
.y180{bottom:578.700000px;}
.y50{bottom:579.420000px;}
.y1f4{bottom:579.600000px;}
.y243{bottom:580.860000px;}
.y24{bottom:581.400000px;}
.y21c{bottom:582.480000px;}
.y106{bottom:584.280000px;}
.yaf{bottom:585.360000px;}
.ydc{bottom:586.800000px;}
.y26f{bottom:587.520000px;}
.y132{bottom:589.680000px;}
.y28f{bottom:591.660000px;}
.y1a8{bottom:594.540000px;}
.y1cd{bottom:595.080000px;}
.y157{bottom:595.620000px;}
.y17f{bottom:599.400000px;}
.y1f3{bottom:600.300000px;}
.yf1{bottom:600.541500px;}
.y242{bottom:601.560000px;}
.y8c{bottom:602.100000px;}
.y21b{bottom:603.180000px;}
.yae{bottom:606.060000px;}
.y75{bottom:606.780000px;}
.ydb{bottom:607.500000px;}
.y2c0{bottom:607.680000px;}
.y26e{bottom:608.220000px;}
.y4f{bottom:610.380000px;}
.y23{bottom:612.360000px;}
.y1a7{bottom:615.240000px;}
.y1cc{bottom:615.780000px;}
.y156{bottom:616.320000px;}
.y233{bottom:617.865000px;}
.y241{bottom:617.940000px;}
.y17e{bottom:620.100000px;}
.y1f2{bottom:621.000000px;}
.y8b{bottom:622.800000px;}
.y21a{bottom:623.880000px;}
.y25a{bottom:624.540000px;}
.yad{bottom:626.760000px;}
.yda{bottom:628.200000px;}
.y131{bottom:631.080000px;}
.y197{bottom:631.515000px;}
.y1a6{bottom:631.620000px;}
.y1c0{bottom:632.040000px;}
.y1cb{bottom:632.160000px;}
.y2c1{bottom:632.700000px;}
.y146{bottom:632.790000px;}
.y155{bottom:632.880000px;}
.y29f{bottom:633.060000px;}
.y16e{bottom:636.540000px;}
.y17d{bottom:636.660000px;}
.y1e3{bottom:637.440000px;}
.y1f1{bottom:637.560000px;}
.y74{bottom:639.360000px;}
.y20b{bottom:640.140000px;}
.y219{bottom:640.260000px;}
.y4e{bottom:641.520000px;}
.y22{bottom:643.500000px;}
.yc6{bottom:644.490000px;}
.yac{bottom:647.460000px;}
.y11d{bottom:647.565000px;}
.y130{bottom:647.640000px;}
.y28e{bottom:653.760000px;}
.y9c{bottom:663.765000px;}
.yab{bottom:663.840000px;}
.y8a{bottom:664.200000px;}
.y2be{bottom:669.780000px;}
.y73{bottom:671.940000px;}
.y4d{bottom:672.480000px;}
.y21{bottom:674.460000px;}
.y89{bottom:684.900000px;}
.y2bf{bottom:694.800000px;}
.y29e{bottom:695.160000px;}
.y4c{bottom:703.620000px;}
.y72{bottom:704.520000px;}
.y20{bottom:705.600000px;}
.y28d{bottom:715.860000px;}
.y88{bottom:726.300000px;}
.y2ba{bottom:731.880000px;}
.y4b{bottom:734.580000px;}
.y1f{bottom:736.560000px;}
.y71{bottom:737.100000px;}
.y87{bottom:747.000000px;}
.y29d{bottom:757.260000px;}
.y2bc{bottom:757.980000px;}
.y4a{bottom:765.540000px;}
.y1e{bottom:767.700000px;}
.y70{bottom:769.500000px;}
.y28c{bottom:777.960000px;}
.y86{bottom:788.400000px;}
.y2b8{bottom:795.060000px;}
.y49{bottom:796.680000px;}
.y1d{bottom:798.660000px;}
.y6f{bottom:802.260000px;}
.y85{bottom:809.100000px;}
.y29c{bottom:819.360000px;}
.y2b9{bottom:820.080000px;}
.y48{bottom:827.640000px;}
.y1c{bottom:829.800000px;}
.yb{bottom:830.880000px;}
.y6e{bottom:833.220000px;}
.y28b{bottom:840.060000px;}
.y84{bottom:850.500000px;}
.y2b4{bottom:857.160000px;}
.y47{bottom:858.780000px;}
.y1b{bottom:860.760000px;}
.y6d{bottom:864.180000px;}
.ya{bottom:868.860000px;}
.y83{bottom:871.200000px;}
.y29b{bottom:881.460000px;}
.y2b6{bottom:883.080000px;}
.y46{bottom:889.740000px;}
.y1a{bottom:891.900000px;}
.y9{bottom:892.980000px;}
.y6c{bottom:896.760000px;}
.y28a{bottom:902.160000px;}
.y82{bottom:912.600000px;}
.y2b2{bottom:920.160000px;}
.y45{bottom:920.880000px;}
.y19{bottom:922.860000px;}
.y8{bottom:924.120000px;}
.y6b{bottom:928.980000px;}
.y289{bottom:930.780000px;}
.y81{bottom:933.300000px;}
.y29a{bottom:943.560000px;}
.y2b3{bottom:945.180000px;}
.y6a{bottom:950.040000px;}
.y44{bottom:951.840000px;}
.y18{bottom:954.000000px;}
.y288{bottom:959.040000px;}
.y7{bottom:961.920000px;}
.y299{bottom:964.260000px;}
.y80{bottom:974.700000px;}
.y2b0{bottom:982.260000px;}
.y43{bottom:982.980000px;}
.y38{bottom:984.600000px;}
.y17{bottom:984.960000px;}
.y6{bottom:985.860000px;}
.y287{bottom:987.660000px;}
.y69{bottom:990.180000px;}
.y7f{bottom:995.400000px;}
.y298{bottom:1005.660000px;}
.y2b1{bottom:1007.280000px;}
.y42{bottom:1013.940000px;}
.y37{bottom:1015.740000px;}
.y16{bottom:1016.100000px;}
.y5{bottom:1016.820000px;}
.y68{bottom:1021.140000px;}
.y297{bottom:1026.360000px;}
.y7e{bottom:1036.800000px;}
.y2ad{bottom:1044.360000px;}
.y41{bottom:1045.080000px;}
.y36{bottom:1046.700000px;}
.y15{bottom:1047.060000px;}
.y67{bottom:1052.280000px;}
.y7d{bottom:1057.500000px;}
.y4{bottom:1068.488460px;}
.y2af{bottom:1069.380000px;}
.y40{bottom:1076.760000px;}
.y14{bottom:1078.200000px;}
.y66{bottom:1083.240000px;}
.y2a8{bottom:1088.460000px;}
.y7c{bottom:1098.900000px;}
.y3{bottom:1104.480000px;}
.y2a9{bottom:1107.180000px;}
.y35{bottom:1108.800000px;}
.y13{bottom:1109.160000px;}
.y65{bottom:1112.944320px;}
.y7b{bottom:1119.600000px;}
.y2ab{bottom:1131.840000px;}
.y12{bottom:1139.940000px;}
.y34{bottom:1140.300000px;}
.y64{bottom:1141.560000px;}
.y10{bottom:1186.297500px;}
.yf{bottom:1204.297500px;}
.ye{bottom:1222.297500px;}
.h2{height:20.701500px;}
.h3f{height:22.899663px;}
.h34{height:23.059975px;}
.h29{height:23.432579px;}
.h36{height:24.626399px;}
.h41{height:24.775353px;}
.h40{height:25.030017px;}
.h2b{height:25.172856px;}
.h37{height:25.205180px;}
.h2c{height:25.612293px;}
.h1d{height:26.334787px;}
.h38{height:26.984333px;}
.h2d{height:27.583209px;}
.h35{height:27.618154px;}
.h2a{height:28.064580px;}
.h1b{height:32.758173px;}
.h6{height:33.494766px;}
.h16{height:36.137821px;}
.hf{height:40.108482px;}
.h8{height:41.689453px;}
.h5b{height:43.160082px;}
.h1c{height:44.319829px;}
.he{height:44.758393px;}
.h10{height:44.758830px;}
.h17{height:46.182851px;}
.h25{height:46.312149px;}
.h14{height:46.376798px;}
.h23{height:46.473771px;}
.h33{height:46.645440px;}
.h55{height:46.650682px;}
.h51{height:46.902725px;}
.h50{height:46.904035px;}
.h4b{height:47.149526px;}
.h4c{height:47.150837px;}
.h45{height:47.162194px;}
.h3e{height:47.285376px;}
.h28{height:47.398948px;}
.h59{height:48.164251px;}
.hc{height:48.224531px;}
.ha{height:48.761719px;}
.h1a{height:49.458538px;}
.h5d{height:49.634648px;}
.h7{height:49.992188px;}
.h12{height:54.640054px;}
.h11{height:54.640491px;}
.h18{height:56.379020px;}
.h26{height:56.536711px;}
.h15{height:56.616211px;}
.h24{height:56.734152px;}
.h39{height:56.943387px;}
.h3b{height:56.946444px;}
.h57{height:56.949939px;}
.h56{height:56.953870px;}
.h53{height:57.257895px;}
.h52{height:57.259642px;}
.h4d{height:57.558861px;}
.h4e{height:57.560608px;}
.h47{height:57.564976px;}
.h48{height:57.575023px;}
.h43{height:57.718736px;}
.h42{height:57.725288px;}
.h30{height:57.863759px;}
.h2f{height:57.876863px;}
.h5c{height:58.732587px;}
.h5a{height:58.798109px;}
.h3{height:59.800781px;}
.h1f{height:60.377637px;}
.h1e{height:60.620507px;}
.h5e{height:62.100000px;}
.h3a{height:62.395729px;}
.h3c{height:62.398787px;}
.h61{height:62.998500px;}
.h5f{height:63.000000px;}
.h49{height:63.076726px;}
.h46{height:63.087209px;}
.h60{height:63.180000px;}
.h2e{height:63.403901px;}
.h31{height:63.418316px;}
.h9{height:63.949219px;}
.h20{height:66.424487px;}
.h5{height:66.605977px;}
.hb{height:67.426523px;}
.h4{height:74.820586px;}
.h21{height:83.294321px;}
.hd{height:492.823500px;}
.h22{height:509.023500px;}
.h13{height:512.100000px;}
.h4f{height:516.448500px;}
.h54{height:518.025000px;}
.h4a{height:519.148500px;}
.h32{height:520.050000px;}
.h27{height:523.800000px;}
.h44{height:524.548500px;}
.h3d{height:525.075000px;}
.h58{height:532.050000px;}
.h19{height:556.048500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.998500px;}
.w3{width:18.000000px;}
.we{width:219.600000px;}
.w7{width:622.500000px;}
.wb{width:636.300000px;}
.wc{width:636.451500px;}
.w8{width:636.825000px;}
.wa{width:636.975000px;}
.w9{width:637.200000px;}
.w4{width:637.350000px;}
.w5{width:652.275000px;}
.w6{width:669.900000px;}
.wd{width:675.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:35.942400px;}
.x7{left:49.813500px;}
.x1d{left:51.695850px;}
.x29{left:54.920700px;}
.x46{left:58.042650px;}
.x3a{left:59.834100px;}
.xe{left:61.100955px;}
.x16{left:63.654108px;}
.x57{left:65.619613px;}
.x5c{left:68.621301px;}
.x1f{left:73.080000px;}
.x31{left:82.669500px;}
.x49{left:84.555900px;}
.x50{left:85.804200px;}
.x56{left:89.372250px;}
.x3e{left:91.951950px;}
.xd{left:99.033868px;}
.x3f{left:100.798800px;}
.x15{left:102.793873px;}
.xc{left:106.396050px;}
.x6f{left:109.620000px;}
.x41{left:110.694750px;}
.x14{left:114.513600px;}
.x23{left:116.485050px;}
.x2c{left:120.823650px;}
.x6{left:127.620000px;}
.x66{left:132.172519px;}
.x55{left:133.540500px;}
.x2b{left:135.240000px;}
.x54{left:137.750967px;}
.x53{left:143.424225px;}
.x4{left:146.160000px;}
.x67{left:152.119067px;}
.x52{left:153.307950px;}
.x62{left:161.562150px;}
.x19{left:169.092900px;}
.x1a{left:170.328660px;}
.x2{left:174.600000px;}
.x8{left:180.720000px;}
.x3{left:211.686660px;}
.x42{left:214.422750px;}
.x40{left:224.048850px;}
.x6d{left:226.440000px;}
.x21{left:236.517578px;}
.x22{left:237.624415px;}
.x20{left:241.385400px;}
.x75{left:246.420000px;}
.x2a{left:252.679500px;}
.x72{left:261.360000px;}
.x12{left:270.473850px;}
.x68{left:275.921700px;}
.x69{left:279.354750px;}
.x1e{left:283.812600px;}
.x59{left:288.924450px;}
.x5f{left:290.751300px;}
.x51{left:297.988950px;}
.x3b{left:301.076700px;}
.x4f{left:304.898700px;}
.x47{left:306.849450px;}
.x6e{left:313.920000px;}
.x33{left:317.983800px;}
.x2f{left:323.229000px;}
.x4e{left:324.929850px;}
.x4c{left:326.446350px;}
.x45{left:329.108850px;}
.x5d{left:331.120950px;}
.x36{left:336.559800px;}
.x11{left:338.141100px;}
.x32{left:339.683250px;}
.x17{left:340.863450px;}
.x61{left:349.333200px;}
.x1c{left:353.632950px;}
.x5{left:355.500000px;}
.x3c{left:356.894550px;}
.x6b{left:359.813850px;}
.x43{left:361.769850px;}
.x18{left:362.895358px;}
.x3d{left:369.157147px;}
.x58{left:387.754200px;}
.x5e{left:390.106950px;}
.x63{left:396.499570px;}
.x2d{left:412.039650px;}
.x4d{left:432.248700px;}
.x37{left:434.864850px;}
.x26{left:438.922800px;}
.x4b{left:440.846850px;}
.x35{left:444.704550px;}
.xa{left:446.400000px;}
.x71{left:454.500000px;}
.x24{left:459.518100px;}
.x48{left:467.242500px;}
.xf{left:480.062700px;}
.x64{left:483.828742px;}
.x27{left:491.186100px;}
.x25{left:511.781400px;}
.x65{left:521.382302px;}
.x70{left:527.400000px;}
.x74{left:542.880000px;}
.x73{left:547.380000px;}
.x4a{left:556.242750px;}
.x60{left:558.900000px;}
.x5b{left:559.980000px;}
.x34{left:561.953400px;}
.x6c{left:572.400000px;}
.xb{left:581.400000px;}
.x2e{left:583.258050px;}
.x39{left:593.274150px;}
.x44{left:594.350250px;}
.x10{left:597.232950px;}
.x1b{left:613.142400px;}
.x28{left:624.280200px;}
.x6a{left:633.375450px;}
.x9{left:747.360000px;}
.x1{left:756.360000px;}
.x30{left:757.620000px;}
.x5a{left:763.920000px;}
.x13{left:765.000000px;}
@media print{
.v7{vertical-align:-39.211733pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.v6{vertical-align:39.211733pt;}
.ls82{letter-spacing:-9.619842pt;}
.ls50{letter-spacing:-9.446574pt;}
.ls66{letter-spacing:-9.443248pt;}
.ls73{letter-spacing:-9.417091pt;}
.ls6c{letter-spacing:-9.395692pt;}
.ls78{letter-spacing:-9.368137pt;}
.ls7d{letter-spacing:-9.317467pt;}
.ls5c{letter-spacing:-9.294708pt;}
.ls47{letter-spacing:-9.282162pt;}
.ls51{letter-spacing:-7.818747pt;}
.ls6d{letter-spacing:-7.779693pt;}
.ls5d{letter-spacing:-7.694422pt;}
.ls67{letter-spacing:-7.400400pt;}
.ls4f{letter-spacing:-7.276853pt;}
.ls65{letter-spacing:-7.259440pt;}
.ls6b{letter-spacing:-7.240507pt;}
.ls5b{letter-spacing:-7.161146pt;}
.ls3e{letter-spacing:-7.055816pt;}
.ls3f{letter-spacing:-7.027558pt;}
.ls40{letter-spacing:-6.462123pt;}
.ls72{letter-spacing:-6.325104pt;}
.ls77{letter-spacing:-6.291840pt;}
.ls2e{letter-spacing:-6.268245pt;}
.ls7c{letter-spacing:-6.258432pt;}
.ls38{letter-spacing:-6.221328pt;}
.ls36{letter-spacing:-6.133051pt;}
.ls30{letter-spacing:-6.004224pt;}
.ls31{letter-spacing:-6.004176pt;}
.ls80{letter-spacing:-5.097081pt;}
.ls45{letter-spacing:-5.056700pt;}
.ls52{letter-spacing:-5.016084pt;}
.ls68{letter-spacing:-5.004080pt;}
.ls6e{letter-spacing:-4.991054pt;}
.ls71{letter-spacing:-4.989653pt;}
.ls76{letter-spacing:-4.963714pt;}
.ls7b{letter-spacing:-4.936867pt;}
.ls5a{letter-spacing:-4.936299pt;}
.ls44{letter-spacing:-4.918161pt;}
.ls34{letter-spacing:-4.907937pt;}
.ls81{letter-spacing:-4.876271pt;}
.ls2f{letter-spacing:-4.848096pt;}
.ls46{letter-spacing:-4.693958pt;}
.ls4d{letter-spacing:-4.108700pt;}
.ls63{letter-spacing:-4.053446pt;}
.ls58{letter-spacing:-4.019493pt;}
.ls35{letter-spacing:-3.926917pt;}
.ls37{letter-spacing:-3.854831pt;}
.ls39{letter-spacing:-3.804360pt;}
.ls7f{letter-spacing:-3.704803pt;}
.ls4a{letter-spacing:-3.645936pt;}
.ls60{letter-spacing:-3.637200pt;}
.ls6a{letter-spacing:-3.627725pt;}
.ls70{letter-spacing:-3.626750pt;}
.ls75{letter-spacing:-3.607867pt;}
.ls7a{letter-spacing:-3.588379pt;}
.ls55{letter-spacing:-3.587976pt;}
.ls43{letter-spacing:-3.574771pt;}
.ls33{letter-spacing:-3.567312pt;}
.ls3a{letter-spacing:-3.519671pt;}
.ls4e{letter-spacing:-3.460826pt;}
.ls2d{letter-spacing:-3.442824pt;}
.ls3c{letter-spacing:-3.409090pt;}
.ls59{letter-spacing:-3.405774pt;}
.ls4c{letter-spacing:-3.220966pt;}
.ls64{letter-spacing:-3.208856pt;}
.ls57{letter-spacing:-3.169730pt;}
.ls62{letter-spacing:-3.147735pt;}
.ls3b{letter-spacing:-2.639754pt;}
.ls41{letter-spacing:-2.583274pt;}
.ls4b{letter-spacing:-2.260201pt;}
.ls56{letter-spacing:-2.224261pt;}
.ls61{letter-spacing:-2.208798pt;}
.ls2c{letter-spacing:-1.920000pt;}
.ls3d{letter-spacing:-1.286144pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.768000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.117760pt;}
.ls86{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.171520pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.299520pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.343040pt;}
.ls19{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.440960pt;}
.lsa{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls85{letter-spacing:0.768000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls21{letter-spacing:1.440000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.560000pt;}
.ls28{letter-spacing:3.200000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls24{letter-spacing:5.120000pt;}
.ls26{letter-spacing:5.760000pt;}
.ls25{letter-spacing:6.400000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls83{letter-spacing:7.680000pt;}
.ls27{letter-spacing:8.960000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls18{letter-spacing:10.240000pt;}
.ls1d{letter-spacing:10.880000pt;}
.lsd{letter-spacing:11.520000pt;}
.ls20{letter-spacing:13.440000pt;}
.ls22{letter-spacing:18.560000pt;}
.lse{letter-spacing:19.840000pt;}
.ls1a{letter-spacing:22.400000pt;}
.ls2a{letter-spacing:28.160000pt;}
.lsc{letter-spacing:33.280000pt;}
.ls84{letter-spacing:44.160000pt;}
.ls7e{letter-spacing:116.965930pt;}
.ls69{letter-spacing:142.229845pt;}
.ls5f{letter-spacing:161.969190pt;}
.ls54{letter-spacing:163.103074pt;}
.ls49{letter-spacing:165.738502pt;}
.ls14{letter-spacing:172.800000pt;}
.ls42{letter-spacing:192.470221pt;}
.ls74{letter-spacing:194.252151pt;}
.ls6f{letter-spacing:195.268847pt;}
.ls79{letter-spacing:233.130731pt;}
.ls53{letter-spacing:372.921696pt;}
.ls5e{letter-spacing:378.037867pt;}
.ls48{letter-spacing:378.945856pt;}
.ws56{word-spacing:-64.000000pt;}
.ws82{word-spacing:-22.455876pt;}
.ws16{word-spacing:-16.448000pt;}
.ws6d{word-spacing:-16.250880pt;}
.wsc5{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws83{word-spacing:-15.993754pt;}
.wsc9{word-spacing:-15.936000pt;}
.wsc7{word-spacing:-15.872000pt;}
.ws5d{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsc8{word-spacing:-15.616000pt;}
.wsc6{word-spacing:-15.360000pt;}
.ws32{word-spacing:-15.232000pt;}
.wsc2{word-spacing:-14.860502pt;}
.ws93{word-spacing:-14.624357pt;}
.wsa5{word-spacing:-14.589360pt;}
.wsad{word-spacing:-14.551382pt;}
.ws8d{word-spacing:-14.496048pt;}
.wsb8{word-spacing:-14.471674pt;}
.ws9c{word-spacing:-14.391744pt;}
.ws7b{word-spacing:-14.309054pt;}
.ws1{word-spacing:-13.632000pt;}
.wsc1{word-spacing:-12.643376pt;}
.wsb2{word-spacing:-12.377005pt;}
.wsb7{word-spacing:-12.312563pt;}
.wsbc{word-spacing:-12.246056pt;}
.ws8c{word-spacing:-12.199616pt;}
.ws7a{word-spacing:-12.174160pt;}
.ws72{word-spacing:-11.749320pt;}
.ws33{word-spacing:-10.720000pt;}
.ws84{word-spacing:-10.715802pt;}
.ws74{word-spacing:-8.765749pt;}
.ws73{word-spacing:-7.345600pt;}
.ws5{word-spacing:-0.814720pt;}
.ws70{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.449280pt;}
.ws6{word-spacing:-0.343040pt;}
.ws52{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.128000pt;}
.ws39{word-spacing:0.192000pt;}
.ws20{word-spacing:0.256000pt;}
.ws78{word-spacing:0.384000pt;}
.ws8{word-spacing:0.640000pt;}
.ws29{word-spacing:0.896000pt;}
.ws2a{word-spacing:1.152000pt;}
.ws2f{word-spacing:1.280000pt;}
.ws88{word-spacing:1.286144pt;}
.ws18{word-spacing:1.536000pt;}
.ws7f{word-spacing:1.583234pt;}
.ws86{word-spacing:1.719839pt;}
.ws87{word-spacing:1.731601pt;}
.ws3d{word-spacing:1.792000pt;}
.wsa8{word-spacing:1.864193pt;}
.ws3c{word-spacing:1.920000pt;}
.ws7d{word-spacing:1.985520pt;}
.ws3b{word-spacing:2.176000pt;}
.ws9f{word-spacing:2.225555pt;}
.ws96{word-spacing:2.261530pt;}
.wsc3{word-spacing:2.509845pt;}
.ws35{word-spacing:2.560000pt;}
.ws85{word-spacing:2.599757pt;}
.ws8e{word-spacing:2.632255pt;}
.wsbd{word-spacing:2.642267pt;}
.wsb3{word-spacing:2.670518pt;}
.ws8f{word-spacing:2.770795pt;}
.ws36{word-spacing:2.816000pt;}
.ws77{word-spacing:3.068801pt;}
.ws76{word-spacing:3.068826pt;}
.ws5b{word-spacing:3.072000pt;}
.wsa6{word-spacing:3.147735pt;}
.ws9d{word-spacing:3.169730pt;}
.ws80{word-spacing:3.179790pt;}
.wsbe{word-spacing:3.198754pt;}
.ws4b{word-spacing:3.200000pt;}
.wsb9{word-spacing:3.215829pt;}
.ws94{word-spacing:3.220966pt;}
.wsb4{word-spacing:3.232831pt;}
.ws66{word-spacing:3.456000pt;}
.ws21{word-spacing:3.712000pt;}
.ws12{word-spacing:3.840000pt;}
.ws9e{word-spacing:4.019493pt;}
.wsa7{word-spacing:4.053446pt;}
.ws55{word-spacing:4.096000pt;}
.ws95{word-spacing:4.108700pt;}
.ws7e{word-spacing:4.191653pt;}
.ws89{word-spacing:4.217269pt;}
.wsab{word-spacing:4.299280pt;}
.ws50{word-spacing:4.352000pt;}
.wsf{word-spacing:4.480000pt;}
.ws48{word-spacing:4.736000pt;}
.ws7c{word-spacing:4.907937pt;}
.wscd{word-spacing:4.992000pt;}
.wsa2{word-spacing:5.028038pt;}
.wsb0{word-spacing:5.083760pt;}
.ws99{word-spacing:5.109280pt;}
.ws7{word-spacing:5.120000pt;}
.wsd{word-spacing:5.376000pt;}
.ws62{word-spacing:5.632000pt;}
.ws43{word-spacing:5.760000pt;}
.ws63{word-spacing:5.952000pt;}
.ws4e{word-spacing:6.016000pt;}
.ws90{word-spacing:6.234288pt;}
.wsbf{word-spacing:6.258000pt;}
.ws75{word-spacing:6.268245pt;}
.ws59{word-spacing:6.272000pt;}
.wsba{word-spacing:6.292032pt;}
.wsb5{word-spacing:6.324912pt;}
.ws37{word-spacing:6.400000pt;}
.wsc4{word-spacing:6.461088pt;}
.wsca{word-spacing:6.592000pt;}
.ws58{word-spacing:6.656000pt;}
.ws8a{word-spacing:7.027558pt;}
.ws23{word-spacing:7.040000pt;}
.wsa0{word-spacing:7.161146pt;}
.ws54{word-spacing:7.232000pt;}
.wsae{word-spacing:7.240507pt;}
.wsa9{word-spacing:7.259440pt;}
.ws97{word-spacing:7.276853pt;}
.ws13{word-spacing:7.296000pt;}
.ws3f{word-spacing:7.680000pt;}
.ws4f{word-spacing:7.936000pt;}
.ws3e{word-spacing:8.192000pt;}
.ws22{word-spacing:8.320000pt;}
.ws46{word-spacing:8.576000pt;}
.ws47{word-spacing:8.832000pt;}
.ws17{word-spacing:8.960000pt;}
.ws45{word-spacing:9.216000pt;}
.wsa1{word-spacing:9.294708pt;}
.wsaf{word-spacing:9.395692pt;}
.wsaa{word-spacing:9.443248pt;}
.ws98{word-spacing:9.446574pt;}
.ws69{word-spacing:9.472000pt;}
.ws53{word-spacing:9.600000pt;}
.ws2c{word-spacing:10.112000pt;}
.ws5e{word-spacing:10.240000pt;}
.ws2b{word-spacing:10.496000pt;}
.ws2d{word-spacing:10.880000pt;}
.ws6e{word-spacing:11.008000pt;}
.ws4a{word-spacing:11.136000pt;}
.ws26{word-spacing:11.520000pt;}
.ws1e{word-spacing:12.160000pt;}
.ws6c{word-spacing:13.056000pt;}
.ws19{word-spacing:13.312000pt;}
.ws1a{word-spacing:13.440000pt;}
.ws44{word-spacing:13.696000pt;}
.ws6a{word-spacing:13.952000pt;}
.ws4c{word-spacing:14.080000pt;}
.ws9{word-spacing:14.720000pt;}
.ws5c{word-spacing:14.976000pt;}
.ws11{word-spacing:15.360000pt;}
.wse{word-spacing:15.616000pt;}
.ws65{word-spacing:15.872000pt;}
.ws40{word-spacing:16.000000pt;}
.ws64{word-spacing:16.256000pt;}
.wsb{word-spacing:16.640000pt;}
.ws5a{word-spacing:17.280000pt;}
.ws2e{word-spacing:17.920000pt;}
.ws5f{word-spacing:18.432000pt;}
.ws34{word-spacing:18.560000pt;}
.ws61{word-spacing:18.688000pt;}
.ws31{word-spacing:18.816000pt;}
.ws60{word-spacing:19.200000pt;}
.ws28{word-spacing:19.392000pt;}
.ws57{word-spacing:19.712000pt;}
.ws27{word-spacing:19.840000pt;}
.ws51{word-spacing:20.480000pt;}
.ws3a{word-spacing:20.736000pt;}
.ws38{word-spacing:21.120000pt;}
.ws6b{word-spacing:21.376000pt;}
.ws24{word-spacing:21.760000pt;}
.ws25{word-spacing:22.400000pt;}
.ws1f{word-spacing:24.320000pt;}
.wsc{word-spacing:25.600000pt;}
.ws49{word-spacing:26.880000pt;}
.ws6f{word-spacing:27.008000pt;}
.ws68{word-spacing:27.392000pt;}
.ws1d{word-spacing:27.520000pt;}
.ws30{word-spacing:28.160000pt;}
.ws67{word-spacing:29.440000pt;}
.ws1c{word-spacing:33.152000pt;}
.ws1b{word-spacing:33.280000pt;}
.ws4d{word-spacing:37.760000pt;}
.wsce{word-spacing:44.352000pt;}
.ws41{word-spacing:51.200000pt;}
.ws42{word-spacing:60.160000pt;}
.wscc{word-spacing:60.800000pt;}
.wscb{word-spacing:61.440000pt;}
.wsac{word-spacing:90.923452pt;}
.wsc0{word-spacing:94.325466pt;}
.ws81{word-spacing:123.611507pt;}
.wsa4{word-spacing:138.427319pt;}
.ws9b{word-spacing:139.396395pt;}
.ws92{word-spacing:141.648770pt;}
.ws8b{word-spacing:169.886746pt;}
.wsb6{word-spacing:172.204074pt;}
.wsb1{word-spacing:173.105372pt;}
.ws14{word-spacing:179.840000pt;}
.wsbb{word-spacing:210.461288pt;}
.ws9a{word-spacing:322.177464pt;}
.wsa3{word-spacing:326.597467pt;}
.ws91{word-spacing:327.381904pt;}
.ws71{word-spacing:336.085200pt;}
.ws79{word-spacing:348.237600pt;}
._8{margin-left:-59.864000pt;}
._f{margin-left:-4.135759pt;}
._10{margin-left:-2.950827pt;}
._6{margin-left:-1.920000pt;}
._0{margin-left:-0.936000pt;}
._1{width:0.896000pt;}
._2{width:2.056960pt;}
._e{width:2.975040pt;}
._c{width:3.959040pt;}
._5{width:4.880000pt;}
._9{width:6.144000pt;}
._3{width:7.501120pt;}
._b{width:8.512000pt;}
._d{width:10.240000pt;}
._a{width:12.608000pt;}
._7{width:15.368960pt;}
._4{width:33.832000pt;}
._1f{width:44.864000pt;}
._20{width:85.120000pt;}
._1e{width:105.439875pt;}
._19{width:116.720606pt;}
._17{width:130.943590pt;}
._18{width:132.440747pt;}
._16{width:150.841323pt;}
._15{width:151.897304pt;}
._13{width:154.351669pt;}
._1c{width:155.399731pt;}
._1b{width:157.101617pt;}
._1a{width:169.766459pt;}
._11{width:183.561664pt;}
._21{width:213.120000pt;}
._1d{width:224.188262pt;}
._14{width:349.172712pt;}
._12{width:354.813232pt;}
.fs32{font-size:27.959467pt;}
.fs28{font-size:28.155200pt;}
.fs1e{font-size:28.610133pt;}
.fs2a{font-size:30.067733pt;}
.fs34{font-size:30.249600pt;}
.fs33{font-size:30.560533pt;}
.fs20{font-size:30.734933pt;}
.fs2b{font-size:30.774400pt;}
.fs21{font-size:31.271467pt;}
.fs13{font-size:32.153600pt;}
.fs2c{font-size:32.946667pt;}
.fs22{font-size:33.677867pt;}
.fs29{font-size:33.720533pt;}
.fs1f{font-size:34.265600pt;}
.fs11{font-size:39.996267pt;}
.fs2{font-size:42.880000pt;}
.fsd{font-size:44.122667pt;}
.fs18{font-size:47.838400pt;}
.fs7{font-size:48.970667pt;}
.fs49{font-size:52.696533pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:53.333333pt;}
.fs12{font-size:54.112533pt;}
.fs6{font-size:54.648000pt;}
.fs8{font-size:54.648533pt;}
.fse{font-size:56.387200pt;}
.fs1b{font-size:56.545067pt;}
.fsb{font-size:56.624000pt;}
.fs19{font-size:56.742400pt;}
.fs27{font-size:56.952000pt;}
.fs44{font-size:56.958400pt;}
.fs41{font-size:57.266133pt;}
.fs40{font-size:57.267733pt;}
.fs3c{font-size:57.567467pt;}
.fs3d{font-size:57.569067pt;}
.fs37{font-size:57.582933pt;}
.fs31{font-size:57.733333pt;}
.fs1d{font-size:57.872000pt;}
.fs47{font-size:58.806400pt;}
.fs5{font-size:58.880000pt;}
.fs10{font-size:60.386667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:66.713067pt;}
.fs9{font-size:66.713600pt;}
.fsf{font-size:68.836267pt;}
.fs1c{font-size:69.028800pt;}
.fsc{font-size:69.125867pt;}
.fs1a{font-size:69.269867pt;}
.fs2d{font-size:69.525333pt;}
.fs2f{font-size:69.529067pt;}
.fs46{font-size:69.533333pt;}
.fs45{font-size:69.538133pt;}
.fs43{font-size:69.909333pt;}
.fs42{font-size:69.911467pt;}
.fs3e{font-size:70.276800pt;}
.fs3f{font-size:70.278933pt;}
.fs39{font-size:70.284267pt;}
.fs3a{font-size:70.296533pt;}
.fs36{font-size:70.472000pt;}
.fs35{font-size:70.480000pt;}
.fs25{font-size:70.649067pt;}
.fs24{font-size:70.665067pt;}
.fs4a{font-size:71.709867pt;}
.fs48{font-size:71.789867pt;}
.fs15{font-size:73.718400pt;}
.fs14{font-size:74.014933pt;}
.fs1{font-size:74.880000pt;}
.fs2e{font-size:76.182400pt;}
.fs30{font-size:76.186133pt;}
.fs3b{font-size:77.013867pt;}
.fs38{font-size:77.026667pt;}
.fs23{font-size:77.413333pt;}
.fs26{font-size:77.430933pt;}
.fs17{font-size:80.776533pt;}
.fs16{font-size:81.101333pt;}
.y0{bottom:0.000000pt;}
.y2ac{bottom:3.520000pt;}
.y2{bottom:3.840000pt;}
.y2b7{bottom:4.640000pt;}
.y2bd{bottom:4.800000pt;}
.yd9{bottom:35.302267pt;}
.y12f{bottom:35.378267pt;}
.y26d{bottom:36.664667pt;}
.yaa{bottom:36.718400pt;}
.y240{bottom:38.272933pt;}
.y218{bottom:38.482400pt;}
.y1f0{bottom:38.688533pt;}
.y1a3{bottom:38.793867pt;}
.y17b{bottom:40.125867pt;}
.y2aa{bottom:40.320000pt;}
.y1c6{bottom:40.562400pt;}
.y2ae{bottom:40.640000pt;}
.y152{bottom:40.759733pt;}
.y2ca{bottom:41.120000pt;}
.y2b5{bottom:41.440000pt;}
.y105{bottom:41.563333pt;}
.y2bb{bottom:41.600000pt;}
.y1{bottom:47.200000pt;}
.y11{bottom:51.040000pt;}
.yc7{bottom:59.749600pt;}
.y11e{bottom:59.874667pt;}
.y147{bottom:60.119200pt;}
.y9d{bottom:60.320267pt;}
.y25b{bottom:62.052267pt;}
.y234{bottom:62.868667pt;}
.y20c{bottom:63.211733pt;}
.y1e4{bottom:63.542267pt;}
.y198{bottom:63.724267pt;}
.y1c1{bottom:64.306267pt;}
.y16f{bottom:64.713467pt;}
.yf2{bottom:72.736800pt;}
.y9e{bottom:73.094237pt;}
.y11f{bottom:73.138203pt;}
.y25c{bottom:75.798263pt;}
.y235{bottom:76.182693pt;}
.y20d{bottom:76.598066pt;}
.yc8{bottom:76.666020pt;}
.y1e5{bottom:76.998662pt;}
.yd5{bottom:87.138824pt;}
.y14d{bottom:89.544933pt;}
.y175{bottom:94.790533pt;}
.yfa{bottom:96.656133pt;}
.y101{bottom:96.849943pt;}
.y19e{bottom:97.532800pt;}
.yd0{bottom:98.544533pt;}
.y286{bottom:99.040000pt;}
.y3f{bottom:99.200000pt;}
.y5f{bottom:100.960000pt;}
.y145{bottom:101.120000pt;}
.y148{bottom:101.432800pt;}
.y33{bottom:102.880000pt;}
.yfb{bottom:103.322133pt;}
.y120{bottom:104.828833pt;}
.y1bf{bottom:105.280000pt;}
.y1e2{bottom:105.760000pt;}
.y170{bottom:106.490267pt;}
.y63{bottom:108.496640pt;}
.y199{bottom:109.146400pt;}
.y196{bottom:109.600000pt;}
.y20a{bottom:110.400000pt;}
.y259{bottom:111.520000pt;}
.y9b{bottom:112.000000pt;}
.y232{bottom:112.960000pt;}
.y12b{bottom:113.123067pt;}
.yd4{bottom:113.612424pt;}
.y1ee{bottom:113.638267pt;}
.yf3{bottom:114.497600pt;}
.y11c{bottom:114.560000pt;}
.y263{bottom:114.946000pt;}
.yc5{bottom:115.520000pt;}
.y285{bottom:117.440000pt;}
.y216{bottom:118.062533pt;}
.y144{bottom:119.520000pt;}
.y23e{bottom:120.566667pt;}
.y2a7{bottom:121.280000pt;}
.y1be{bottom:123.680000pt;}
.y1e1{bottom:124.160000pt;}
.y16d{bottom:124.640000pt;}
.yd1{bottom:125.382145pt;}
.y25d{bottom:126.401170pt;}
.y3e{bottom:126.720000pt;}
.y195{bottom:128.000000pt;}
.y5e{bottom:128.640000pt;}
.y266{bottom:128.693759pt;}
.y209{bottom:128.800000pt;}
.y258{bottom:129.920000pt;}
.y32{bottom:130.400000pt;}
.y231{bottom:131.360000pt;}
.y12a{bottom:132.098533pt;}
.y1ed{bottom:132.889467pt;}
.y11b{bottom:132.960000pt;}
.y62{bottom:133.770880pt;}
.yc4{bottom:133.920000pt;}
.y236{bottom:134.066667pt;}
.y9f{bottom:134.313659pt;}
.y20e{bottom:134.796400pt;}
.y1e6{bottom:135.501600pt;}
.y284{bottom:135.840000pt;}
.ya9{bottom:136.610933pt;}
.y121{bottom:136.703876pt;}
.y215{bottom:137.213600pt;}
.yd8{bottom:137.703867pt;}
.y143{bottom:137.920000pt;}
.yd2{bottom:138.254933pt;}
.yf4{bottom:138.615349pt;}
.y23d{bottom:139.614267pt;}
.y296{bottom:139.680000pt;}
.yc9{bottom:140.099056pt;}
.y1bd{bottom:142.080000pt;}
.y1e0{bottom:142.560000pt;}
.y104{bottom:142.926267pt;}
.y16c{bottom:143.040000pt;}
.y194{bottom:146.400000pt;}
.y268{bottom:146.443804pt;}
.y208{bottom:147.200000pt;}
.y257{bottom:148.320000pt;}
.y9a{bottom:148.800000pt;}
.y230{bottom:149.760000pt;}
.y26c{bottom:151.222667pt;}
.yd3{bottom:151.304212pt;}
.y11a{bottom:151.360000pt;}
.yc3{bottom:152.320000pt;}
.yf0{bottom:153.600000pt;}
.y283{bottom:154.240000pt;}
.y3d{bottom:154.880000pt;}
.y5d{bottom:156.160000pt;}
.y142{bottom:156.320000pt;}
.y31{bottom:158.080000pt;}
.y61{bottom:159.207040pt;}
.y1bc{bottom:160.480000pt;}
.y1df{bottom:160.960000pt;}
.y16b{bottom:161.440000pt;}
.y100{bottom:163.703702pt;}
.y149{bottom:164.230800pt;}
.y193{bottom:164.800000pt;}
.y207{bottom:165.600000pt;}
.y23f{bottom:165.874267pt;}
.y19a{bottom:166.131333pt;}
.y256{bottom:166.720000pt;}
.y99{bottom:167.200000pt;}
.y22f{bottom:168.160000pt;}
.y122{bottom:168.394507pt;}
.y119{bottom:169.760000pt;}
.y171{bottom:170.416533pt;}
.yc2{bottom:170.720000pt;}
.yef{bottom:172.000000pt;}
.y282{bottom:172.640000pt;}
.y217{bottom:173.099200pt;}
.y1ca{bottom:174.420269pt;}
.y141{bottom:174.720000pt;}
.y14a{bottom:175.208933pt;}
.y2a6{bottom:176.480000pt;}
.y25e{bottom:177.004077pt;}
.y1bb{bottom:178.880000pt;}
.y172{bottom:179.092267pt;}
.y1de{bottom:179.360000pt;}
.y16a{bottom:179.840000pt;}
.y1ef{bottom:180.364000pt;}
.y19b{bottom:181.248800pt;}
.y12e{bottom:182.761600pt;}
.y19d{bottom:182.793200pt;}
.y192{bottom:183.200000pt;}
.y5c{bottom:183.840000pt;}
.y206{bottom:184.000000pt;}
.y3c{bottom:184.320000pt;}
.y255{bottom:185.120000pt;}
.y30{bottom:185.600000pt;}
.y22e{bottom:186.560000pt;}
.y174{bottom:187.604267pt;}
.y118{bottom:188.160000pt;}
.yc1{bottom:189.120000pt;}
.yf7{bottom:189.200627pt;}
.yee{bottom:190.400000pt;}
.y281{bottom:191.040000pt;}
.y237{bottom:192.135755pt;}
.y19f{bottom:192.874667pt;}
.y140{bottom:193.120000pt;}
.y20f{bottom:193.180854pt;}
.y1e7{bottom:194.191632pt;}
.y295{bottom:194.880000pt;}
.ya0{bottom:195.355475pt;}
.y14c{bottom:196.001333pt;}
.y1ba{bottom:197.280000pt;}
.y1dd{bottom:197.760000pt;}
.y169{bottom:198.240000pt;}
.y123{bottom:200.085137pt;}
.yd{bottom:200.320000pt;}
.y191{bottom:201.600000pt;}
.y205{bottom:202.400000pt;}
.yca{bottom:203.348064pt;}
.y254{bottom:203.520000pt;}
.y98{bottom:204.000000pt;}
.y22d{bottom:204.960000pt;}
.y177{bottom:205.064133pt;}
.y117{bottom:206.560000pt;}
.yc0{bottom:207.520000pt;}
.y14e{bottom:207.611733pt;}
.yed{bottom:208.800000pt;}
.y280{bottom:209.440000pt;}
.y5b{bottom:211.360000pt;}
.y13f{bottom:211.520000pt;}
.yfe{bottom:211.939200pt;}
.y2f{bottom:213.280000pt;}
.y1c2{bottom:213.872800pt;}
.y1b9{bottom:215.680000pt;}
.y1dc{bottom:216.160000pt;}
.y168{bottom:216.640000pt;}
.ya7{bottom:219.648000pt;}
.y190{bottom:220.000000pt;}
.y204{bottom:220.800000pt;}
.y253{bottom:221.920000pt;}
.y97{bottom:222.400000pt;}
.y22c{bottom:223.360000pt;}
.y1c9{bottom:224.717439pt;}
.y116{bottom:224.960000pt;}
.y12c{bottom:225.318400pt;}
.ybf{bottom:225.920000pt;}
.y14f{bottom:226.589333pt;}
.y23b{bottom:226.716000pt;}
.yec{bottom:227.200000pt;}
.y25f{bottom:227.606984pt;}
.y27f{bottom:227.840000pt;}
.yc{bottom:228.000000pt;}
.yd6{bottom:228.523333pt;}
.y178{bottom:228.547733pt;}
.y1a0{bottom:229.801467pt;}
.y13e{bottom:229.920000pt;}
.y1c3{bottom:229.951200pt;}
.y213{bottom:230.181067pt;}
.y26a{bottom:231.222267pt;}
.y1eb{bottom:231.389333pt;}
.y2a5{bottom:231.680000pt;}
.y124{bottom:231.775767pt;}
.y1b8{bottom:234.080000pt;}
.y1db{bottom:234.560000pt;}
.y167{bottom:235.040000pt;}
.y18f{bottom:238.400000pt;}
.yff{bottom:238.406729pt;}
.y5a{bottom:239.040000pt;}
.y203{bottom:239.200000pt;}
.y252{bottom:240.320000pt;}
.y3b{bottom:240.480000pt;}
.y2e{bottom:240.800000pt;}
.y22b{bottom:241.760000pt;}
.y17a{bottom:243.340267pt;}
.y115{bottom:243.360000pt;}
.ybe{bottom:244.320000pt;}
.yeb{bottom:245.600000pt;}
.y151{bottom:246.130533pt;}
.y27e{bottom:246.240000pt;}
.y102{bottom:246.445733pt;}
.y13d{bottom:248.320000pt;}
.y1a2{bottom:248.546133pt;}
.y294{bottom:249.920000pt;}
.y238{bottom:250.019729pt;}
.y210{bottom:251.379188pt;}
.y1c5{bottom:252.386267pt;}
.y1b7{bottom:252.480000pt;}
.y1e8{bottom:252.694570pt;}
.y1da{bottom:252.960000pt;}
.y166{bottom:253.440000pt;}
.ya1{bottom:256.574897pt;}
.y18e{bottom:256.800000pt;}
.y202{bottom:257.600000pt;}
.y251{bottom:258.720000pt;}
.y96{bottom:259.200000pt;}
.y14b{bottom:259.958267pt;}
.y22a{bottom:260.160000pt;}
.y114{bottom:261.760000pt;}
.y173{bottom:262.493867pt;}
.ybd{bottom:262.720000pt;}
.y125{bottom:263.650811pt;}
.yea{bottom:264.000000pt;}
.y19c{bottom:264.070800pt;}
.y27d{bottom:264.640000pt;}
.y59{bottom:266.560000pt;}
.y13c{bottom:266.720000pt;}
.ycb{bottom:266.781100pt;}
.yf6{bottom:267.823288pt;}
.y3a{bottom:268.000000pt;}
.y2d{bottom:268.320000pt;}
.y1b6{bottom:270.880000pt;}
.y1d9{bottom:271.360000pt;}
.y165{bottom:271.840000pt;}
.y18d{bottom:275.200000pt;}
.y201{bottom:276.000000pt;}
.y250{bottom:277.120000pt;}
.y95{bottom:277.600000pt;}
.y260{bottom:278.209891pt;}
.y229{bottom:278.560000pt;}
.y113{bottom:280.160000pt;}
.ybc{bottom:281.120000pt;}
.y17c{bottom:281.616400pt;}
.ye9{bottom:282.400000pt;}
.y27c{bottom:283.040000pt;}
.y269{bottom:284.109867pt;}
.y13b{bottom:285.120000pt;}
.y2a4{bottom:286.720000pt;}
.y1b5{bottom:289.280000pt;}
.y1d8{bottom:289.760000pt;}
.y164{bottom:290.240000pt;}
.y18c{bottom:293.600000pt;}
.y58{bottom:294.240000pt;}
.y200{bottom:294.400000pt;}
.yf5{bottom:294.680781pt;}
.y126{bottom:295.341441pt;}
.y24f{bottom:295.520000pt;}
.y39{bottom:295.680000pt;}
.y2c{bottom:296.000000pt;}
.y228{bottom:296.960000pt;}
.y112{bottom:298.560000pt;}
.ybb{bottom:299.520000pt;}
.ye8{bottom:300.800000pt;}
.y27b{bottom:301.440000pt;}
.y154{bottom:302.691978pt;}
.y13a{bottom:303.360000pt;}
.y293{bottom:305.120000pt;}
.y1b4{bottom:307.680000pt;}
.y239{bottom:307.903703pt;}
.y1d7{bottom:308.160000pt;}
.y163{bottom:308.640000pt;}
.y211{bottom:309.577522pt;}
.y1e9{bottom:311.197508pt;}
.y1a5{bottom:311.903867pt;}
.y18b{bottom:312.000000pt;}
.y1ff{bottom:312.800000pt;}
.y24e{bottom:313.920000pt;}
.y94{bottom:314.400000pt;}
.y227{bottom:315.360000pt;}
.y2c8{bottom:316.800000pt;}
.y111{bottom:316.960000pt;}
.ya2{bottom:317.616713pt;}
.yba{bottom:317.920000pt;}
.ye7{bottom:319.200000pt;}
.y27a{bottom:319.840000pt;}
.y57{bottom:321.760000pt;}
.y2b{bottom:323.520000pt;}
.y265{bottom:324.016039pt;}
.y1c8{bottom:324.362775pt;}
.y1b3{bottom:326.080000pt;}
.y1d6{bottom:326.560000pt;}
.y127{bottom:327.032071pt;}
.y162{bottom:327.040000pt;}
.y261{bottom:328.812799pt;}
.ycc{bottom:330.030108pt;}
.y18a{bottom:330.400000pt;}
.y1fe{bottom:331.200000pt;}
.y24d{bottom:332.320000pt;}
.y93{bottom:332.800000pt;}
.y226{bottom:333.760000pt;}
.ya6{bottom:335.154133pt;}
.y110{bottom:335.360000pt;}
.yb9{bottom:336.320000pt;}
.ye6{bottom:337.600000pt;}
.y279{bottom:338.240000pt;}
.yf8{bottom:339.574133pt;}
.y2c9{bottom:339.840000pt;}
.y139{bottom:340.160000pt;}
.y2a3{bottom:341.920000pt;}
.y1b2{bottom:344.480000pt;}
.y1d5{bottom:344.960000pt;}
.y161{bottom:345.440000pt;}
.yf9{bottom:346.240133pt;}
.ya5{bottom:348.461333pt;}
.y189{bottom:348.800000pt;}
.y176{bottom:349.107867pt;}
.y56{bottom:349.440000pt;}
.y1fd{bottom:349.600000pt;}
.y24c{bottom:350.720000pt;}
.y2a{bottom:351.200000pt;}
.y225{bottom:352.160000pt;}
.y267{bottom:353.413990pt;}
.y10f{bottom:353.760000pt;}
.y153{bottom:353.983200pt;}
.yb8{bottom:354.720000pt;}
.ye5{bottom:356.000000pt;}
.y278{bottom:356.640000pt;}
.ycf{bottom:357.399875pt;}
.y138{bottom:358.560000pt;}
.y128{bottom:358.907115pt;}
.y292{bottom:360.320000pt;}
.y1a4{bottom:361.768467pt;}
.ya4{bottom:361.768533pt;}
.y1b1{bottom:362.880000pt;}
.y1d4{bottom:363.360000pt;}
.y160{bottom:363.840000pt;}
.y23a{bottom:365.787677pt;}
.y188{bottom:367.200000pt;}
.y212{bottom:367.775856pt;}
.y1fc{bottom:368.000000pt;}
.y24b{bottom:369.120000pt;}
.y92{bottom:369.600000pt;}
.y1ea{bottom:369.700446pt;}
.y224{bottom:370.560000pt;}
.y10e{bottom:372.160000pt;}
.y2c6{bottom:372.800000pt;}
.yb7{bottom:373.120000pt;}
.y1c7{bottom:373.535200pt;}
.ye4{bottom:374.400000pt;}
.y277{bottom:375.040000pt;}
.yce{bottom:376.150267pt;}
.y55{bottom:376.960000pt;}
.y60{bottom:378.400000pt;}
.y29{bottom:378.720000pt;}
.ya3{bottom:378.836135pt;}
.y262{bottom:379.415706pt;}
.y1b0{bottom:381.280000pt;}
.y1d3{bottom:381.760000pt;}
.y15f{bottom:382.240000pt;}
.y187{bottom:385.600000pt;}
.y1fb{bottom:386.400000pt;}
.y24a{bottom:387.520000pt;}
.y91{bottom:388.000000pt;}
.y264{bottom:388.734604pt;}
.y223{bottom:388.960000pt;}
.y10d{bottom:390.560000pt;}
.y129{bottom:390.597745pt;}
.yb6{bottom:391.520000pt;}
.ye3{bottom:392.800000pt;}
.y276{bottom:393.440000pt;}
.ycd{bottom:393.463144pt;}
.y137{bottom:395.360000pt;}
.y2c7{bottom:396.000000pt;}
.ya8{bottom:396.899600pt;}
.y2a2{bottom:397.120000pt;}
.y1af{bottom:399.680000pt;}
.y7a{bottom:400.160000pt;}
.y15e{bottom:400.640000pt;}
.y186{bottom:404.000000pt;}
.y54{bottom:404.640000pt;}
.y1fa{bottom:404.800000pt;}
.y249{bottom:405.920000pt;}
.y28{bottom:406.400000pt;}
.y222{bottom:407.360000pt;}
.y10c{bottom:408.960000pt;}
.y12d{bottom:409.363333pt;}
.yb5{bottom:409.920000pt;}
.ye2{bottom:411.200000pt;}
.y275{bottom:411.840000pt;}
.yd7{bottom:412.184400pt;}
.y136{bottom:413.760000pt;}
.yfc{bottom:415.057200pt;}
.y23c{bottom:415.158933pt;}
.y291{bottom:415.520000pt;}
.y214{bottom:415.929733pt;}
.y179{bottom:416.969333pt;}
.y150{bottom:418.055867pt;}
.y1ae{bottom:418.080000pt;}
.y1ec{bottom:418.109200pt;}
.y1d2{bottom:418.560000pt;}
.y15d{bottom:419.040000pt;}
.y1c4{bottom:420.461867pt;}
.y1a1{bottom:420.809067pt;}
.yfd{bottom:421.723200pt;}
.y185{bottom:422.400000pt;}
.y1f9{bottom:423.200000pt;}
.y248{bottom:424.320000pt;}
.y90{bottom:424.800000pt;}
.y221{bottom:425.760000pt;}
.y26b{bottom:425.779867pt;}
.y10b{bottom:427.360000pt;}
.y79{bottom:427.840000pt;}
.yb4{bottom:428.320000pt;}
.y2c4{bottom:428.960000pt;}
.ye1{bottom:429.600000pt;}
.y274{bottom:430.240000pt;}
.y53{bottom:432.160000pt;}
.y27{bottom:433.920000pt;}
.y1ad{bottom:436.480000pt;}
.y1d1{bottom:436.960000pt;}
.y15c{bottom:437.440000pt;}
.y184{bottom:440.800000pt;}
.y1f8{bottom:441.600000pt;}
.y247{bottom:442.720000pt;}
.y8f{bottom:443.200000pt;}
.y220{bottom:444.160000pt;}
.y10a{bottom:445.760000pt;}
.y103{bottom:446.230667pt;}
.yb3{bottom:446.720000pt;}
.ye0{bottom:448.000000pt;}
.y273{bottom:448.640000pt;}
.y135{bottom:450.560000pt;}
.y2c5{bottom:451.200000pt;}
.y2a1{bottom:452.320000pt;}
.y1ac{bottom:454.880000pt;}
.y78{bottom:455.360000pt;}
.y15b{bottom:455.840000pt;}
.y183{bottom:459.200000pt;}
.y52{bottom:459.840000pt;}
.y1f7{bottom:460.000000pt;}
.y246{bottom:461.120000pt;}
.y26{bottom:461.600000pt;}
.y21f{bottom:462.560000pt;}
.y109{bottom:464.160000pt;}
.yb2{bottom:465.120000pt;}
.ydf{bottom:466.400000pt;}
.y272{bottom:467.040000pt;}
.y134{bottom:468.960000pt;}
.y290{bottom:470.720000pt;}
.y1ab{bottom:473.280000pt;}
.y1d0{bottom:473.760000pt;}
.y15a{bottom:474.240000pt;}
.y182{bottom:477.600000pt;}
.y1f6{bottom:478.400000pt;}
.y245{bottom:479.520000pt;}
.y8e{bottom:480.000000pt;}
.y21e{bottom:480.960000pt;}
.y108{bottom:482.560000pt;}
.y77{bottom:482.880000pt;}
.yb1{bottom:483.520000pt;}
.y2c2{bottom:484.160000pt;}
.yde{bottom:484.800000pt;}
.y271{bottom:485.440000pt;}
.y51{bottom:487.360000pt;}
.y25{bottom:489.120000pt;}
.y1aa{bottom:491.680000pt;}
.y1cf{bottom:492.160000pt;}
.y159{bottom:492.640000pt;}
.y181{bottom:496.000000pt;}
.y1f5{bottom:496.800000pt;}
.y244{bottom:497.920000pt;}
.y8d{bottom:498.400000pt;}
.y21d{bottom:499.360000pt;}
.y107{bottom:500.960000pt;}
.yb0{bottom:501.920000pt;}
.ydd{bottom:503.200000pt;}
.y270{bottom:503.840000pt;}
.y133{bottom:505.760000pt;}
.y2c3{bottom:507.200000pt;}
.y2a0{bottom:507.520000pt;}
.y1a9{bottom:510.080000pt;}
.y1ce{bottom:510.560000pt;}
.y158{bottom:511.040000pt;}
.y76{bottom:511.840000pt;}
.y180{bottom:514.400000pt;}
.y50{bottom:515.040000pt;}
.y1f4{bottom:515.200000pt;}
.y243{bottom:516.320000pt;}
.y24{bottom:516.800000pt;}
.y21c{bottom:517.760000pt;}
.y106{bottom:519.360000pt;}
.yaf{bottom:520.320000pt;}
.ydc{bottom:521.600000pt;}
.y26f{bottom:522.240000pt;}
.y132{bottom:524.160000pt;}
.y28f{bottom:525.920000pt;}
.y1a8{bottom:528.480000pt;}
.y1cd{bottom:528.960000pt;}
.y157{bottom:529.440000pt;}
.y17f{bottom:532.800000pt;}
.y1f3{bottom:533.600000pt;}
.yf1{bottom:533.814667pt;}
.y242{bottom:534.720000pt;}
.y8c{bottom:535.200000pt;}
.y21b{bottom:536.160000pt;}
.yae{bottom:538.720000pt;}
.y75{bottom:539.360000pt;}
.ydb{bottom:540.000000pt;}
.y2c0{bottom:540.160000pt;}
.y26e{bottom:540.640000pt;}
.y4f{bottom:542.560000pt;}
.y23{bottom:544.320000pt;}
.y1a7{bottom:546.880000pt;}
.y1cc{bottom:547.360000pt;}
.y156{bottom:547.840000pt;}
.y233{bottom:549.213333pt;}
.y241{bottom:549.280000pt;}
.y17e{bottom:551.200000pt;}
.y1f2{bottom:552.000000pt;}
.y8b{bottom:553.600000pt;}
.y21a{bottom:554.560000pt;}
.y25a{bottom:555.146667pt;}
.yad{bottom:557.120000pt;}
.yda{bottom:558.400000pt;}
.y131{bottom:560.960000pt;}
.y197{bottom:561.346667pt;}
.y1a6{bottom:561.440000pt;}
.y1c0{bottom:561.813333pt;}
.y1cb{bottom:561.920000pt;}
.y2c1{bottom:562.400000pt;}
.y146{bottom:562.480000pt;}
.y155{bottom:562.560000pt;}
.y29f{bottom:562.720000pt;}
.y16e{bottom:565.813333pt;}
.y17d{bottom:565.920000pt;}
.y1e3{bottom:566.613333pt;}
.y1f1{bottom:566.720000pt;}
.y74{bottom:568.320000pt;}
.y20b{bottom:569.013333pt;}
.y219{bottom:569.120000pt;}
.y4e{bottom:570.240000pt;}
.y22{bottom:572.000000pt;}
.yc6{bottom:572.880000pt;}
.yac{bottom:575.520000pt;}
.y11d{bottom:575.613333pt;}
.y130{bottom:575.680000pt;}
.y28e{bottom:581.120000pt;}
.y9c{bottom:590.013333pt;}
.yab{bottom:590.080000pt;}
.y8a{bottom:590.400000pt;}
.y2be{bottom:595.360000pt;}
.y73{bottom:597.280000pt;}
.y4d{bottom:597.760000pt;}
.y21{bottom:599.520000pt;}
.y89{bottom:608.800000pt;}
.y2bf{bottom:617.600000pt;}
.y29e{bottom:617.920000pt;}
.y4c{bottom:625.440000pt;}
.y72{bottom:626.240000pt;}
.y20{bottom:627.200000pt;}
.y28d{bottom:636.320000pt;}
.y88{bottom:645.600000pt;}
.y2ba{bottom:650.560000pt;}
.y4b{bottom:652.960000pt;}
.y1f{bottom:654.720000pt;}
.y71{bottom:655.200000pt;}
.y87{bottom:664.000000pt;}
.y29d{bottom:673.120000pt;}
.y2bc{bottom:673.760000pt;}
.y4a{bottom:680.480000pt;}
.y1e{bottom:682.400000pt;}
.y70{bottom:684.000000pt;}
.y28c{bottom:691.520000pt;}
.y86{bottom:700.800000pt;}
.y2b8{bottom:706.720000pt;}
.y49{bottom:708.160000pt;}
.y1d{bottom:709.920000pt;}
.y6f{bottom:713.120000pt;}
.y85{bottom:719.200000pt;}
.y29c{bottom:728.320000pt;}
.y2b9{bottom:728.960000pt;}
.y48{bottom:735.680000pt;}
.y1c{bottom:737.600000pt;}
.yb{bottom:738.560000pt;}
.y6e{bottom:740.640000pt;}
.y28b{bottom:746.720000pt;}
.y84{bottom:756.000000pt;}
.y2b4{bottom:761.920000pt;}
.y47{bottom:763.360000pt;}
.y1b{bottom:765.120000pt;}
.y6d{bottom:768.160000pt;}
.ya{bottom:772.320000pt;}
.y83{bottom:774.400000pt;}
.y29b{bottom:783.520000pt;}
.y2b6{bottom:784.960000pt;}
.y46{bottom:790.880000pt;}
.y1a{bottom:792.800000pt;}
.y9{bottom:793.760000pt;}
.y6c{bottom:797.120000pt;}
.y28a{bottom:801.920000pt;}
.y82{bottom:811.200000pt;}
.y2b2{bottom:817.920000pt;}
.y45{bottom:818.560000pt;}
.y19{bottom:820.320000pt;}
.y8{bottom:821.440000pt;}
.y6b{bottom:825.760000pt;}
.y289{bottom:827.360000pt;}
.y81{bottom:829.600000pt;}
.y29a{bottom:838.720000pt;}
.y2b3{bottom:840.160000pt;}
.y6a{bottom:844.480000pt;}
.y44{bottom:846.080000pt;}
.y18{bottom:848.000000pt;}
.y288{bottom:852.480000pt;}
.y7{bottom:855.040000pt;}
.y299{bottom:857.120000pt;}
.y80{bottom:866.400000pt;}
.y2b0{bottom:873.120000pt;}
.y43{bottom:873.760000pt;}
.y38{bottom:875.200000pt;}
.y17{bottom:875.520000pt;}
.y6{bottom:876.320000pt;}
.y287{bottom:877.920000pt;}
.y69{bottom:880.160000pt;}
.y7f{bottom:884.800000pt;}
.y298{bottom:893.920000pt;}
.y2b1{bottom:895.360000pt;}
.y42{bottom:901.280000pt;}
.y37{bottom:902.880000pt;}
.y16{bottom:903.200000pt;}
.y5{bottom:903.840000pt;}
.y68{bottom:907.680000pt;}
.y297{bottom:912.320000pt;}
.y7e{bottom:921.600000pt;}
.y2ad{bottom:928.320000pt;}
.y41{bottom:928.960000pt;}
.y36{bottom:930.400000pt;}
.y15{bottom:930.720000pt;}
.y67{bottom:935.360000pt;}
.y7d{bottom:940.000000pt;}
.y4{bottom:949.767520pt;}
.y2af{bottom:950.560000pt;}
.y40{bottom:957.120000pt;}
.y14{bottom:958.400000pt;}
.y66{bottom:962.880000pt;}
.y2a8{bottom:967.520000pt;}
.y7c{bottom:976.800000pt;}
.y3{bottom:981.760000pt;}
.y2a9{bottom:984.160000pt;}
.y35{bottom:985.600000pt;}
.y13{bottom:985.920000pt;}
.y65{bottom:989.283840pt;}
.y7b{bottom:995.200000pt;}
.y2ab{bottom:1006.080000pt;}
.y12{bottom:1013.280000pt;}
.y34{bottom:1013.600000pt;}
.y64{bottom:1014.720000pt;}
.y10{bottom:1054.486667pt;}
.yf{bottom:1070.486667pt;}
.ye{bottom:1086.486667pt;}
.h2{height:18.401333pt;}
.h3f{height:20.355256pt;}
.h34{height:20.497755pt;}
.h29{height:20.828959pt;}
.h36{height:21.890132pt;}
.h41{height:22.022536pt;}
.h40{height:22.248904pt;}
.h2b{height:22.375872pt;}
.h37{height:22.404605pt;}
.h2c{height:22.766483pt;}
.h1d{height:23.408700pt;}
.h38{height:23.986074pt;}
.h2d{height:24.518408pt;}
.h35{height:24.549470pt;}
.h2a{height:24.946294pt;}
.h1b{height:29.118376pt;}
.h6{height:29.773125pt;}
.h16{height:32.122508pt;}
.hf{height:35.651984pt;}
.h8{height:37.057292pt;}
.h5b{height:38.364517pt;}
.h1c{height:39.395404pt;}
.he{height:39.785238pt;}
.h10{height:39.785627pt;}
.h17{height:41.051423pt;}
.h25{height:41.166355pt;}
.h14{height:41.223820pt;}
.h23{height:41.310019pt;}
.h33{height:41.462613pt;}
.h55{height:41.467273pt;}
.h51{height:41.691311pt;}
.h50{height:41.692476pt;}
.h4b{height:41.910690pt;}
.h4c{height:41.911855pt;}
.h45{height:41.921950pt;}
.h3e{height:42.031445pt;}
.h28{height:42.132398pt;}
.h59{height:42.812667pt;}
.hc{height:42.866250pt;}
.ha{height:43.343750pt;}
.h1a{height:43.963145pt;}
.h5d{height:44.119688pt;}
.h7{height:44.437500pt;}
.h12{height:48.568937pt;}
.h11{height:48.569325pt;}
.h18{height:50.114684pt;}
.h26{height:50.254854pt;}
.h15{height:50.325521pt;}
.h24{height:50.430357pt;}
.h39{height:50.616344pt;}
.h3b{height:50.619062pt;}
.h57{height:50.622168pt;}
.h56{height:50.625662pt;}
.h53{height:50.895906pt;}
.h52{height:50.897459pt;}
.h4d{height:51.163432pt;}
.h4e{height:51.164985pt;}
.h47{height:51.168868pt;}
.h48{height:51.177798pt;}
.h43{height:51.305543pt;}
.h42{height:51.311367pt;}
.h30{height:51.434452pt;}
.h2f{height:51.446101pt;}
.h5c{height:52.206744pt;}
.h5a{height:52.264986pt;}
.h3{height:53.156250pt;}
.h1f{height:53.669011pt;}
.h1e{height:53.884895pt;}
.h5e{height:55.200000pt;}
.h3a{height:55.462870pt;}
.h3c{height:55.465588pt;}
.h61{height:55.998667pt;}
.h5f{height:56.000000pt;}
.h49{height:56.068201pt;}
.h46{height:56.077520pt;}
.h60{height:56.160000pt;}
.h2e{height:56.359023pt;}
.h31{height:56.371837pt;}
.h9{height:56.843750pt;}
.h20{height:59.043988pt;}
.h5{height:59.205312pt;}
.hb{height:59.934688pt;}
.h4{height:66.507188pt;}
.h21{height:74.039397pt;}
.hd{height:438.065333pt;}
.h22{height:452.465333pt;}
.h13{height:455.200000pt;}
.h4f{height:459.065333pt;}
.h54{height:460.466667pt;}
.h4a{height:461.465333pt;}
.h32{height:462.266667pt;}
.h27{height:465.600000pt;}
.h44{height:466.265333pt;}
.h3d{height:466.733333pt;}
.h58{height:472.933333pt;}
.h19{height:494.265333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.998667pt;}
.w3{width:16.000000pt;}
.we{width:195.200000pt;}
.w7{width:553.333333pt;}
.wb{width:565.600000pt;}
.wc{width:565.734667pt;}
.w8{width:566.066667pt;}
.wa{width:566.200000pt;}
.w9{width:566.400000pt;}
.w4{width:566.533333pt;}
.w5{width:579.800000pt;}
.w6{width:595.466667pt;}
.wd{width:600.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:31.948800pt;}
.x7{left:44.278667pt;}
.x1d{left:45.951867pt;}
.x29{left:48.818400pt;}
.x46{left:51.593467pt;}
.x3a{left:53.185867pt;}
.xe{left:54.311960pt;}
.x16{left:56.581429pt;}
.x57{left:58.328545pt;}
.x5c{left:60.996712pt;}
.x1f{left:64.960000pt;}
.x31{left:73.484000pt;}
.x49{left:75.160800pt;}
.x50{left:76.270400pt;}
.x56{left:79.442000pt;}
.x3e{left:81.735067pt;}
.xd{left:88.030105pt;}
.x3f{left:89.598933pt;}
.x15{left:91.372331pt;}
.xc{left:94.574267pt;}
.x6f{left:97.440000pt;}
.x41{left:98.395333pt;}
.x14{left:101.789867pt;}
.x23{left:103.542267pt;}
.x2c{left:107.398800pt;}
.x6{left:113.440000pt;}
.x66{left:117.486684pt;}
.x55{left:118.702667pt;}
.x2b{left:120.213333pt;}
.x54{left:122.445304pt;}
.x53{left:127.488200pt;}
.x4{left:129.920000pt;}
.x67{left:135.216948pt;}
.x52{left:136.273733pt;}
.x62{left:143.610800pt;}
.x19{left:150.304800pt;}
.x1a{left:151.403253pt;}
.x2{left:155.200000pt;}
.x8{left:160.640000pt;}
.x3{left:188.165920pt;}
.x42{left:190.598000pt;}
.x40{left:199.154533pt;}
.x6d{left:201.280000pt;}
.x21{left:210.237847pt;}
.x22{left:211.221702pt;}
.x20{left:214.564800pt;}
.x75{left:219.040000pt;}
.x2a{left:224.604000pt;}
.x72{left:232.320000pt;}
.x12{left:240.421200pt;}
.x68{left:245.263733pt;}
.x69{left:248.315333pt;}
.x1e{left:252.277867pt;}
.x59{left:256.821733pt;}
.x5f{left:258.445600pt;}
.x51{left:264.879067pt;}
.x3b{left:267.623733pt;}
.x4f{left:271.021067pt;}
.x47{left:272.755067pt;}
.x6e{left:279.040000pt;}
.x33{left:282.652267pt;}
.x2f{left:287.314667pt;}
.x4e{left:288.826533pt;}
.x4c{left:290.174533pt;}
.x45{left:292.541200pt;}
.x5d{left:294.329733pt;}
.x36{left:299.164267pt;}
.x11{left:300.569867pt;}
.x32{left:301.940667pt;}
.x17{left:302.989733pt;}
.x61{left:310.518400pt;}
.x1c{left:314.340400pt;}
.x5{left:316.000000pt;}
.x3c{left:317.239600pt;}
.x6b{left:319.834533pt;}
.x43{left:321.573200pt;}
.x18{left:322.573651pt;}
.x3d{left:328.139687pt;}
.x58{left:344.670400pt;}
.x5e{left:346.761733pt;}
.x63{left:352.444062pt;}
.x2d{left:366.257467pt;}
.x4d{left:384.221067pt;}
.x37{left:386.546533pt;}
.x26{left:390.153600pt;}
.x4b{left:391.863867pt;}
.x35{left:395.292933pt;}
.xa{left:396.800000pt;}
.x71{left:404.000000pt;}
.x24{left:408.460533pt;}
.x48{left:415.326667pt;}
.xf{left:426.722400pt;}
.x64{left:430.069993pt;}
.x27{left:436.609867pt;}
.x25{left:454.916800pt;}
.x65{left:463.450935pt;}
.x70{left:468.800000pt;}
.x74{left:482.560000pt;}
.x73{left:486.560000pt;}
.x4a{left:494.438000pt;}
.x60{left:496.800000pt;}
.x5b{left:497.760000pt;}
.x34{left:499.514133pt;}
.x6c{left:508.800000pt;}
.xb{left:516.800000pt;}
.x2e{left:518.451600pt;}
.x39{left:527.354800pt;}
.x44{left:528.311333pt;}
.x10{left:530.873733pt;}
.x1b{left:545.015467pt;}
.x28{left:554.915733pt;}
.x6a{left:563.000400pt;}
.x9{left:664.320000pt;}
.x1{left:672.320000pt;}
.x30{left:673.440000pt;}
.x5a{left:679.040000pt;}
.x13{left:680.000000pt;}
}




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