
    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_d50f83ec67970f64433cc84e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_8683f57f093f4e9c2bb30736.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_26b536b1cae6da5b64122404.woff')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_b99968634725d028a0b45cd1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3cd51cfc9222a2f001945f8e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_3c8aefb940395e7029e16f75.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028320;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_49fd9d1856484b94455e5de7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001953;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_f9a802631f41b04149b8b88c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916504;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_b3b449bf6b82f1cec09aea23.woff')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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;}
.m1{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.m15{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251487,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252713,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252987,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.253822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253822,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254155,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.254350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254350,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254437,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254887,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.255047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255047,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255065,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255282,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255430,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255770,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.256025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256025,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.256703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256703,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.256810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256810,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257285,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257665,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.257835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257835,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.258013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258013,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258190,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.258742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258742,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259685,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.261697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261697,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.262315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262315,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.262520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262520,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.262653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262653,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.264068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264068,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.264422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264422,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.264522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264522,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265757,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.266132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266132,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.266172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266172,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.266482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266482,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266827,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.267170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267170,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267628,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.267763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267763,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.268307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268307,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.268697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268697,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271155,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271315,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.272275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272275,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.273038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273038,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.273877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273877,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.274955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274955,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.326122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326122,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.453525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453525,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.475962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475962,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-68.448694px;}
.v4{vertical-align:-67.268508px;}
.v1{vertical-align:-65.178467px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.200000px;}
.ls4{letter-spacing:-9.000000px;}
.ls9{letter-spacing:-6.000000px;}
.ls1{letter-spacing:-3.000000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.006000px;}
.ls1f{letter-spacing:3.594000px;}
.ls34{letter-spacing:7.800000px;}
.ls5{letter-spacing:9.000000px;}
.ls27{letter-spacing:9.600000px;}
.ls2c{letter-spacing:10.200000px;}
.ls2d{letter-spacing:11.400000px;}
.ls17{letter-spacing:16.800000px;}
.ls13{letter-spacing:18.000000px;}
.lsd{letter-spacing:18.600000px;}
.ls19{letter-spacing:19.200000px;}
.ls15{letter-spacing:19.800000px;}
.ls14{letter-spacing:21.612000px;}
.ls18{letter-spacing:22.824000px;}
.ls29{letter-spacing:23.094000px;}
.ls24{letter-spacing:24.576000px;}
.ls1a{letter-spacing:24.888000px;}
.lse{letter-spacing:25.200000px;}
.ls22{letter-spacing:27.618000px;}
.ls28{letter-spacing:30.894000px;}
.ls16{letter-spacing:31.206000px;}
.ls2e{letter-spacing:31.830000px;}
.ls10{letter-spacing:33.000000px;}
.ls1d{letter-spacing:35.106000px;}
.ls1e{letter-spacing:39.006000px;}
.lsf{letter-spacing:93.000000px;}
.ls1b{letter-spacing:96.000000px;}
.ls23{letter-spacing:133.200000px;}
.ls11{letter-spacing:135.000000px;}
.ls2b{letter-spacing:138.600000px;}
.ls26{letter-spacing:184.800000px;}
.ls0{letter-spacing:1207.615296px;}
.ls30{letter-spacing:1228.648936px;}
.ls12{letter-spacing:1229.276615px;}
.ls35{letter-spacing:1230.634450px;}
.ls25{letter-spacing:1234.720766px;}
.ls37{letter-spacing:1236.181080px;}
.ls21{letter-spacing:1236.706280px;}
.ls33{letter-spacing:1240.164918px;}
.ls2a{letter-spacing:1241.202509px;}
.ls8{letter-spacing:1243.200833px;}
.ls32{letter-spacing:1244.661147px;}
.ls7{letter-spacing:1246.339226px;}
.ls1c{letter-spacing:1249.375141px;}
.lsb{letter-spacing:1253.141213px;}
.ls20{letter-spacing:1259.738244px;}
.ls2f{letter-spacing:1260.673357px;}
.ls36{letter-spacing:1261.928714px;}
.lsa{letter-spacing:1262.658871px;}
.ls3{letter-spacing:1268.205501px;}
.ls6{letter-spacing:1269.678624px;}
.ls31{letter-spacing:1280.976840px;}
.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;}
}
.ws15{word-spacing:-85.806000px;}
.ws14{word-spacing:-81.906000px;}
.wsd{word-spacing:-79.800000px;}
.ws1e{word-spacing:-78.630000px;}
.ws10{word-spacing:-78.006000px;}
.ws1c{word-spacing:-77.694000px;}
.ws17{word-spacing:-74.418000px;}
.wsc{word-spacing:-72.000000px;}
.ws12{word-spacing:-71.688000px;}
.ws19{word-spacing:-71.376000px;}
.wsf{word-spacing:-68.412000px;}
.ws4{word-spacing:-66.600000px;}
.ws11{word-spacing:-66.024000px;}
.ws13{word-spacing:-61.200000px;}
.wse{word-spacing:-59.400000px;}
.ws16{word-spacing:-50.394000px;}
.wsb{word-spacing:-46.806000px;}
.ws1d{word-spacing:-46.800000px;}
.ws3{word-spacing:-45.000000px;}
.ws2{word-spacing:-43.200000px;}
.ws7{word-spacing:-40.800000px;}
.ws6{word-spacing:-37.800000px;}
.ws18{word-spacing:-34.200000px;}
.ws9{word-spacing:-32.400000px;}
.ws8{word-spacing:-28.800000px;}
.ws5{word-spacing:-27.000000px;}
.ws1b{word-spacing:-22.176000px;}
.ws0{word-spacing:-16.182000px;}
.wsa{word-spacing:-4.806000px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:1.800000px;}
._42{margin-left:-41.451000px;}
._43{margin-left:-40.194000px;}
._82{margin-left:-38.376000px;}
._84{margin-left:-37.194000px;}
._6f{margin-left:-36.192000px;}
._69{margin-left:-35.100000px;}
._75{margin-left:-24.924000px;}
._81{margin-left:-23.712000px;}
._40{margin-left:-21.840000px;}
._49{margin-left:-20.670000px;}
._21{margin-left:-19.659000px;}
._1e{margin-left:-17.955000px;}
._1{margin-left:-16.491000px;}
._12{margin-left:-15.285000px;}
._19{margin-left:-13.473000px;}
._1c{margin-left:-11.700000px;}
._29{margin-left:-10.683000px;}
._17{margin-left:-9.603000px;}
._13{margin-left:-7.980000px;}
._16{margin-left:-6.855000px;}
._18{margin-left:-5.406000px;}
._11{margin-left:-4.317000px;}
._d{margin-left:-3.282000px;}
._e{margin-left:-2.199000px;}
._10{margin-left:-1.017000px;}
._c{width:1.758000px;}
._0{width:3.036000px;}
._2{width:4.830000px;}
._6{width:6.417000px;}
._4{width:8.280000px;}
._9{width:9.798000px;}
._3{width:10.902000px;}
._b{width:11.937000px;}
._7{width:13.041000px;}
._a{width:14.904000px;}
._1a{width:16.491000px;}
._8{width:18.078000px;}
._5e{width:19.185000px;}
._5{width:20.217000px;}
._3f{width:21.645000px;}
._48{width:23.631000px;}
._53{width:24.801000px;}
._f{width:26.154000px;}
._15{width:27.408000px;}
._7c{width:30.651000px;}
._5d{width:34.074000px;}
._4a{width:35.556000px;}
._55{width:37.224000px;}
._7e{width:38.697000px;}
._20{width:40.095000px;}
._1f{width:41.931000px;}
._2a{width:43.137000px;}
._28{width:44.322000px;}
._23{width:46.179000px;}
._2c{width:47.529000px;}
._89{width:48.798000px;}
._87{width:49.860000px;}
._80{width:50.952000px;}
._86{width:52.734000px;}
._6b{width:54.627000px;}
._88{width:55.680000px;}
._4e{width:57.018000px;}
._33{width:58.224000px;}
._1b{width:60.483000px;}
._7a{width:61.575000px;}
._4d{width:63.570000px;}
._68{width:65.379000px;}
._65{width:66.894000px;}
._6e{width:68.895000px;}
._62{width:69.936000px;}
._5b{width:71.451000px;}
._6d{width:72.594000px;}
._7b{width:73.836000px;}
._7f{width:75.030000px;}
._7d{width:77.721000px;}
._1d{width:79.473000px;}
._85{width:80.490000px;}
._79{width:82.683000px;}
._56{width:89.679000px;}
._50{width:90.846000px;}
._57{width:94.692000px;}
._3e{width:96.219000px;}
._72{width:97.662000px;}
._4f{width:98.751000px;}
._32{width:99.918000px;}
._34{width:101.712000px;}
._24{width:103.812000px;}
._26{width:104.889000px;}
._27{width:106.968000px;}
._25{width:109.485000px;}
._52{width:135.330000px;}
._51{width:136.500000px;}
._38{width:138.918000px;}
._39{width:140.712000px;}
._58{width:141.882000px;}
._37{width:143.106000px;}
._2d{width:144.612000px;}
._41{width:146.952000px;}
._3d{width:154.830000px;}
._78{width:162.540000px;}
._67{width:179.712000px;}
._70{width:181.497000px;}
._31{width:186.576000px;}
._35{width:188.994000px;}
._30{width:207.576000px;}
._66{width:212.898000px;}
._6a{width:223.860000px;}
._45{width:225.576000px;}
._63{width:227.082000px;}
._36{width:251.394000px;}
._59{width:253.188000px;}
._64{width:254.400000px;}
._71{width:268.476000px;}
._3a{width:271.830000px;}
._4b{width:273.234000px;}
._76{width:278.382000px;}
._77{width:298.506000px;}
._2f{width:338.676000px;}
._2e{width:339.924000px;}
._3c{width:355.524000px;}
._44{width:358.800000px;}
._5a{width:360.594000px;}
._46{width:387.687000px;}
._47{width:406.770000px;}
._22{width:429.384000px;}
._73{width:488.124000px;}
._14{width:595.182000px;}
._5f{width:672.906000px;}
._60{width:716.664000px;}
._5c{width:1171.422000px;}
._3b{width:2056.176000px;}
._4c{width:2066.772000px;}
._2b{width:2091.204000px;}
._54{width:2095.764000px;}
._61{width:2219.493000px;}
._6c{width:2276.226000px;}
._74{width:2281.752000px;}
._83{width:2310.360000px;}
.fc2{color:transparent;}
.fc1{color:rgb(125,122,133);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs3{font-size:56.676928px;}
.fs2d{font-size:57.000000px;}
.fs25{font-size:57.664098px;}
.fs17{font-size:57.693557px;}
.fs2e{font-size:57.757284px;}
.fs1f{font-size:57.949067px;}
.fs32{font-size:58.017604px;}
.fs1d{font-size:58.042253px;}
.fs2b{font-size:58.204577px;}
.fs21{font-size:58.253274px;}
.fs10{font-size:58.347061px;}
.fs29{font-size:58.415598px;}
.fsd{font-size:58.494355px;}
.fs19{font-size:58.636840px;}
.fs14{font-size:58.813592px;}
.fs1b{font-size:59.123210px;}
.fs23{font-size:59.167098px;}
.fs30{font-size:59.226016px;}
.fs12{font-size:59.260284px;}
.fs8{font-size:59.520604px;}
.fsb{font-size:59.589742px;}
.fsa{font-size:60.000000px;}
.fs27{font-size:60.120000px;}
.fsf{font-size:63.000000px;}
.fs0{font-size:69.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fs16{font-size:114.000000px;}
.fs4{font-size:407.259774px;}
.fs26{font-size:414.353221px;}
.fs18{font-size:414.564901px;}
.fs2f{font-size:415.022822px;}
.fs20{font-size:416.400903px;}
.fs33{font-size:416.893384px;}
.fs1e{font-size:417.070504px;}
.fs2c{font-size:418.236905px;}
.fs22{font-size:418.586826px;}
.fs11{font-size:419.260746px;}
.fs2a{font-size:419.753227px;}
.fse{font-size:420.319147px;}
.fs1a{font-size:421.342988px;}
.fs15{font-size:422.613070px;}
.fs1c{font-size:424.837872px;}
.fs24{font-size:425.153232px;}
.fs31{font-size:425.576593px;}
.fs13{font-size:425.822833px;}
.fs9{font-size:427.693395px;}
.fsc{font-size:428.190195px;}
.fs28{font-size:432.000439px;}
.y0{bottom:0.000000px;}
.y11{bottom:15.150745px;}
.y1af{bottom:15.414633px;}
.ycd{bottom:15.422508px;}
.y277{bottom:15.439543px;}
.y24{bottom:15.453000px;}
.y158{bottom:15.490810px;}
.y2ad{bottom:15.509132px;}
.y133{bottom:15.515721px;}
.y236{bottom:15.559113px;}
.y17c{bottom:15.572130px;}
.y10f{bottom:15.594000px;}
.y74{bottom:15.597201px;}
.y211{bottom:15.615522px;}
.y4b{bottom:15.636576px;}
.yf2{bottom:15.674664px;}
.ya9{bottom:15.721913px;}
.y117{bottom:15.804680px;}
.y1a0{bottom:15.816412px;}
.y29b{bottom:15.832161px;}
.y97{bottom:15.841322px;}
.y198{bottom:15.868500px;}
.y2c{bottom:15.910910px;}
.y3d{bottom:15.929392px;}
.y1e3{bottom:16.071139px;}
.y8f{bottom:16.554000px;}
.y35{bottom:16.908000px;}
.y253{bottom:17.112000px;}
.yea{bottom:17.880000px;}
.y293{bottom:18.015000px;}
.y1ff{bottom:19.875000px;}
.y1db{bottom:20.490000px;}
.y6c{bottom:21.114000px;}
.ya1{bottom:21.340500px;}
.y174{bottom:21.666000px;}
.y209{bottom:22.584000px;}
.y12b{bottom:23.041500px;}
.y1c0{bottom:25.789500px;}
.y150{bottom:25.950000px;}
.y22e{bottom:26.088000px;}
.y26f{bottom:26.376000px;}
.y43{bottom:26.490000px;}
.y1a6{bottom:26.880000px;}
.y8{bottom:27.000000px;}
.yc5{bottom:27.045000px;}
.y22d{bottom:28.323000px;}
.y26e{bottom:28.626000px;}
.y2a5{bottom:28.642500px;}
.y1a7{bottom:28.770000px;}
.y2a4{bottom:29.062500px;}
.yc4{bottom:29.880000px;}
.y12a{bottom:30.451500px;}
.y42{bottom:30.870000px;}
.y173{bottom:31.191000px;}
.y14f{bottom:31.350000px;}
.y208{bottom:31.944000px;}
.y6b{bottom:31.974000px;}
.y1fe{bottom:32.085000px;}
.y1bf{bottom:32.989500px;}
.ye9{bottom:33.120000px;}
.y292{bottom:33.165000px;}
.y34{bottom:33.303000px;}
.ya0{bottom:33.310500px;}
.y197{bottom:33.433500px;}
.y8e{bottom:33.729000px;}
.y10e{bottom:34.494000px;}
.y1da{bottom:34.635000px;}
.y252{bottom:35.127000px;}
.y23{bottom:35.583000px;}
.y9{bottom:43.020000px;}
.yc3{bottom:63.780000px;}
.y6a{bottom:119.424000px;}
.y251{bottom:123.477000px;}
.ye8{bottom:147.570000px;}
.y1fd{bottom:152.985000px;}
.y69{bottom:156.024000px;}
.y10d{bottom:158.544000px;}
.y291{bottom:158.715000px;}
.y22c{bottom:160.773000px;}
.y250{bottom:160.827000px;}
.yc2{bottom:161.280000px;}
.y8d{bottom:161.829000px;}
.y196{bottom:161.833500px;}
.y14e{bottom:163.050000px;}
.y1d9{bottom:175.035000px;}
.ye7{bottom:185.070000px;}
.y1fc{bottom:188.985000px;}
.y68{bottom:192.624000px;}
.y26d{bottom:194.076000px;}
.y10c{bottom:194.544000px;}
.y290{bottom:196.515000px;}
.y22b{bottom:197.373000px;}
.yc1{bottom:197.730000px;}
.y24f{bottom:198.027000px;}
.y8c{bottom:198.129000px;}
.y195{bottom:198.733500px;}
.y14d{bottom:199.800000px;}
.y172{bottom:201.741000px;}
.y22{bottom:209.583000px;}
.y1d8{bottom:212.085000px;}
.ye6{bottom:221.670000px;}
.y1fb{bottom:226.035000px;}
.y67{bottom:228.924000px;}
.y26c{bottom:231.126000px;}
.y10b{bottom:231.144000px;}
.y28f{bottom:233.565000px;}
.y22a{bottom:233.973000px;}
.y8b{bottom:234.279000px;}
.y24e{bottom:234.627000px;}
.yc0{bottom:234.780000px;}
.y194{bottom:235.033500px;}
.y14c{bottom:236.250000px;}
.y171{bottom:238.191000px;}
.y1d7{bottom:248.835000px;}
.y1f{bottom:255.183000px;}
.ye5{bottom:258.120000px;}
.y1fa{bottom:261.735000px;}
.y66{bottom:264.024000px;}
.y26b{bottom:267.726000px;}
.y10a{bottom:267.744000px;}
.y28e{bottom:268.965000px;}
.ybf{bottom:270.030000px;}
.y229{bottom:270.573000px;}
.y8a{bottom:270.579000px;}
.y193{bottom:271.333500px;}
.y24d{bottom:271.677000px;}
.y14b{bottom:271.800000px;}
.y170{bottom:274.791000px;}
.y1d6{bottom:285.135000px;}
.y1e{bottom:291.783000px;}
.ye4{bottom:294.420000px;}
.y14a{bottom:297.300000px;}
.y1f9{bottom:298.485000px;}
.y65{bottom:300.624000px;}
.y109{bottom:303.594000px;}
.y26a{bottom:304.326000px;}
.y28d{bottom:306.315000px;}
.y228{bottom:306.723000px;}
.y89{bottom:306.729000px;}
.ybe{bottom:306.780000px;}
.y192{bottom:307.183500px;}
.y149{bottom:308.250000px;}
.y24c{bottom:308.277000px;}
.y16f{bottom:309.741000px;}
.y1d5{bottom:321.885000px;}
.y20{bottom:324.783000px;}
.y1d{bottom:328.383000px;}
.ye3{bottom:329.370000px;}
.y1f8{bottom:334.785000px;}
.y64{bottom:336.924000px;}
.y108{bottom:339.744000px;}
.y269{bottom:340.476000px;}
.y88{bottom:343.029000px;}
.y191{bottom:343.033500px;}
.y28c{bottom:343.065000px;}
.ybd{bottom:343.080000px;}
.y227{bottom:343.323000px;}
.y148{bottom:343.800000px;}
.y24b{bottom:344.427000px;}
.y16e{bottom:347.391000px;}
.y1d4{bottom:358.635000px;}
.ye2{bottom:366.420000px;}
.y21{bottom:366.783000px;}
.y1f7{bottom:371.535000px;}
.y63{bottom:373.824000px;}
.y107{bottom:376.044000px;}
.y268{bottom:377.076000px;}
.y87{bottom:378.879000px;}
.ybc{bottom:379.080000px;}
.y190{bottom:379.333500px;}
.y28b{bottom:379.365000px;}
.y147{bottom:379.800000px;}
.y226{bottom:379.923000px;}
.y24a{bottom:380.727000px;}
.y16d{bottom:383.541000px;}
.yf1{bottom:388.231867px;}
.y116{bottom:389.017798px;}
.y19f{bottom:389.569493px;}
.y17b{bottom:389.595256px;}
.y73{bottom:389.635619px;}
.y132{bottom:389.637941px;}
.y200{bottom:390.226867px;}
.y96{bottom:390.843559px;}
.y276{bottom:391.172570px;}
.y2b{bottom:391.386744px;}
.y254{bottom:391.401559px;}
.ycc{bottom:391.439067px;}
.y210{bottom:391.538499px;}
.y157{bottom:391.957875px;}
.y29a{bottom:392.088119px;}
.ya8{bottom:392.808742px;}
.y1ae{bottom:392.978005px;}
.y3c{bottom:393.278422px;}
.y235{bottom:393.709683px;}
.y1c1{bottom:393.718756px;}
.y1d3{bottom:394.635000px;}
.y2ac{bottom:395.083256px;}
.y4a{bottom:395.941932px;}
.y1e2{bottom:400.209548px;}
.y10{bottom:400.993010px;}
.ye1{bottom:402.420000px;}
.y1f6{bottom:408.285000px;}
.y62{bottom:409.074000px;}
.y106{bottom:412.644000px;}
.y267{bottom:413.376000px;}
.y28a{bottom:415.065000px;}
.ybb{bottom:415.080000px;}
.y86{bottom:415.179000px;}
.y18f{bottom:415.783500px;}
.y146{bottom:416.100000px;}
.y225{bottom:416.223000px;}
.y249{bottom:417.327000px;}
.y16c{bottom:418.341000px;}
.y1d2{bottom:430.185000px;}
.y1c{bottom:437.733000px;}
.ye0{bottom:438.870000px;}
.y129{bottom:439.801500px;}
.y1f5{bottom:444.585000px;}
.y61{bottom:445.974000px;}
.y105{bottom:448.944000px;}
.y266{bottom:449.976000px;}
.y85{bottom:451.029000px;}
.yba{bottom:451.530000px;}
.y18e{bottom:451.633500px;}
.y289{bottom:451.815000px;}
.y224{bottom:452.373000px;}
.y145{bottom:452.550000px;}
.y248{bottom:453.477000px;}
.y16b{bottom:455.691000px;}
.y1d1{bottom:467.235000px;}
.y1b{bottom:474.333000px;}
.ydf{bottom:475.470000px;}
.y128{bottom:476.401500px;}
.y1f4{bottom:481.035000px;}
.y60{bottom:482.274000px;}
.y104{bottom:485.544000px;}
.y265{bottom:486.876000px;}
.y84{bottom:487.179000px;}
.y288{bottom:487.815000px;}
.y18d{bottom:487.933500px;}
.y144{bottom:488.850000px;}
.yb9{bottom:489.330000px;}
.y223{bottom:489.423000px;}
.y247{bottom:489.777000px;}
.y16a{bottom:491.991000px;}
.y7{bottom:498.600000px;}
.y1d0{bottom:503.985000px;}
.y1a{bottom:511.383000px;}
.yde{bottom:511.920000px;}
.y127{bottom:514.201500px;}
.y1f3{bottom:517.335000px;}
.y5f{bottom:518.874000px;}
.y103{bottom:522.444000px;}
.y264{bottom:523.176000px;}
.y83{bottom:523.179000px;}
.y18c{bottom:524.233500px;}
.y287{bottom:524.565000px;}
.yb8{bottom:525.330000px;}
.y222{bottom:525.573000px;}
.y143{bottom:525.600000px;}
.y246{bottom:526.077000px;}
.y169{bottom:527.841000px;}
.y1be{bottom:530.689500px;}
.y1cf{bottom:539.685000px;}
.ydd{bottom:549.270000px;}
.y126{bottom:549.301500px;}
.y1f2{bottom:554.085000px;}
.y5e{bottom:554.724000px;}
.y102{bottom:557.244000px;}
.y263{bottom:559.776000px;}
.y82{bottom:559.779000px;}
.y142{bottom:560.850000px;}
.y286{bottom:560.865000px;}
.yb7{bottom:560.880000px;}
.y18b{bottom:561.133500px;}
.y221{bottom:561.873000px;}
.y245{bottom:562.977000px;}
.y168{bottom:564.741000px;}
.y1bd{bottom:566.989500px;}
.y41{bottom:573.120000px;}
.y1ce{bottom:576.735000px;}
.y6{bottom:579.300000px;}
.ydc{bottom:584.220000px;}
.y125{bottom:587.401500px;}
.y1f1{bottom:590.385000px;}
.y5d{bottom:591.324000px;}
.y101{bottom:594.144000px;}
.y262{bottom:595.926000px;}
.y81{bottom:596.379000px;}
.y18a{bottom:596.983500px;}
.y285{bottom:597.165000px;}
.yb6{bottom:597.630000px;}
.y141{bottom:598.350000px;}
.y220{bottom:598.473000px;}
.y244{bottom:599.577000px;}
.y167{bottom:601.041000px;}
.y5{bottom:601.950000px;}
.y1bc{bottom:602.839500px;}
.y40{bottom:608.370000px;}
.y1cd{bottom:613.035000px;}
.ydb{bottom:621.270000px;}
.y124{bottom:622.801500px;}
.y3f{bottom:626.670000px;}
.y1f0{bottom:626.835000px;}
.y5c{bottom:627.624000px;}
.y100{bottom:630.444000px;}
.y80{bottom:631.779000px;}
.y261{bottom:632.526000px;}
.y284{bottom:632.865000px;}
.y189{bottom:632.983500px;}
.yb5{bottom:633.930000px;}
.y33{bottom:634.353000px;}
.y140{bottom:634.650000px;}
.y21f{bottom:634.773000px;}
.y243{bottom:635.427000px;}
.y166{bottom:636.891000px;}
.y19{bottom:638.283000px;}
.y1bb{bottom:640.189500px;}
.y3e{bottom:645.120000px;}
.y4{bottom:645.450000px;}
.y1cc{bottom:649.035000px;}
.yda{bottom:658.020000px;}
.y123{bottom:658.801500px;}
.y1ef{bottom:663.435000px;}
.y5b{bottom:664.224000px;}
.y3{bottom:666.750000px;}
.yff{bottom:667.794000px;}
.y260{bottom:668.826000px;}
.y7f{bottom:668.829000px;}
.y188{bottom:669.133500px;}
.y283{bottom:670.665000px;}
.y13f{bottom:671.100000px;}
.yb4{bottom:671.130000px;}
.y21e{bottom:671.373000px;}
.y242{bottom:672.477000px;}
.y165{bottom:673.791000px;}
.y18{bottom:674.583000px;}
.y1ba{bottom:676.039500px;}
.y1cb{bottom:685.785000px;}
.y2{bottom:688.650000px;}
.y32{bottom:688.803000px;}
.yd9{bottom:693.720000px;}
.y122{bottom:695.701500px;}
.y5a{bottom:700.074000px;}
.y1ee{bottom:700.185000px;}
.yfe{bottom:703.644000px;}
.y7e{bottom:704.979000px;}
.y25f{bottom:705.426000px;}
.y187{bottom:706.183500px;}
.yb3{bottom:706.380000px;}
.y282{bottom:706.965000px;}
.y13e{bottom:707.100000px;}
.y21d{bottom:707.973000px;}
.y241{bottom:709.377000px;}
.y164{bottom:709.791000px;}
.y17{bottom:711.483000px;}
.y1b9{bottom:712.189500px;}
.y1ca{bottom:722.235000px;}
.yd8{bottom:729.720000px;}
.y1{bottom:731.550000px;}
.y121{bottom:731.551500px;}
.y59{bottom:736.224000px;}
.y1ed{bottom:736.935000px;}
.yfd{bottom:739.944000px;}
.y25e{bottom:740.976000px;}
.y7d{bottom:741.579000px;}
.y186{bottom:742.033500px;}
.y13d{bottom:743.400000px;}
.yb2{bottom:743.730000px;}
.y281{bottom:744.165000px;}
.y21c{bottom:744.573000px;}
.y240{bottom:745.677000px;}
.y163{bottom:746.991000px;}
.y16{bottom:747.483000px;}
.y1b8{bottom:748.789500px;}
.y1c9{bottom:758.535000px;}
.y31{bottom:761.703000px;}
.yd7{bottom:766.770000px;}
.y120{bottom:768.901500px;}
.y58{bottom:772.524000px;}
.y1ec{bottom:773.235000px;}
.yfc{bottom:776.094000px;}
.y25d{bottom:777.876000px;}
.y7c{bottom:778.179000px;}
.y185{bottom:778.933500px;}
.yb1{bottom:779.730000px;}
.y13c{bottom:780.150000px;}
.y280{bottom:780.465000px;}
.y21b{bottom:780.723000px;}
.y23f{bottom:781.827000px;}
.y162{bottom:782.991000px;}
.y1b7{bottom:785.089500px;}
.y1c8{bottom:795.585000px;}
.yd6{bottom:803.520000px;}
.y11f{bottom:805.051500px;}
.y57{bottom:809.124000px;}
.y1eb{bottom:809.685000px;}
.y2a3{bottom:812.362500px;}
.yfb{bottom:813.144000px;}
.y207{bottom:813.744000px;}
.y184{bottom:814.183500px;}
.y7b{bottom:814.479000px;}
.y9f{bottom:814.510500px;}
.y25c{bottom:814.776000px;}
.yb0{bottom:815.730000px;}
.y13b{bottom:816.450000px;}
.y27f{bottom:817.215000px;}
.y21a{bottom:817.323000px;}
.y23e{bottom:818.127000px;}
.y161{bottom:819.891000px;}
.y1b6{bottom:821.989500px;}
.y1c7{bottom:832.335000px;}
.yd5{bottom:839.520000px;}
.y11e{bottom:841.051500px;}
.y56{bottom:845.424000px;}
.y1ea{bottom:846.435000px;}
.yfa{bottom:848.544000px;}
.y2a2{bottom:849.562500px;}
.y9e{bottom:850.660500px;}
.y7a{bottom:850.779000px;}
.y25b{bottom:851.076000px;}
.y206{bottom:851.094000px;}
.y183{bottom:851.833500px;}
.y13a{bottom:852.450000px;}
.y27e{bottom:852.465000px;}
.yaf{bottom:852.930000px;}
.y219{bottom:853.923000px;}
.y23d{bottom:854.727000px;}
.y160{bottom:856.491000px;}
.y1b5{bottom:857.539500px;}
.y1c6{bottom:868.635000px;}
.y30{bottom:871.203000px;}
.yd4{bottom:875.820000px;}
.y11d{bottom:877.951500px;}
.y55{bottom:881.574000px;}
.y1e9{bottom:882.735000px;}
.yf9{bottom:886.344000px;}
.y2a1{bottom:886.612500px;}
.y79{bottom:886.929000px;}
.y9d{bottom:887.260500px;}
.y182{bottom:887.683500px;}
.y25a{bottom:887.976000px;}
.yae{bottom:888.930000px;}
.y139{bottom:889.200000px;}
.y27d{bottom:889.965000px;}
.y218{bottom:890.223000px;}
.y23c{bottom:890.877000px;}
.y15f{bottom:892.791000px;}
.y15{bottom:894.483000px;}
.y1b4{bottom:894.889500px;}
.y1c5{bottom:905.385000px;}
.y2f{bottom:907.353000px;}
.yf{bottom:907.569339px;}
.yd3{bottom:911.520000px;}
.y11c{bottom:914.251500px;}
.y54{bottom:917.874000px;}
.y1e8{bottom:919.035000px;}
.yf8{bottom:922.194000px;}
.y2a0{bottom:923.212500px;}
.y1ad{bottom:923.376928px;}
.y78{bottom:923.529000px;}
.ycb{bottom:923.848652px;}
.y9c{bottom:923.860500px;}
.ye{bottom:923.863955px;}
.y259{bottom:924.276000px;}
.y181{bottom:924.283500px;}
.y205{bottom:924.294000px;}
.y275{bottom:924.869118px;}
.yad{bottom:924.930000px;}
.y138{bottom:925.200000px;}
.y27c{bottom:926.565000px;}
.y217{bottom:927.423000px;}
.y23b{bottom:927.477000px;}
.y156{bottom:927.940142px;}
.y15e{bottom:928.941000px;}
.y2ab{bottom:929.037624px;}
.y131{bottom:929.432332px;}
.y14{bottom:930.333000px;}
.y234{bottom:932.031631px;}
.y1b3{bottom:932.239500px;}
.y17a{bottom:932.811421px;}
.y72{bottom:934.313238px;}
.y20f{bottom:935.410720px;}
.y49{bottom:936.671861px;}
.yf0{bottom:938.953468px;}
.y1ac{bottom:939.955356px;}
.yca{bottom:940.435550px;}
.y274{bottom:941.474337px;}
.ya7{bottom:941.783816px;}
.y1c4{bottom:941.835000px;}
.y155{bottom:944.600498px;}
.y2aa{bottom:945.717685px;}
.y130{bottom:946.119480px;}
.y115{bottom:946.741738px;}
.y19e{bottom:947.444512px;}
.yd2{bottom:947.820000px;}
.y299{bottom:948.387961px;}
.y233{bottom:948.765447px;}
.y95{bottom:948.936702px;}
.y179{bottom:949.559237px;}
.y71{bottom:951.088018px;}
.y11b{bottom:951.451500px;}
.y20e{bottom:952.205204px;}
.y2a{bottom:953.105208px;}
.y48{bottom:953.488988px;}
.y3b{bottom:954.212316px;}
.y53{bottom:954.774000px;}
.y1a5{bottom:954.780000px;}
.y1e7{bottom:955.485000px;}
.yef{bottom:955.811559px;}
.yd{bottom:956.368173px;}
.ya6{bottom:958.692724px;}
.yf7{bottom:958.794000px;}
.y9b{bottom:959.710500px;}
.y29f{bottom:959.812500px;}
.y77{bottom:959.829000px;}
.y204{bottom:960.594000px;}
.y180{bottom:960.883500px;}
.y258{bottom:961.626000px;}
.yac{bottom:961.980000px;}
.y137{bottom:962.250000px;}
.y27b{bottom:962.565000px;}
.y1e1{bottom:962.703360px;}
.y216{bottom:963.423000px;}
.y23a{bottom:963.477000px;}
.y114{bottom:963.739661px;}
.y19d{bottom:964.455052px;}
.y298{bottom:965.415441px;}
.y94{bottom:965.974034px;}
.y15d{bottom:965.991000px;}
.y13{bottom:966.933000px;}
.y1b2{bottom:968.839500px;}
.y29{bottom:970.217381px;}
.y3a{bottom:971.344367px;}
.yc{bottom:972.662790px;}
.y1ab{bottom:973.025716px;}
.yc9{bottom:973.522805px;}
.y273{bottom:974.598139px;}
.y154{bottom:977.834288px;}
.y2a9{bottom:978.990780px;}
.y12f{bottom:979.406712px;}
.y1e0{bottom:979.987860px;}
.y232{bottom:982.145772px;}
.y178{bottom:982.967490px;}
.yd1{bottom:984.270000px;}
.y70{bottom:984.550058px;}
.y20d{bottom:985.706550px;}
.y47{bottom:987.035501px;}
.y11a{bottom:987.451500px;}
.yb{bottom:988.872391px;}
.yee{bottom:989.439787px;}
.y1aa{bottom:989.604144px;}
.yc8{bottom:990.109702px;}
.y52{bottom:991.074000px;}
.y272{bottom:991.203359px;}
.y1a4{bottom:991.380000px;}
.y1e6{bottom:992.235000px;}
.ya5{bottom:992.422319px;}
.y2e{bottom:992.853000px;}
.y153{bottom:994.494645px;}
.y2a8{bottom:995.670841px;}
.yf6{bottom:995.694000px;}
.y76{bottom:995.979000px;}
.y12e{bottom:996.093859px;}
.y29e{bottom:996.412500px;}
.y17f{bottom:996.433500px;}
.y1c3{bottom:996.885000px;}
.y9a{bottom:997.060500px;}
.y203{bottom:997.194000px;}
.yab{bottom:997.230000px;}
.y113{bottom:997.646822px;}
.y257{bottom:997.776000px;}
.y19c{bottom:998.387383px;}
.y136{bottom:998.550000px;}
.y231{bottom:998.879587px;}
.y27a{bottom:999.015000px;}
.y297{bottom:999.381560px;}
.y177{bottom:999.715306px;}
.y93{bottom:999.959806px;}
.y215{bottom:1000.323000px;}
.y239{bottom:1001.127000px;}
.y6f{bottom:1001.324838px;}
.y15c{bottom:1001.391000px;}
.y20c{bottom:1002.501034px;}
.y12{bottom:1003.233000px;}
.y1b1{bottom:1003.639500px;}
.y46{bottom:1003.852628px;}
.y28{bottom:1004.352447px;}
.ya{bottom:1005.167008px;}
.y39{bottom:1005.519084px;}
.y1a9{bottom:1006.096076px;}
.yed{bottom:1006.297878px;}
.yc7{bottom:1006.610060px;}
.y271{bottom:1007.721942px;}
.ya4{bottom:1009.331227px;}
.y152{bottom:1011.068078px;}
.y2a7{bottom:1012.263876px;}
.y12d{bottom:1012.693944px;}
.y1df{bottom:1014.466680px;}
.y112{bottom:1014.644745px;}
.y19b{bottom:1015.397924px;}
.y230{bottom:1015.526096px;}
.y176{bottom:1016.375742px;}
.y296{bottom:1016.409040px;}
.y92{bottom:1016.997138px;}
.y6e{bottom:1018.012097px;}
.y20b{bottom:1019.207895px;}
.y45{bottom:1020.582014px;}
.yd0{bottom:1020.870000px;}
.y27{bottom:1021.464621px;}
.y38{bottom:1022.651135px;}
.y1a8{bottom:1022.674505px;}
.yec{bottom:1023.068015px;}
.yc6{bottom:1023.196957px;}
.y119{bottom:1023.601500px;}
.y270{bottom:1024.327161px;}
.ya3{bottom:1026.151914px;}
.y51{bottom:1026.924000px;}
.y151{bottom:1027.728435px;}
.y1a3{bottom:1028.280000px;}
.y2a6{bottom:1028.943937px;}
.y2d{bottom:1029.003000px;}
.y1e5{bottom:1029.285000px;}
.y12c{bottom:1029.381091px;}
.y111{bottom:1031.553984px;}
.y1de{bottom:1031.751180px;}
.y75{bottom:1031.979000px;}
.yf5{bottom:1031.994000px;}
.y22f{bottom:1032.259912px;}
.y19a{bottom:1032.319714px;}
.y175{bottom:1033.123558px;}
.y29d{bottom:1033.312500px;}
.y17e{bottom:1033.333500px;}
.y295{bottom:1033.347680px;}
.y99{bottom:1033.360500px;}
.y202{bottom:1033.794000px;}
.y91{bottom:1033.945579px;}
.y256{bottom:1034.376000px;}
.y6d{bottom:1034.786877px;}
.y135{bottom:1035.300000px;}
.y20a{bottom:1036.002379px;}
.y279{bottom:1036.065000px;}
.y214{bottom:1036.923000px;}
.y238{bottom:1037.277000px;}
.y44{bottom:1037.399141px;}
.y26{bottom:1038.487513px;}
.y15b{bottom:1038.741000px;}
.y37{bottom:1039.693801px;}
.yeb{bottom:1039.926106px;}
.ya2{bottom:1043.060822px;}
.y110{bottom:1048.551907px;}
.y1dd{bottom:1048.945500px;}
.y199{bottom:1049.330254px;}
.y294{bottom:1050.375160px;}
.y90{bottom:1050.982911px;}
.y1c2{bottom:1051.185000px;}
.yaa{bottom:1053.780000px;}
.y25{bottom:1055.599687px;}
.y36{bottom:1056.825851px;}
.ycf{bottom:1057.320000px;}
.y1b0{bottom:1059.889500px;}
.y118{bottom:1059.901500px;}
.y1a2{bottom:1063.230000px;}
.y50{bottom:1063.824000px;}
.y1e4{bottom:1066.035000px;}
.y1dc{bottom:1066.230000px;}
.y98{bottom:1067.710500px;}
.yf4{bottom:1068.144000px;}
.y29c{bottom:1070.212500px;}
.y17d{bottom:1070.683500px;}
.y201{bottom:1070.694000px;}
.y255{bottom:1070.976000px;}
.y134{bottom:1071.750000px;}
.y278{bottom:1073.115000px;}
.y213{bottom:1073.523000px;}
.y237{bottom:1074.327000px;}
.y15a{bottom:1074.591000px;}
.yce{bottom:1096.170000px;}
.y1a1{bottom:1100.880000px;}
.yf3{bottom:1107.594000px;}
.y159{bottom:1112.991000px;}
.y4f{bottom:1113.024000px;}
.y212{bottom:1116.273000px;}
.y4e{bottom:1134.924000px;}
.y4d{bottom:1155.774000px;}
.y4c{bottom:1176.474000px;}
.h3{height:39.339844px;}
.h14{height:43.681641px;}
.h22{height:45.865723px;}
.h2a{height:50.233887px;}
.h1{height:50.402344px;}
.ha{height:52.417969px;}
.hd{height:53.617969px;}
.h2{height:54.158203px;}
.h23{height:55.072266px;}
.h21{height:56.786133px;}
.h5{height:58.254950px;}
.h5e{height:59.269606px;}
.h39{height:59.299885px;}
.h77{height:59.365387px;}
.h50{height:59.562509px;}
.h81{height:59.632954px;}
.h4b{height:59.658290px;}
.h72{height:59.825133px;}
.h54{height:59.875186px;}
.h25{height:59.971585px;}
.h6c{height:60.042030px;}
.h1c{height:60.122980px;}
.h3f{height:60.269431px;}
.h32{height:60.451105px;}
.h45{height:60.769344px;}
.h5a{height:60.814453px;}
.h7c{height:60.875011px;}
.h2c{height:60.910234px;}
.hf{height:61.177801px;}
.h16{height:61.248864px;}
.h66{height:61.793886px;}
.hb{height:65.522461px;}
.hc{height:69.890625px;}
.h37{height:82.995117px;}
.h6{height:404.017537px;}
.h5f{height:411.054512px;}
.h3a{height:411.264507px;}
.h78{height:411.718782px;}
.h51{height:413.085892px;}
.h82{height:413.574452px;}
.h4c{height:413.750162px;}
.h73{height:414.907278px;}
.h55{height:415.254412px;}
.h26{height:415.922968px;}
.h6d{height:416.411528px;}
.h1d{height:416.972943px;}
.h40{height:417.988633px;}
.h33{height:419.248603px;}
.h46{height:421.455693px;}
.h5b{height:421.768543px;}
.h7d{height:422.188533px;}
.h2d{height:422.432813px;}
.h10{height:424.288483px;}
.h7{height:424.759217px;}
.h17{height:424.781329px;}
.h67{height:428.561239px;}
.h60{height:432.157461px;}
.h3b{height:432.378237px;}
.h79{height:432.855834px;}
.h52{height:434.293130px;}
.h83{height:434.806771px;}
.h4d{height:434.991502px;}
.h74{height:436.208022px;}
.h56{height:436.572978px;}
.h27{height:437.275856px;}
.h6e{height:437.789498px;}
.h1e{height:438.379736px;}
.h41{height:439.447570px;}
.h34{height:440.772225px;}
.h47{height:443.092624px;}
.h5c{height:443.421535px;}
.h7e{height:443.863087px;}
.h2e{height:444.119908px;}
.h11{height:446.070845px;}
.h18{height:446.588993px;}
.h68{height:450.562958px;}
.h4{height:1119.963240px;}
.h5d{height:1139.470200px;}
.h38{height:1140.052320px;}
.h76{height:1141.311600px;}
.h4f{height:1145.101320px;}
.h80{height:1146.455640px;}
.h4a{height:1146.942720px;}
.h71{height:1150.150320px;}
.h53{height:1151.112600px;}
.h24{height:1152.965880px;}
.h6b{height:1154.320200px;}
.h1b{height:1155.876480px;}
.h3e{height:1158.692040px;}
.h31{height:1162.184760px;}
.h44{height:1168.302960px;}
.h59{height:1169.170200px;}
.h7b{height:1170.334440px;}
.h2b{height:1171.011600px;}
.he{height:1176.155640px;}
.h15{height:1177.521840px;}
.h65{height:1188.000000px;}
.h48{height:1193.025000px;}
.h49{height:1193.250000px;}
.h36{height:1194.000000px;}
.h75{height:1194.075000px;}
.h35{height:1194.150000px;}
.h3c{height:1194.450000px;}
.h3d{height:1194.750000px;}
.h1f{height:1195.200000px;}
.h20{height:1195.500000px;}
.h4e{height:1197.000000px;}
.h69{height:1198.425000px;}
.h6a{height:1198.500000px;}
.h43{height:1199.250000px;}
.h42{height:1199.475000px;}
.h58{height:1200.750000px;}
.h57{height:1200.900000px;}
.h70{height:1202.250000px;}
.h6f{height:1202.325000px;}
.h61{height:1202.700000px;}
.h62{height:1203.000000px;}
.h7f{height:1203.750000px;}
.h28{height:1204.125000px;}
.h29{height:1204.500000px;}
.h2f{height:1204.875000px;}
.h30{height:1205.250000px;}
.h0{height:1206.000000px;}
.h7a{height:1206.375000px;}
.h9{height:1206.750000px;}
.h8{height:1207.050000px;}
.h19{height:1208.850000px;}
.h1a{height:1209.000000px;}
.h13{height:1211.250000px;}
.h12{height:1211.325000px;}
.h64{height:1230.750000px;}
.h63{height:1230.825000px;}
.w2{width:404.017537px;}
.w31{width:411.054512px;}
.w1a{width:411.264507px;}
.w3f{width:411.718782px;}
.w27{width:413.085892px;}
.w47{width:413.574452px;}
.w24{width:413.750162px;}
.w3b{width:414.907278px;}
.w2a{width:415.254412px;}
.wf{width:415.922968px;}
.w39{width:416.411528px;}
.wc{width:416.972943px;}
.w1d{width:417.988633px;}
.w16{width:419.248603px;}
.w20{width:421.455693px;}
.w2e{width:421.768543px;}
.w43{width:422.188533px;}
.w13{width:422.432813px;}
.w6{width:424.288483px;}
.w9{width:424.781329px;}
.w35{width:428.561239px;}
.w0{width:865.425000px;}
.w1{width:865.500000px;}
.w30{width:880.499700px;}
.w2f{width:880.500000px;}
.w19{width:880.949520px;}
.w17{width:880.950000px;}
.w18{width:881.250000px;}
.w3e{width:881.922600px;}
.w3c{width:881.925000px;}
.w3d{width:882.000000px;}
.w25{width:884.850000px;}
.w26{width:885.000000px;}
.w45{width:885.750000px;}
.w46{width:885.897540px;}
.w44{width:885.900000px;}
.w23{width:886.273920px;}
.w21{width:886.275000px;}
.w22{width:886.500000px;}
.w3a{width:888.750000px;}
.w29{width:889.496100px;}
.w28{width:889.500000px;}
.wd{width:890.925000px;}
.we{width:891.000000px;}
.w37{width:891.750000px;}
.w38{width:891.974700px;}
.w36{width:891.975000px;}
.wa{width:893.175000px;}
.wb{width:893.250000px;}
.w1b{width:895.350000px;}
.w1c{width:895.500000px;}
.w15{width:897.750000px;}
.w14{width:898.050000px;}
.w1e{width:902.775000px;}
.w1f{width:903.000000px;}
.w2d{width:903.449700px;}
.w2b{width:903.450000px;}
.w2c{width:903.750000px;}
.w42{width:904.349340px;}
.w40{width:904.350000px;}
.w41{width:904.500000px;}
.w12{width:904.872600px;}
.w10{width:904.875000px;}
.w11{width:905.250000px;}
.w5{width:908.847540px;}
.w3{width:908.850000px;}
.w4{width:909.000000px;}
.w8{width:909.750000px;}
.w7{width:909.900000px;}
.w34{width:918.000000px;}
.w32{width:919.425000px;}
.w33{width:919.500000px;}
.x0{left:0.000000px;}
.x5{left:10.050000px;}
.x9{left:56.843292px;}
.x28{left:58.666054px;}
.x1c{left:59.695315px;}
.xd9{left:95.100000px;}
.xcf{left:113.850000px;}
.x2e{left:118.800000px;}
.x30{left:120.300000px;}
.x32{left:121.350000px;}
.x34{left:123.150000px;}
.x36{left:124.500000px;}
.x38{left:125.550000px;}
.x6{left:127.268550px;}
.xda{left:128.550000px;}
.x3d{left:129.600000px;}
.x25{left:131.349600px;}
.x1a{left:133.654050px;}
.xe4{left:135.000000px;}
.xc2{left:136.800000px;}
.xc3{left:137.850000px;}
.xc6{left:139.650000px;}
.xca{left:141.000000px;}
.x8f{left:142.050000px;}
.x49{left:143.250000px;}
.xe5{left:144.450000px;}
.xe6{left:145.500000px;}
.xe7{left:146.550000px;}
.xb9{left:150.150000px;}
.x44{left:152.250000px;}
.xea{left:155.700000px;}
.x56{left:156.900000px;}
.xb4{left:158.400000px;}
.xb7{left:159.450000px;}
.x79{left:160.650000px;}
.x2a{left:162.150000px;}
.x2f{left:163.350000px;}
.x31{left:164.400000px;}
.x33{left:165.750000px;}
.x35{left:168.000000px;}
.xde{left:170.400000px;}
.xe0{left:172.200000px;}
.xdd{left:180.900000px;}
.xe1{left:182.250000px;}
.xae{left:184.800000px;}
.x2{left:190.050000px;}
.xdb{left:193.650000px;}
.x1e{left:195.900000px;}
.xb5{left:201.300000px;}
.x3{left:202.650000px;}
.xbd{left:204.150000px;}
.xc0{left:205.200000px;}
.xcc{left:206.700000px;}
.x19{left:208.200000px;}
.xa1{left:209.850000px;}
.xd1{left:212.850000px;}
.x42{left:214.650000px;}
.x2c{left:215.700000px;}
.x4c{left:217.050000px;}
.x55{left:219.150000px;}
.x5b{left:220.350000px;}
.x72{left:222.150000px;}
.x7c{left:223.950000px;}
.xdf{left:225.000000px;}
.x4{left:226.050000px;}
.x8{left:230.704520px;}
.xa3{left:232.200000px;}
.xe3{left:233.250000px;}
.x61{left:234.842729px;}
.xb2{left:236.262102px;}
.x27{left:238.102394px;}
.x1d{left:239.700000px;}
.x3a{left:241.220122px;}
.x1b{left:242.279758px;}
.x73{left:244.050000px;}
.x70{left:245.250000px;}
.x7f{left:247.650000px;}
.xa4{left:253.350000px;}
.x1f{left:254.400000px;}
.xa9{left:255.900000px;}
.xaa{left:257.250000px;}
.xab{left:258.750000px;}
.x96{left:262.350000px;}
.x9b{left:264.750000px;}
.x9e{left:266.250000px;}
.xac{left:272.400000px;}
.xf{left:278.100000px;}
.x12{left:280.650000px;}
.x90{left:294.900000px;}
.xe2{left:308.250000px;}
.xa{left:309.900000px;}
.x22{left:312.450000px;}
.x23{left:313.650000px;}
.xd2{left:322.200000px;}
.xa5{left:330.900000px;}
.x9f{left:333.600000px;}
.x81{left:334.800000px;}
.x10{left:343.650000px;}
.x11{left:344.850000px;}
.x6c{left:348.900000px;}
.x2b{left:350.250000px;}
.x13{left:355.200000px;}
.x40{left:356.400000px;}
.x4a{left:357.900000px;}
.x20{left:362.700000px;}
.x15{left:366.750000px;}
.xaf{left:368.400000px;}
.x3c{left:372.600000px;}
.xb3{left:380.550000px;}
.x2d{left:386.400000px;}
.x7a{left:387.750000px;}
.x4d{left:390.900000px;}
.xce{left:393.000000px;}
.x5e{left:394.200000px;}
.xb{left:396.450000px;}
.xd{left:397.650000px;}
.x47{left:399.900000px;}
.x71{left:406.800000px;}
.xc7{left:409.500000px;}
.xe{left:418.050000px;}
.x16{left:421.200000px;}
.x75{left:423.000000px;}
.xc{left:429.900000px;}
.x7{left:432.714682px;}
.x58{left:435.150000px;}
.x97{left:437.400000px;}
.x60{left:440.476401px;}
.xb1{left:443.138611px;}
.xe9{left:444.377916px;}
.x37{left:445.465750px;}
.x26{left:446.590304px;}
.x85{left:447.678138px;}
.x3b{left:449.027603px;}
.xa0{left:451.391462px;}
.x39{left:452.437986px;}
.x14{left:453.900000px;}
.x21{left:454.953315px;}
.x63{left:457.950000px;}
.x69{left:459.000000px;}
.xbe{left:461.250000px;}
.x24{left:464.400000px;}
.xc4{left:471.450000px;}
.xd4{left:472.500000px;}
.x45{left:473.850000px;}
.x41{left:483.750000px;}
.x48{left:484.950000px;}
.x51{left:486.450000px;}
.x80{left:489.150000px;}
.xa2{left:491.550000px;}
.xb6{left:493.350000px;}
.x7d{left:495.450000px;}
.x87{left:498.450000px;}
.x1{left:500.850000px;}
.x6e{left:503.250000px;}
.xcd{left:506.250000px;}
.x8b{left:510.150000px;}
.x67{left:512.700000px;}
.x83{left:517.350000px;}
.x29{left:521.700000px;}
.x9c{left:525.750000px;}
.xba{left:533.550000px;}
.xa7{left:535.950000px;}
.x77{left:537.450000px;}
.x4f{left:539.250000px;}
.x8d{left:542.400000px;}
.x9a{left:545.850000px;}
.x3e{left:547.500000px;}
.xc8{left:549.000000px;}
.x53{left:550.800000px;}
.x6d{left:556.950000px;}
.xb0{left:560.850000px;}
.xd7{left:563.250000px;}
.xbf{left:567.000000px;}
.xad{left:571.500000px;}
.x92{left:575.550000px;}
.x93{left:576.600000px;}
.x43{left:580.350000px;}
.x76{left:582.600000px;}
.x5f{left:584.700000px;}
.x89{left:595.650000px;}
.x6b{left:598.350000px;}
.x7e{left:601.500000px;}
.x46{left:605.400000px;}
.x6a{left:608.850000px;}
.x99{left:610.350000px;}
.x52{left:613.800000px;}
.x82{left:616.650000px;}
.xd5{left:622.950000px;}
.x5c{left:626.100000px;}
.x64{left:633.600000px;}
.x50{left:645.150000px;}
.xa6{left:651.900000px;}
.x65{left:654.750000px;}
.x8c{left:660.000000px;}
.xc5{left:664.200000px;}
.x94{left:666.750000px;}
.x78{left:669.600000px;}
.xdc{left:674.400000px;}
.xc9{left:675.900000px;}
.xbc{left:685.800000px;}
.x95{left:688.950000px;}
.x17{left:691.050000px;}
.x8e{left:692.400000px;}
.xd6{left:693.900000px;}
.x18{left:695.400000px;}
.x88{left:696.450000px;}
.xa8{left:700.650000px;}
.x91{left:704.250000px;}
.x8a{left:708.000000px;}
.x68{left:709.200000px;}
.x59{left:710.250000px;}
.x74{left:711.450000px;}
.x4e{left:713.550000px;}
.x57{left:714.900000px;}
.x5d{left:716.100000px;}
.x66{left:719.700000px;}
.x6f{left:720.750000px;}
.x3f{left:722.700000px;}
.x4b{left:723.900000px;}
.x54{left:725.400000px;}
.x5a{left:726.450000px;}
.xb8{left:729.750000px;}
.xbb{left:730.800000px;}
.xd0{left:734.100000px;}
.xd3{left:735.600000px;}
.x98{left:747.000000px;}
.x9d{left:748.950000px;}
.x62{left:755.250000px;}
.x7b{left:757.800000px;}
.x84{left:758.850000px;}
.xd8{left:761.250000px;}
.x86{left:765.000000px;}
.xc1{left:766.500000px;}
.xcb{left:769.950000px;}
.xe8{left:772.200000px;}
@media print{
.v3{vertical-align:-60.843284pt;}
.v4{vertical-align:-59.794230pt;}
.v1{vertical-align:-57.936415pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.066667pt;}
.ls4{letter-spacing:-8.000000pt;}
.ls9{letter-spacing:-5.333333pt;}
.ls1{letter-spacing:-2.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.005333pt;}
.ls1f{letter-spacing:3.194667pt;}
.ls34{letter-spacing:6.933333pt;}
.ls5{letter-spacing:8.000000pt;}
.ls27{letter-spacing:8.533333pt;}
.ls2c{letter-spacing:9.066667pt;}
.ls2d{letter-spacing:10.133333pt;}
.ls17{letter-spacing:14.933333pt;}
.ls13{letter-spacing:16.000000pt;}
.lsd{letter-spacing:16.533333pt;}
.ls19{letter-spacing:17.066667pt;}
.ls15{letter-spacing:17.600000pt;}
.ls14{letter-spacing:19.210667pt;}
.ls18{letter-spacing:20.288000pt;}
.ls29{letter-spacing:20.528000pt;}
.ls24{letter-spacing:21.845333pt;}
.ls1a{letter-spacing:22.122667pt;}
.lse{letter-spacing:22.400000pt;}
.ls22{letter-spacing:24.549333pt;}
.ls28{letter-spacing:27.461333pt;}
.ls16{letter-spacing:27.738667pt;}
.ls2e{letter-spacing:28.293333pt;}
.ls10{letter-spacing:29.333333pt;}
.ls1d{letter-spacing:31.205333pt;}
.ls1e{letter-spacing:34.672000pt;}
.lsf{letter-spacing:82.666667pt;}
.ls1b{letter-spacing:85.333333pt;}
.ls23{letter-spacing:118.400000pt;}
.ls11{letter-spacing:120.000000pt;}
.ls2b{letter-spacing:123.200000pt;}
.ls26{letter-spacing:164.266667pt;}
.ls0{letter-spacing:1073.435819pt;}
.ls30{letter-spacing:1092.132388pt;}
.ls12{letter-spacing:1092.690324pt;}
.ls35{letter-spacing:1093.897289pt;}
.ls25{letter-spacing:1097.529570pt;}
.ls37{letter-spacing:1098.827627pt;}
.ls21{letter-spacing:1099.294471pt;}
.ls33{letter-spacing:1102.368816pt;}
.ls2a{letter-spacing:1103.291119pt;}
.ls8{letter-spacing:1105.067407pt;}
.ls32{letter-spacing:1106.365464pt;}
.ls7{letter-spacing:1107.857090pt;}
.ls1c{letter-spacing:1110.555681pt;}
.lsb{letter-spacing:1113.903301pt;}
.ls20{letter-spacing:1119.767328pt;}
.ls2f{letter-spacing:1120.598540pt;}
.ls36{letter-spacing:1121.714413pt;}
.lsa{letter-spacing:1122.363441pt;}
.ls3{letter-spacing:1127.293779pt;}
.ls6{letter-spacing:1128.603222pt;}
.ls31{letter-spacing:1138.646080pt;}
.ws15{word-spacing:-76.272000pt;}
.ws14{word-spacing:-72.805333pt;}
.wsd{word-spacing:-70.933333pt;}
.ws1e{word-spacing:-69.893333pt;}
.ws10{word-spacing:-69.338667pt;}
.ws1c{word-spacing:-69.061333pt;}
.ws17{word-spacing:-66.149333pt;}
.wsc{word-spacing:-64.000000pt;}
.ws12{word-spacing:-63.722667pt;}
.ws19{word-spacing:-63.445333pt;}
.wsf{word-spacing:-60.810667pt;}
.ws4{word-spacing:-59.200000pt;}
.ws11{word-spacing:-58.688000pt;}
.ws13{word-spacing:-54.400000pt;}
.wse{word-spacing:-52.800000pt;}
.ws16{word-spacing:-44.794667pt;}
.wsb{word-spacing:-41.605333pt;}
.ws1d{word-spacing:-41.600000pt;}
.ws3{word-spacing:-40.000000pt;}
.ws2{word-spacing:-38.400000pt;}
.ws7{word-spacing:-36.266667pt;}
.ws6{word-spacing:-33.600000pt;}
.ws18{word-spacing:-30.400000pt;}
.ws9{word-spacing:-28.800000pt;}
.ws8{word-spacing:-25.600000pt;}
.ws5{word-spacing:-24.000000pt;}
.ws1b{word-spacing:-19.712000pt;}
.ws0{word-spacing:-14.384000pt;}
.wsa{word-spacing:-4.272000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:1.600000pt;}
._42{margin-left:-36.845333pt;}
._43{margin-left:-35.728000pt;}
._82{margin-left:-34.112000pt;}
._84{margin-left:-33.061333pt;}
._6f{margin-left:-32.170667pt;}
._69{margin-left:-31.200000pt;}
._75{margin-left:-22.154667pt;}
._81{margin-left:-21.077333pt;}
._40{margin-left:-19.413333pt;}
._49{margin-left:-18.373333pt;}
._21{margin-left:-17.474667pt;}
._1e{margin-left:-15.960000pt;}
._1{margin-left:-14.658667pt;}
._12{margin-left:-13.586667pt;}
._19{margin-left:-11.976000pt;}
._1c{margin-left:-10.400000pt;}
._29{margin-left:-9.496000pt;}
._17{margin-left:-8.536000pt;}
._13{margin-left:-7.093333pt;}
._16{margin-left:-6.093333pt;}
._18{margin-left:-4.805333pt;}
._11{margin-left:-3.837333pt;}
._d{margin-left:-2.917333pt;}
._e{margin-left:-1.954667pt;}
._10{margin-left:-0.904000pt;}
._c{width:1.562667pt;}
._0{width:2.698667pt;}
._2{width:4.293333pt;}
._6{width:5.704000pt;}
._4{width:7.360000pt;}
._9{width:8.709333pt;}
._3{width:9.690667pt;}
._b{width:10.610667pt;}
._7{width:11.592000pt;}
._a{width:13.248000pt;}
._1a{width:14.658667pt;}
._8{width:16.069333pt;}
._5e{width:17.053333pt;}
._5{width:17.970667pt;}
._3f{width:19.240000pt;}
._48{width:21.005333pt;}
._53{width:22.045333pt;}
._f{width:23.248000pt;}
._15{width:24.362667pt;}
._7c{width:27.245333pt;}
._5d{width:30.288000pt;}
._4a{width:31.605333pt;}
._55{width:33.088000pt;}
._7e{width:34.397333pt;}
._20{width:35.640000pt;}
._1f{width:37.272000pt;}
._2a{width:38.344000pt;}
._28{width:39.397333pt;}
._23{width:41.048000pt;}
._2c{width:42.248000pt;}
._89{width:43.376000pt;}
._87{width:44.320000pt;}
._80{width:45.290667pt;}
._86{width:46.874667pt;}
._6b{width:48.557333pt;}
._88{width:49.493333pt;}
._4e{width:50.682667pt;}
._33{width:51.754667pt;}
._1b{width:53.762667pt;}
._7a{width:54.733333pt;}
._4d{width:56.506667pt;}
._68{width:58.114667pt;}
._65{width:59.461333pt;}
._6e{width:61.240000pt;}
._62{width:62.165333pt;}
._5b{width:63.512000pt;}
._6d{width:64.528000pt;}
._7b{width:65.632000pt;}
._7f{width:66.693333pt;}
._7d{width:69.085333pt;}
._1d{width:70.642667pt;}
._85{width:71.546667pt;}
._79{width:73.496000pt;}
._56{width:79.714667pt;}
._50{width:80.752000pt;}
._57{width:84.170667pt;}
._3e{width:85.528000pt;}
._72{width:86.810667pt;}
._4f{width:87.778667pt;}
._32{width:88.816000pt;}
._34{width:90.410667pt;}
._24{width:92.277333pt;}
._26{width:93.234667pt;}
._27{width:95.082667pt;}
._25{width:97.320000pt;}
._52{width:120.293333pt;}
._51{width:121.333333pt;}
._38{width:123.482667pt;}
._39{width:125.077333pt;}
._58{width:126.117333pt;}
._37{width:127.205333pt;}
._2d{width:128.544000pt;}
._41{width:130.624000pt;}
._3d{width:137.626667pt;}
._78{width:144.480000pt;}
._67{width:159.744000pt;}
._70{width:161.330667pt;}
._31{width:165.845333pt;}
._35{width:167.994667pt;}
._30{width:184.512000pt;}
._66{width:189.242667pt;}
._6a{width:198.986667pt;}
._45{width:200.512000pt;}
._63{width:201.850667pt;}
._36{width:223.461333pt;}
._59{width:225.056000pt;}
._64{width:226.133333pt;}
._71{width:238.645333pt;}
._3a{width:241.626667pt;}
._4b{width:242.874667pt;}
._76{width:247.450667pt;}
._77{width:265.338667pt;}
._2f{width:301.045333pt;}
._2e{width:302.154667pt;}
._3c{width:316.021333pt;}
._44{width:318.933333pt;}
._5a{width:320.528000pt;}
._46{width:344.610667pt;}
._47{width:361.573333pt;}
._22{width:381.674667pt;}
._73{width:433.888000pt;}
._14{width:529.050667pt;}
._5f{width:598.138667pt;}
._60{width:637.034667pt;}
._5c{width:1041.264000pt;}
._3b{width:1827.712000pt;}
._4c{width:1837.130667pt;}
._2b{width:1858.848000pt;}
._54{width:1862.901333pt;}
._61{width:1972.882667pt;}
._6c{width:2023.312000pt;}
._74{width:2028.224000pt;}
._83{width:2053.653333pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.379491pt;}
.fs2d{font-size:50.666667pt;}
.fs25{font-size:51.256976pt;}
.fs17{font-size:51.283162pt;}
.fs2e{font-size:51.339808pt;}
.fs1f{font-size:51.510282pt;}
.fs32{font-size:51.571203pt;}
.fs1d{font-size:51.593114pt;}
.fs2b{font-size:51.737402pt;}
.fs21{font-size:51.780688pt;}
.fs10{font-size:51.864054pt;}
.fs29{font-size:51.924976pt;}
.fsd{font-size:51.994982pt;}
.fs19{font-size:52.121635pt;}
.fs14{font-size:52.278749pt;}
.fs1b{font-size:52.553965pt;}
.fs23{font-size:52.592976pt;}
.fs30{font-size:52.645347pt;}
.fs12{font-size:52.675808pt;}
.fs8{font-size:52.907203pt;}
.fsb{font-size:52.968659pt;}
.fsa{font-size:53.333333pt;}
.fs27{font-size:53.440000pt;}
.fsf{font-size:56.000000pt;}
.fs0{font-size:61.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fs16{font-size:101.333333pt;}
.fs4{font-size:362.008688pt;}
.fs26{font-size:368.313974pt;}
.fs18{font-size:368.502135pt;}
.fs2f{font-size:368.909175pt;}
.fs20{font-size:370.134136pt;}
.fs33{font-size:370.571897pt;}
.fs1e{font-size:370.729337pt;}
.fs2c{font-size:371.766138pt;}
.fs22{font-size:372.077178pt;}
.fs11{font-size:372.676219pt;}
.fs2a{font-size:373.113979pt;}
.fse{font-size:373.617020pt;}
.fs1a{font-size:374.527101pt;}
.fs15{font-size:375.656062pt;}
.fs1c{font-size:377.633664pt;}
.fs24{font-size:377.913984pt;}
.fs31{font-size:378.290305pt;}
.fs13{font-size:378.509185pt;}
.fs9{font-size:380.171906pt;}
.fsc{font-size:380.613507pt;}
.fs28{font-size:384.000390pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:13.467329pt;}
.y1af{bottom:13.701896pt;}
.ycd{bottom:13.708896pt;}
.y277{bottom:13.724039pt;}
.y24{bottom:13.736000pt;}
.y158{bottom:13.769609pt;}
.y2ad{bottom:13.785895pt;}
.y133{bottom:13.791752pt;}
.y236{bottom:13.830322pt;}
.y17c{bottom:13.841894pt;}
.y10f{bottom:13.861333pt;}
.y74{bottom:13.864179pt;}
.y211{bottom:13.880464pt;}
.y4b{bottom:13.899178pt;}
.yf2{bottom:13.933035pt;}
.ya9{bottom:13.975034pt;}
.y117{bottom:14.048604pt;}
.y1a0{bottom:14.059033pt;}
.y29b{bottom:14.073032pt;}
.y97{bottom:14.081175pt;}
.y198{bottom:14.105333pt;}
.y2c{bottom:14.143031pt;}
.y3d{bottom:14.159459pt;}
.y1e3{bottom:14.285457pt;}
.y8f{bottom:14.714667pt;}
.y35{bottom:15.029333pt;}
.y253{bottom:15.210667pt;}
.yea{bottom:15.893333pt;}
.y293{bottom:16.013333pt;}
.y1ff{bottom:17.666667pt;}
.y1db{bottom:18.213333pt;}
.y6c{bottom:18.768000pt;}
.ya1{bottom:18.969333pt;}
.y174{bottom:19.258667pt;}
.y209{bottom:20.074667pt;}
.y12b{bottom:20.481333pt;}
.y1c0{bottom:22.924000pt;}
.y150{bottom:23.066667pt;}
.y22e{bottom:23.189333pt;}
.y26f{bottom:23.445333pt;}
.y43{bottom:23.546667pt;}
.y1a6{bottom:23.893333pt;}
.y8{bottom:24.000000pt;}
.yc5{bottom:24.040000pt;}
.y22d{bottom:25.176000pt;}
.y26e{bottom:25.445333pt;}
.y2a5{bottom:25.460000pt;}
.y1a7{bottom:25.573333pt;}
.y2a4{bottom:25.833333pt;}
.yc4{bottom:26.560000pt;}
.y12a{bottom:27.068000pt;}
.y42{bottom:27.440000pt;}
.y173{bottom:27.725333pt;}
.y14f{bottom:27.866667pt;}
.y208{bottom:28.394667pt;}
.y6b{bottom:28.421333pt;}
.y1fe{bottom:28.520000pt;}
.y1bf{bottom:29.324000pt;}
.ye9{bottom:29.440000pt;}
.y292{bottom:29.480000pt;}
.y34{bottom:29.602667pt;}
.ya0{bottom:29.609333pt;}
.y197{bottom:29.718667pt;}
.y8e{bottom:29.981333pt;}
.y10e{bottom:30.661333pt;}
.y1da{bottom:30.786667pt;}
.y252{bottom:31.224000pt;}
.y23{bottom:31.629333pt;}
.y9{bottom:38.240000pt;}
.yc3{bottom:56.693333pt;}
.y6a{bottom:106.154667pt;}
.y251{bottom:109.757333pt;}
.ye8{bottom:131.173333pt;}
.y1fd{bottom:135.986667pt;}
.y69{bottom:138.688000pt;}
.y10d{bottom:140.928000pt;}
.y291{bottom:141.080000pt;}
.y22c{bottom:142.909333pt;}
.y250{bottom:142.957333pt;}
.yc2{bottom:143.360000pt;}
.y8d{bottom:143.848000pt;}
.y196{bottom:143.852000pt;}
.y14e{bottom:144.933333pt;}
.y1d9{bottom:155.586667pt;}
.ye7{bottom:164.506667pt;}
.y1fc{bottom:167.986667pt;}
.y68{bottom:171.221333pt;}
.y26d{bottom:172.512000pt;}
.y10c{bottom:172.928000pt;}
.y290{bottom:174.680000pt;}
.y22b{bottom:175.442667pt;}
.yc1{bottom:175.760000pt;}
.y24f{bottom:176.024000pt;}
.y8c{bottom:176.114667pt;}
.y195{bottom:176.652000pt;}
.y14d{bottom:177.600000pt;}
.y172{bottom:179.325333pt;}
.y22{bottom:186.296000pt;}
.y1d8{bottom:188.520000pt;}
.ye6{bottom:197.040000pt;}
.y1fb{bottom:200.920000pt;}
.y67{bottom:203.488000pt;}
.y26c{bottom:205.445333pt;}
.y10b{bottom:205.461333pt;}
.y28f{bottom:207.613333pt;}
.y22a{bottom:207.976000pt;}
.y8b{bottom:208.248000pt;}
.y24e{bottom:208.557333pt;}
.yc0{bottom:208.693333pt;}
.y194{bottom:208.918667pt;}
.y14c{bottom:210.000000pt;}
.y171{bottom:211.725333pt;}
.y1d7{bottom:221.186667pt;}
.y1f{bottom:226.829333pt;}
.ye5{bottom:229.440000pt;}
.y1fa{bottom:232.653333pt;}
.y66{bottom:234.688000pt;}
.y26b{bottom:237.978667pt;}
.y10a{bottom:237.994667pt;}
.y28e{bottom:239.080000pt;}
.ybf{bottom:240.026667pt;}
.y229{bottom:240.509333pt;}
.y8a{bottom:240.514667pt;}
.y193{bottom:241.185333pt;}
.y24d{bottom:241.490667pt;}
.y14b{bottom:241.600000pt;}
.y170{bottom:244.258667pt;}
.y1d6{bottom:253.453333pt;}
.y1e{bottom:259.362667pt;}
.ye4{bottom:261.706667pt;}
.y14a{bottom:264.266667pt;}
.y1f9{bottom:265.320000pt;}
.y65{bottom:267.221333pt;}
.y109{bottom:269.861333pt;}
.y26a{bottom:270.512000pt;}
.y28d{bottom:272.280000pt;}
.y228{bottom:272.642667pt;}
.y89{bottom:272.648000pt;}
.ybe{bottom:272.693333pt;}
.y192{bottom:273.052000pt;}
.y149{bottom:274.000000pt;}
.y24c{bottom:274.024000pt;}
.y16f{bottom:275.325333pt;}
.y1d5{bottom:286.120000pt;}
.y20{bottom:288.696000pt;}
.y1d{bottom:291.896000pt;}
.ye3{bottom:292.773333pt;}
.y1f8{bottom:297.586667pt;}
.y64{bottom:299.488000pt;}
.y108{bottom:301.994667pt;}
.y269{bottom:302.645333pt;}
.y88{bottom:304.914667pt;}
.y191{bottom:304.918667pt;}
.y28c{bottom:304.946667pt;}
.ybd{bottom:304.960000pt;}
.y227{bottom:305.176000pt;}
.y148{bottom:305.600000pt;}
.y24b{bottom:306.157333pt;}
.y16e{bottom:308.792000pt;}
.y1d4{bottom:318.786667pt;}
.ye2{bottom:325.706667pt;}
.y21{bottom:326.029333pt;}
.y1f7{bottom:330.253333pt;}
.y63{bottom:332.288000pt;}
.y107{bottom:334.261333pt;}
.y268{bottom:335.178667pt;}
.y87{bottom:336.781333pt;}
.ybc{bottom:336.960000pt;}
.y190{bottom:337.185333pt;}
.y28b{bottom:337.213333pt;}
.y147{bottom:337.600000pt;}
.y226{bottom:337.709333pt;}
.y24a{bottom:338.424000pt;}
.y16d{bottom:340.925333pt;}
.yf1{bottom:345.094993pt;}
.y116{bottom:345.793598pt;}
.y19f{bottom:346.283994pt;}
.y17b{bottom:346.306894pt;}
.y73{bottom:346.342772pt;}
.y132{bottom:346.344836pt;}
.y200{bottom:346.868326pt;}
.y96{bottom:347.416497pt;}
.y276{bottom:347.708951pt;}
.y2b{bottom:347.899328pt;}
.y254{bottom:347.912497pt;}
.ycc{bottom:347.945838pt;}
.y210{bottom:348.034221pt;}
.y157{bottom:348.407000pt;}
.y29a{bottom:348.522772pt;}
.ya8{bottom:349.163327pt;}
.y1ae{bottom:349.313782pt;}
.y3c{bottom:349.580819pt;}
.y235{bottom:349.964163pt;}
.y1c1{bottom:349.972228pt;}
.y1d3{bottom:350.786667pt;}
.y2ac{bottom:351.185116pt;}
.y4a{bottom:351.948384pt;}
.y1e2{bottom:355.741821pt;}
.y10{bottom:356.438231pt;}
.ye1{bottom:357.706667pt;}
.y1f6{bottom:362.920000pt;}
.y62{bottom:363.621333pt;}
.y106{bottom:366.794667pt;}
.y267{bottom:367.445333pt;}
.y28a{bottom:368.946667pt;}
.ybb{bottom:368.960000pt;}
.y86{bottom:369.048000pt;}
.y18f{bottom:369.585333pt;}
.y146{bottom:369.866667pt;}
.y225{bottom:369.976000pt;}
.y249{bottom:370.957333pt;}
.y16c{bottom:371.858667pt;}
.y1d2{bottom:382.386667pt;}
.y1c{bottom:389.096000pt;}
.ye0{bottom:390.106667pt;}
.y129{bottom:390.934667pt;}
.y1f5{bottom:395.186667pt;}
.y61{bottom:396.421333pt;}
.y105{bottom:399.061333pt;}
.y266{bottom:399.978667pt;}
.y85{bottom:400.914667pt;}
.yba{bottom:401.360000pt;}
.y18e{bottom:401.452000pt;}
.y289{bottom:401.613333pt;}
.y224{bottom:402.109333pt;}
.y145{bottom:402.266667pt;}
.y248{bottom:403.090667pt;}
.y16b{bottom:405.058667pt;}
.y1d1{bottom:415.320000pt;}
.y1b{bottom:421.629333pt;}
.ydf{bottom:422.640000pt;}
.y128{bottom:423.468000pt;}
.y1f4{bottom:427.586667pt;}
.y60{bottom:428.688000pt;}
.y104{bottom:431.594667pt;}
.y265{bottom:432.778667pt;}
.y84{bottom:433.048000pt;}
.y288{bottom:433.613333pt;}
.y18d{bottom:433.718667pt;}
.y144{bottom:434.533333pt;}
.yb9{bottom:434.960000pt;}
.y223{bottom:435.042667pt;}
.y247{bottom:435.357333pt;}
.y16a{bottom:437.325333pt;}
.y7{bottom:443.200000pt;}
.y1d0{bottom:447.986667pt;}
.y1a{bottom:454.562667pt;}
.yde{bottom:455.040000pt;}
.y127{bottom:457.068000pt;}
.y1f3{bottom:459.853333pt;}
.y5f{bottom:461.221333pt;}
.y103{bottom:464.394667pt;}
.y264{bottom:465.045333pt;}
.y83{bottom:465.048000pt;}
.y18c{bottom:465.985333pt;}
.y287{bottom:466.280000pt;}
.yb8{bottom:466.960000pt;}
.y222{bottom:467.176000pt;}
.y143{bottom:467.200000pt;}
.y246{bottom:467.624000pt;}
.y169{bottom:469.192000pt;}
.y1be{bottom:471.724000pt;}
.y1cf{bottom:479.720000pt;}
.ydd{bottom:488.240000pt;}
.y126{bottom:488.268000pt;}
.y1f2{bottom:492.520000pt;}
.y5e{bottom:493.088000pt;}
.y102{bottom:495.328000pt;}
.y263{bottom:497.578667pt;}
.y82{bottom:497.581333pt;}
.y142{bottom:498.533333pt;}
.y286{bottom:498.546667pt;}
.yb7{bottom:498.560000pt;}
.y18b{bottom:498.785333pt;}
.y221{bottom:499.442667pt;}
.y245{bottom:500.424000pt;}
.y168{bottom:501.992000pt;}
.y1bd{bottom:503.990667pt;}
.y41{bottom:509.440000pt;}
.y1ce{bottom:512.653333pt;}
.y6{bottom:514.933333pt;}
.ydc{bottom:519.306667pt;}
.y125{bottom:522.134667pt;}
.y1f1{bottom:524.786667pt;}
.y5d{bottom:525.621333pt;}
.y101{bottom:528.128000pt;}
.y262{bottom:529.712000pt;}
.y81{bottom:530.114667pt;}
.y18a{bottom:530.652000pt;}
.y285{bottom:530.813333pt;}
.yb6{bottom:531.226667pt;}
.y141{bottom:531.866667pt;}
.y220{bottom:531.976000pt;}
.y244{bottom:532.957333pt;}
.y167{bottom:534.258667pt;}
.y5{bottom:535.066667pt;}
.y1bc{bottom:535.857333pt;}
.y40{bottom:540.773333pt;}
.y1cd{bottom:544.920000pt;}
.ydb{bottom:552.240000pt;}
.y124{bottom:553.601333pt;}
.y3f{bottom:557.040000pt;}
.y1f0{bottom:557.186667pt;}
.y5c{bottom:557.888000pt;}
.y100{bottom:560.394667pt;}
.y80{bottom:561.581333pt;}
.y261{bottom:562.245333pt;}
.y284{bottom:562.546667pt;}
.y189{bottom:562.652000pt;}
.yb5{bottom:563.493333pt;}
.y33{bottom:563.869333pt;}
.y140{bottom:564.133333pt;}
.y21f{bottom:564.242667pt;}
.y243{bottom:564.824000pt;}
.y166{bottom:566.125333pt;}
.y19{bottom:567.362667pt;}
.y1bb{bottom:569.057333pt;}
.y3e{bottom:573.440000pt;}
.y4{bottom:573.733333pt;}
.y1cc{bottom:576.920000pt;}
.yda{bottom:584.906667pt;}
.y123{bottom:585.601333pt;}
.y1ef{bottom:589.720000pt;}
.y5b{bottom:590.421333pt;}
.y3{bottom:592.666667pt;}
.yff{bottom:593.594667pt;}
.y260{bottom:594.512000pt;}
.y7f{bottom:594.514667pt;}
.y188{bottom:594.785333pt;}
.y283{bottom:596.146667pt;}
.y13f{bottom:596.533333pt;}
.yb4{bottom:596.560000pt;}
.y21e{bottom:596.776000pt;}
.y242{bottom:597.757333pt;}
.y165{bottom:598.925333pt;}
.y18{bottom:599.629333pt;}
.y1ba{bottom:600.924000pt;}
.y1cb{bottom:609.586667pt;}
.y2{bottom:612.133333pt;}
.y32{bottom:612.269333pt;}
.yd9{bottom:616.640000pt;}
.y122{bottom:618.401333pt;}
.y5a{bottom:622.288000pt;}
.y1ee{bottom:622.386667pt;}
.yfe{bottom:625.461333pt;}
.y7e{bottom:626.648000pt;}
.y25f{bottom:627.045333pt;}
.y187{bottom:627.718667pt;}
.yb3{bottom:627.893333pt;}
.y282{bottom:628.413333pt;}
.y13e{bottom:628.533333pt;}
.y21d{bottom:629.309333pt;}
.y241{bottom:630.557333pt;}
.y164{bottom:630.925333pt;}
.y17{bottom:632.429333pt;}
.y1b9{bottom:633.057333pt;}
.y1ca{bottom:641.986667pt;}
.yd8{bottom:648.640000pt;}
.y1{bottom:650.266667pt;}
.y121{bottom:650.268000pt;}
.y59{bottom:654.421333pt;}
.y1ed{bottom:655.053333pt;}
.yfd{bottom:657.728000pt;}
.y25e{bottom:658.645333pt;}
.y7d{bottom:659.181333pt;}
.y186{bottom:659.585333pt;}
.y13d{bottom:660.800000pt;}
.yb2{bottom:661.093333pt;}
.y281{bottom:661.480000pt;}
.y21c{bottom:661.842667pt;}
.y240{bottom:662.824000pt;}
.y163{bottom:663.992000pt;}
.y16{bottom:664.429333pt;}
.y1b8{bottom:665.590667pt;}
.y1c9{bottom:674.253333pt;}
.y31{bottom:677.069333pt;}
.yd7{bottom:681.573333pt;}
.y120{bottom:683.468000pt;}
.y58{bottom:686.688000pt;}
.y1ec{bottom:687.320000pt;}
.yfc{bottom:689.861333pt;}
.y25d{bottom:691.445333pt;}
.y7c{bottom:691.714667pt;}
.y185{bottom:692.385333pt;}
.yb1{bottom:693.093333pt;}
.y13c{bottom:693.466667pt;}
.y280{bottom:693.746667pt;}
.y21b{bottom:693.976000pt;}
.y23f{bottom:694.957333pt;}
.y162{bottom:695.992000pt;}
.y1b7{bottom:697.857333pt;}
.y1c8{bottom:707.186667pt;}
.yd6{bottom:714.240000pt;}
.y11f{bottom:715.601333pt;}
.y57{bottom:719.221333pt;}
.y1eb{bottom:719.720000pt;}
.y2a3{bottom:722.100000pt;}
.yfb{bottom:722.794667pt;}
.y207{bottom:723.328000pt;}
.y184{bottom:723.718667pt;}
.y7b{bottom:723.981333pt;}
.y9f{bottom:724.009333pt;}
.y25c{bottom:724.245333pt;}
.yb0{bottom:725.093333pt;}
.y13b{bottom:725.733333pt;}
.y27f{bottom:726.413333pt;}
.y21a{bottom:726.509333pt;}
.y23e{bottom:727.224000pt;}
.y161{bottom:728.792000pt;}
.y1b6{bottom:730.657333pt;}
.y1c7{bottom:739.853333pt;}
.yd5{bottom:746.240000pt;}
.y11e{bottom:747.601333pt;}
.y56{bottom:751.488000pt;}
.y1ea{bottom:752.386667pt;}
.yfa{bottom:754.261333pt;}
.y2a2{bottom:755.166667pt;}
.y9e{bottom:756.142667pt;}
.y7a{bottom:756.248000pt;}
.y25b{bottom:756.512000pt;}
.y206{bottom:756.528000pt;}
.y183{bottom:757.185333pt;}
.y13a{bottom:757.733333pt;}
.y27e{bottom:757.746667pt;}
.yaf{bottom:758.160000pt;}
.y219{bottom:759.042667pt;}
.y23d{bottom:759.757333pt;}
.y160{bottom:761.325333pt;}
.y1b5{bottom:762.257333pt;}
.y1c6{bottom:772.120000pt;}
.y30{bottom:774.402667pt;}
.yd4{bottom:778.506667pt;}
.y11d{bottom:780.401333pt;}
.y55{bottom:783.621333pt;}
.y1e9{bottom:784.653333pt;}
.yf9{bottom:787.861333pt;}
.y2a1{bottom:788.100000pt;}
.y79{bottom:788.381333pt;}
.y9d{bottom:788.676000pt;}
.y182{bottom:789.052000pt;}
.y25a{bottom:789.312000pt;}
.yae{bottom:790.160000pt;}
.y139{bottom:790.400000pt;}
.y27d{bottom:791.080000pt;}
.y218{bottom:791.309333pt;}
.y23c{bottom:791.890667pt;}
.y15f{bottom:793.592000pt;}
.y15{bottom:795.096000pt;}
.y1b4{bottom:795.457333pt;}
.y1c5{bottom:804.786667pt;}
.y2f{bottom:806.536000pt;}
.yf{bottom:806.728301pt;}
.yd3{bottom:810.240000pt;}
.y11c{bottom:812.668000pt;}
.y54{bottom:815.888000pt;}
.y1e8{bottom:816.920000pt;}
.yf8{bottom:819.728000pt;}
.y2a0{bottom:820.633333pt;}
.y1ad{bottom:820.779491pt;}
.y78{bottom:820.914667pt;}
.ycb{bottom:821.198802pt;}
.y9c{bottom:821.209333pt;}
.ye{bottom:821.212405pt;}
.y259{bottom:821.578667pt;}
.y181{bottom:821.585333pt;}
.y205{bottom:821.594667pt;}
.y275{bottom:822.105883pt;}
.yad{bottom:822.160000pt;}
.y138{bottom:822.400000pt;}
.y27c{bottom:823.613333pt;}
.y217{bottom:824.376000pt;}
.y23b{bottom:824.424000pt;}
.y156{bottom:824.835681pt;}
.y15e{bottom:825.725333pt;}
.y2ab{bottom:825.811221pt;}
.y131{bottom:826.162073pt;}
.y14{bottom:826.962667pt;}
.y234{bottom:828.472561pt;}
.y1b3{bottom:828.657333pt;}
.y17a{bottom:829.165707pt;}
.y72{bottom:830.500656pt;}
.y20f{bottom:831.476195pt;}
.y49{bottom:832.597210pt;}
.yf0{bottom:834.625305pt;}
.y1ac{bottom:835.515872pt;}
.yca{bottom:835.942711pt;}
.y274{bottom:836.866077pt;}
.ya7{bottom:837.141170pt;}
.y1c4{bottom:837.186667pt;}
.y155{bottom:839.644887pt;}
.y2aa{bottom:840.637942pt;}
.y130{bottom:840.995093pt;}
.y115{bottom:841.548212pt;}
.y19e{bottom:842.172899pt;}
.yd2{bottom:842.506667pt;}
.y299{bottom:843.011521pt;}
.y233{bottom:843.347064pt;}
.y95{bottom:843.499291pt;}
.y179{bottom:844.052655pt;}
.y71{bottom:845.411572pt;}
.y11b{bottom:845.734667pt;}
.y20e{bottom:846.404626pt;}
.y2a{bottom:847.204629pt;}
.y48{bottom:847.545767pt;}
.y3b{bottom:848.188726pt;}
.y53{bottom:848.688000pt;}
.y1a5{bottom:848.693333pt;}
.y1e7{bottom:849.320000pt;}
.yef{bottom:849.610275pt;}
.yd{bottom:850.105043pt;}
.ya6{bottom:852.171310pt;}
.yf7{bottom:852.261333pt;}
.y9b{bottom:853.076000pt;}
.y29f{bottom:853.166667pt;}
.y77{bottom:853.181333pt;}
.y204{bottom:853.861333pt;}
.y180{bottom:854.118667pt;}
.y258{bottom:854.778667pt;}
.yac{bottom:855.093333pt;}
.y137{bottom:855.333333pt;}
.y27b{bottom:855.613333pt;}
.y1e1{bottom:855.736320pt;}
.y216{bottom:856.376000pt;}
.y23a{bottom:856.424000pt;}
.y114{bottom:856.657477pt;}
.y19d{bottom:857.293380pt;}
.y298{bottom:858.147058pt;}
.y94{bottom:858.643585pt;}
.y15d{bottom:858.658667pt;}
.y13{bottom:859.496000pt;}
.y1b2{bottom:861.190667pt;}
.y29{bottom:862.415450pt;}
.y3a{bottom:863.417215pt;}
.yc{bottom:864.589147pt;}
.y1ab{bottom:864.911748pt;}
.yc9{bottom:865.353604pt;}
.y273{bottom:866.309457pt;}
.y154{bottom:869.186034pt;}
.y2a9{bottom:870.214027pt;}
.y12f{bottom:870.583744pt;}
.y1e0{bottom:871.100320pt;}
.y232{bottom:873.018464pt;}
.y178{bottom:873.748880pt;}
.yd1{bottom:874.906667pt;}
.y70{bottom:875.155607pt;}
.y20d{bottom:876.183600pt;}
.y47{bottom:877.364890pt;}
.y11a{bottom:877.734667pt;}
.yb{bottom:878.997681pt;}
.yee{bottom:879.502033pt;}
.y1aa{bottom:879.648128pt;}
.yc8{bottom:880.097513pt;}
.y52{bottom:880.954667pt;}
.y272{bottom:881.069652pt;}
.y1a4{bottom:881.226667pt;}
.y1e6{bottom:881.986667pt;}
.ya5{bottom:882.153172pt;}
.y2e{bottom:882.536000pt;}
.y153{bottom:883.995240pt;}
.y2a8{bottom:885.040748pt;}
.yf6{bottom:885.061333pt;}
.y76{bottom:885.314667pt;}
.y12e{bottom:885.416764pt;}
.y29e{bottom:885.700000pt;}
.y17f{bottom:885.718667pt;}
.y1c3{bottom:886.120000pt;}
.y9a{bottom:886.276000pt;}
.y203{bottom:886.394667pt;}
.yab{bottom:886.426667pt;}
.y113{bottom:886.797176pt;}
.y257{bottom:886.912000pt;}
.y19c{bottom:887.455452pt;}
.y136{bottom:887.600000pt;}
.y231{bottom:887.892967pt;}
.y27a{bottom:888.013333pt;}
.y297{bottom:888.339165pt;}
.y177{bottom:888.635827pt;}
.y93{bottom:888.853161pt;}
.y215{bottom:889.176000pt;}
.y239{bottom:889.890667pt;}
.y6f{bottom:890.066522pt;}
.y15c{bottom:890.125333pt;}
.y20c{bottom:891.112030pt;}
.y12{bottom:891.762667pt;}
.y1b1{bottom:892.124000pt;}
.y46{bottom:892.313447pt;}
.y28{bottom:892.757731pt;}
.ya{bottom:893.481785pt;}
.y39{bottom:893.794741pt;}
.y1a9{bottom:894.307623pt;}
.yed{bottom:894.487003pt;}
.yc7{bottom:894.764497pt;}
.y271{bottom:895.752837pt;}
.ya4{bottom:897.183313pt;}
.y152{bottom:898.727180pt;}
.y2a7{bottom:899.790112pt;}
.y12d{bottom:900.172394pt;}
.y1df{bottom:901.748160pt;}
.y112{bottom:901.906440pt;}
.y19b{bottom:902.575932pt;}
.y230{bottom:902.689863pt;}
.y176{bottom:903.445104pt;}
.y296{bottom:903.474702pt;}
.y92{bottom:903.997456pt;}
.y6e{bottom:904.899642pt;}
.y20b{bottom:905.962573pt;}
.y45{bottom:907.184012pt;}
.yd0{bottom:907.440000pt;}
.y27{bottom:907.968552pt;}
.y38{bottom:909.023231pt;}
.y1a8{bottom:909.044004pt;}
.yec{bottom:909.393791pt;}
.yc6{bottom:909.508406pt;}
.y119{bottom:909.868000pt;}
.y270{bottom:910.513032pt;}
.ya3{bottom:912.135035pt;}
.y51{bottom:912.821333pt;}
.y151{bottom:913.536386pt;}
.y1a3{bottom:914.026667pt;}
.y2a6{bottom:914.616833pt;}
.y2d{bottom:914.669333pt;}
.y1e5{bottom:914.920000pt;}
.y12c{bottom:915.005414pt;}
.y111{bottom:916.936874pt;}
.y1de{bottom:917.112160pt;}
.y75{bottom:917.314667pt;}
.yf5{bottom:917.328000pt;}
.y22f{bottom:917.564366pt;}
.y19a{bottom:917.617523pt;}
.y175{bottom:918.332052pt;}
.y29d{bottom:918.500000pt;}
.y17e{bottom:918.518667pt;}
.y295{bottom:918.531271pt;}
.y99{bottom:918.542667pt;}
.y202{bottom:918.928000pt;}
.y91{bottom:919.062737pt;}
.y256{bottom:919.445333pt;}
.y6d{bottom:919.810558pt;}
.y135{bottom:920.266667pt;}
.y20a{bottom:920.891004pt;}
.y279{bottom:920.946667pt;}
.y214{bottom:921.709333pt;}
.y238{bottom:922.024000pt;}
.y44{bottom:922.132570pt;}
.y26{bottom:923.100012pt;}
.y15b{bottom:923.325333pt;}
.y37{bottom:924.172267pt;}
.yeb{bottom:924.378761pt;}
.ya2{bottom:927.165175pt;}
.y110{bottom:932.046139pt;}
.y1dd{bottom:932.396000pt;}
.y199{bottom:932.738004pt;}
.y294{bottom:933.666809pt;}
.y90{bottom:934.207032pt;}
.y1c2{bottom:934.386667pt;}
.yaa{bottom:936.693333pt;}
.y25{bottom:938.310833pt;}
.y36{bottom:939.400757pt;}
.ycf{bottom:939.840000pt;}
.y1b0{bottom:942.124000pt;}
.y118{bottom:942.134667pt;}
.y1a2{bottom:945.093333pt;}
.y50{bottom:945.621333pt;}
.y1e4{bottom:947.586667pt;}
.y1dc{bottom:947.760000pt;}
.y98{bottom:949.076000pt;}
.yf4{bottom:949.461333pt;}
.y29c{bottom:951.300000pt;}
.y17d{bottom:951.718667pt;}
.y201{bottom:951.728000pt;}
.y255{bottom:951.978667pt;}
.y134{bottom:952.666667pt;}
.y278{bottom:953.880000pt;}
.y213{bottom:954.242667pt;}
.y237{bottom:954.957333pt;}
.y15a{bottom:955.192000pt;}
.yce{bottom:974.373333pt;}
.y1a1{bottom:978.560000pt;}
.yf3{bottom:984.528000pt;}
.y159{bottom:989.325333pt;}
.y4f{bottom:989.354667pt;}
.y212{bottom:992.242667pt;}
.y4e{bottom:1008.821333pt;}
.y4d{bottom:1027.354667pt;}
.y4c{bottom:1045.754667pt;}
.h3{height:34.968750pt;}
.h14{height:38.828125pt;}
.h22{height:40.769531pt;}
.h2a{height:44.652344pt;}
.h1{height:44.802083pt;}
.ha{height:46.593750pt;}
.hd{height:47.660417pt;}
.h2{height:48.140625pt;}
.h23{height:48.953125pt;}
.h21{height:50.476562pt;}
.h5{height:51.782178pt;}
.h5e{height:52.684094pt;}
.h39{height:52.711009pt;}
.h77{height:52.769233pt;}
.h50{height:52.944453pt;}
.h81{height:53.007070pt;}
.h4b{height:53.029591pt;}
.h72{height:53.177896pt;}
.h54{height:53.222388pt;}
.h25{height:53.308075pt;}
.h6c{height:53.370693pt;}
.h1c{height:53.442649pt;}
.h3f{height:53.572828pt;}
.h32{height:53.734316pt;}
.h45{height:54.017194pt;}
.h5a{height:54.057292pt;}
.h7c{height:54.111121pt;}
.h2c{height:54.142430pt;}
.hf{height:54.380268pt;}
.h16{height:54.443435pt;}
.h66{height:54.927899pt;}
.hb{height:58.242188pt;}
.hc{height:62.125000pt;}
.h37{height:73.773438pt;}
.h6{height:359.126699pt;}
.h5f{height:365.381789pt;}
.h3a{height:365.568451pt;}
.h78{height:365.972251pt;}
.h51{height:367.187460pt;}
.h82{height:367.621735pt;}
.h4c{height:367.777922pt;}
.h73{height:368.806469pt;}
.h55{height:369.115033pt;}
.h26{height:369.709305pt;}
.h6d{height:370.143580pt;}
.h1d{height:370.642616pt;}
.h40{height:371.545452pt;}
.h33{height:372.665425pt;}
.h46{height:374.627283pt;}
.h5b{height:374.905372pt;}
.h7d{height:375.278696pt;}
.h2d{height:375.495834pt;}
.h10{height:377.145318pt;}
.h7{height:377.563749pt;}
.h17{height:377.583403pt;}
.h67{height:380.943323pt;}
.h60{height:384.139965pt;}
.h3b{height:384.336211pt;}
.h79{height:384.760741pt;}
.h52{height:386.038337pt;}
.h83{height:386.494908pt;}
.h4d{height:386.659113pt;}
.h74{height:387.740464pt;}
.h56{height:388.064869pt;}
.h27{height:388.689650pt;}
.h6e{height:389.146221pt;}
.h1e{height:389.670876pt;}
.h41{height:390.620062pt;}
.h34{height:391.797533pt;}
.h47{height:393.860110pt;}
.h5c{height:394.152476pt;}
.h7e{height:394.544966pt;}
.h2e{height:394.773251pt;}
.h11{height:396.507418pt;}
.h18{height:396.967994pt;}
.h68{height:400.500407pt;}
.h4{height:995.522880pt;}
.h5d{height:1012.862400pt;}
.h38{height:1013.379840pt;}
.h76{height:1014.499200pt;}
.h4f{height:1017.867840pt;}
.h80{height:1019.071680pt;}
.h4a{height:1019.504640pt;}
.h71{height:1022.355840pt;}
.h53{height:1023.211200pt;}
.h24{height:1024.858560pt;}
.h6b{height:1026.062400pt;}
.h1b{height:1027.445760pt;}
.h3e{height:1029.948480pt;}
.h31{height:1033.053120pt;}
.h44{height:1038.491520pt;}
.h59{height:1039.262400pt;}
.h7b{height:1040.297280pt;}
.h2b{height:1040.899200pt;}
.he{height:1045.471680pt;}
.h15{height:1046.686080pt;}
.h65{height:1056.000000pt;}
.h48{height:1060.466667pt;}
.h49{height:1060.666667pt;}
.h36{height:1061.333333pt;}
.h75{height:1061.400000pt;}
.h35{height:1061.466667pt;}
.h3c{height:1061.733333pt;}
.h3d{height:1062.000000pt;}
.h1f{height:1062.400000pt;}
.h20{height:1062.666667pt;}
.h4e{height:1064.000000pt;}
.h69{height:1065.266667pt;}
.h6a{height:1065.333333pt;}
.h43{height:1066.000000pt;}
.h42{height:1066.200000pt;}
.h58{height:1067.333333pt;}
.h57{height:1067.466667pt;}
.h70{height:1068.666667pt;}
.h6f{height:1068.733333pt;}
.h61{height:1069.066667pt;}
.h62{height:1069.333333pt;}
.h7f{height:1070.000000pt;}
.h28{height:1070.333333pt;}
.h29{height:1070.666667pt;}
.h2f{height:1071.000000pt;}
.h30{height:1071.333333pt;}
.h0{height:1072.000000pt;}
.h7a{height:1072.333333pt;}
.h9{height:1072.666667pt;}
.h8{height:1072.933333pt;}
.h19{height:1074.533333pt;}
.h1a{height:1074.666667pt;}
.h13{height:1076.666667pt;}
.h12{height:1076.733333pt;}
.h64{height:1094.000000pt;}
.h63{height:1094.066667pt;}
.w2{width:359.126699pt;}
.w31{width:365.381789pt;}
.w1a{width:365.568451pt;}
.w3f{width:365.972251pt;}
.w27{width:367.187460pt;}
.w47{width:367.621735pt;}
.w24{width:367.777922pt;}
.w3b{width:368.806469pt;}
.w2a{width:369.115033pt;}
.wf{width:369.709305pt;}
.w39{width:370.143580pt;}
.wc{width:370.642616pt;}
.w1d{width:371.545452pt;}
.w16{width:372.665425pt;}
.w20{width:374.627283pt;}
.w2e{width:374.905372pt;}
.w43{width:375.278696pt;}
.w13{width:375.495834pt;}
.w6{width:377.145318pt;}
.w9{width:377.583403pt;}
.w35{width:380.943323pt;}
.w0{width:769.266667pt;}
.w1{width:769.333333pt;}
.w30{width:782.666400pt;}
.w2f{width:782.666667pt;}
.w19{width:783.066240pt;}
.w17{width:783.066667pt;}
.w18{width:783.333333pt;}
.w3e{width:783.931200pt;}
.w3c{width:783.933333pt;}
.w3d{width:784.000000pt;}
.w25{width:786.533333pt;}
.w26{width:786.666667pt;}
.w45{width:787.333333pt;}
.w46{width:787.464480pt;}
.w44{width:787.466667pt;}
.w23{width:787.799040pt;}
.w21{width:787.800000pt;}
.w22{width:788.000000pt;}
.w3a{width:790.000000pt;}
.w29{width:790.663200pt;}
.w28{width:790.666667pt;}
.wd{width:791.933333pt;}
.we{width:792.000000pt;}
.w37{width:792.666667pt;}
.w38{width:792.866400pt;}
.w36{width:792.866667pt;}
.wa{width:793.933333pt;}
.wb{width:794.000000pt;}
.w1b{width:795.866667pt;}
.w1c{width:796.000000pt;}
.w15{width:798.000000pt;}
.w14{width:798.266667pt;}
.w1e{width:802.466667pt;}
.w1f{width:802.666667pt;}
.w2d{width:803.066400pt;}
.w2b{width:803.066667pt;}
.w2c{width:803.333333pt;}
.w42{width:803.866080pt;}
.w40{width:803.866667pt;}
.w41{width:804.000000pt;}
.w12{width:804.331200pt;}
.w10{width:804.333333pt;}
.w11{width:804.666667pt;}
.w5{width:807.864480pt;}
.w3{width:807.866667pt;}
.w4{width:808.000000pt;}
.w8{width:808.666667pt;}
.w7{width:808.800000pt;}
.w34{width:816.000000pt;}
.w32{width:817.266667pt;}
.w33{width:817.333333pt;}
.x0{left:0.000000pt;}
.x5{left:8.933333pt;}
.x9{left:50.527371pt;}
.x28{left:52.147604pt;}
.x1c{left:53.062502pt;}
.xd9{left:84.533333pt;}
.xcf{left:101.200000pt;}
.x2e{left:105.600000pt;}
.x30{left:106.933333pt;}
.x32{left:107.866667pt;}
.x34{left:109.466667pt;}
.x36{left:110.666667pt;}
.x38{left:111.600000pt;}
.x6{left:113.127600pt;}
.xda{left:114.266667pt;}
.x3d{left:115.200000pt;}
.x25{left:116.755200pt;}
.x1a{left:118.803600pt;}
.xe4{left:120.000000pt;}
.xc2{left:121.600000pt;}
.xc3{left:122.533333pt;}
.xc6{left:124.133333pt;}
.xca{left:125.333333pt;}
.x8f{left:126.266667pt;}
.x49{left:127.333333pt;}
.xe5{left:128.400000pt;}
.xe6{left:129.333333pt;}
.xe7{left:130.266667pt;}
.xb9{left:133.466667pt;}
.x44{left:135.333333pt;}
.xea{left:138.400000pt;}
.x56{left:139.466667pt;}
.xb4{left:140.800000pt;}
.xb7{left:141.733333pt;}
.x79{left:142.800000pt;}
.x2a{left:144.133333pt;}
.x2f{left:145.200000pt;}
.x31{left:146.133333pt;}
.x33{left:147.333333pt;}
.x35{left:149.333333pt;}
.xde{left:151.466667pt;}
.xe0{left:153.066667pt;}
.xdd{left:160.800000pt;}
.xe1{left:162.000000pt;}
.xae{left:164.266667pt;}
.x2{left:168.933333pt;}
.xdb{left:172.133333pt;}
.x1e{left:174.133333pt;}
.xb5{left:178.933333pt;}
.x3{left:180.133333pt;}
.xbd{left:181.466667pt;}
.xc0{left:182.400000pt;}
.xcc{left:183.733333pt;}
.x19{left:185.066667pt;}
.xa1{left:186.533333pt;}
.xd1{left:189.200000pt;}
.x42{left:190.800000pt;}
.x2c{left:191.733333pt;}
.x4c{left:192.933333pt;}
.x55{left:194.800000pt;}
.x5b{left:195.866667pt;}
.x72{left:197.466667pt;}
.x7c{left:199.066667pt;}
.xdf{left:200.000000pt;}
.x4{left:200.933333pt;}
.x8{left:205.070684pt;}
.xa3{left:206.400000pt;}
.xe3{left:207.333333pt;}
.x61{left:208.749092pt;}
.xb2{left:210.010758pt;}
.x27{left:211.646572pt;}
.x1d{left:213.066667pt;}
.x3a{left:214.417886pt;}
.x1b{left:215.359785pt;}
.x73{left:216.933333pt;}
.x70{left:218.000000pt;}
.x7f{left:220.133333pt;}
.xa4{left:225.200000pt;}
.x1f{left:226.133333pt;}
.xa9{left:227.466667pt;}
.xaa{left:228.666667pt;}
.xab{left:230.000000pt;}
.x96{left:233.200000pt;}
.x9b{left:235.333333pt;}
.x9e{left:236.666667pt;}
.xac{left:242.133333pt;}
.xf{left:247.200000pt;}
.x12{left:249.466667pt;}
.x90{left:262.133333pt;}
.xe2{left:274.000000pt;}
.xa{left:275.466667pt;}
.x22{left:277.733333pt;}
.x23{left:278.800000pt;}
.xd2{left:286.400000pt;}
.xa5{left:294.133333pt;}
.x9f{left:296.533333pt;}
.x81{left:297.600000pt;}
.x10{left:305.466667pt;}
.x11{left:306.533333pt;}
.x6c{left:310.133333pt;}
.x2b{left:311.333333pt;}
.x13{left:315.733333pt;}
.x40{left:316.800000pt;}
.x4a{left:318.133333pt;}
.x20{left:322.400000pt;}
.x15{left:326.000000pt;}
.xaf{left:327.466667pt;}
.x3c{left:331.200000pt;}
.xb3{left:338.266667pt;}
.x2d{left:343.466667pt;}
.x7a{left:344.666667pt;}
.x4d{left:347.466667pt;}
.xce{left:349.333333pt;}
.x5e{left:350.400000pt;}
.xb{left:352.400000pt;}
.xd{left:353.466667pt;}
.x47{left:355.466667pt;}
.x71{left:361.600000pt;}
.xc7{left:364.000000pt;}
.xe{left:371.600000pt;}
.x16{left:374.400000pt;}
.x75{left:376.000000pt;}
.xc{left:382.133333pt;}
.x7{left:384.635273pt;}
.x58{left:386.800000pt;}
.x97{left:388.800000pt;}
.x60{left:391.534579pt;}
.xb1{left:393.900987pt;}
.xe9{left:395.002592pt;}
.x37{left:395.969555pt;}
.x26{left:396.969159pt;}
.x85{left:397.936123pt;}
.x3b{left:399.135647pt;}
.xa0{left:401.236855pt;}
.x39{left:402.167098pt;}
.x14{left:403.466667pt;}
.x21{left:404.402947pt;}
.x63{left:407.066667pt;}
.x69{left:408.000000pt;}
.xbe{left:410.000000pt;}
.x24{left:412.800000pt;}
.xc4{left:419.066667pt;}
.xd4{left:420.000000pt;}
.x45{left:421.200000pt;}
.x41{left:430.000000pt;}
.x48{left:431.066667pt;}
.x51{left:432.400000pt;}
.x80{left:434.800000pt;}
.xa2{left:436.933333pt;}
.xb6{left:438.533333pt;}
.x7d{left:440.400000pt;}
.x87{left:443.066667pt;}
.x1{left:445.200000pt;}
.x6e{left:447.333333pt;}
.xcd{left:450.000000pt;}
.x8b{left:453.466667pt;}
.x67{left:455.733333pt;}
.x83{left:459.866667pt;}
.x29{left:463.733333pt;}
.x9c{left:467.333333pt;}
.xba{left:474.266667pt;}
.xa7{left:476.400000pt;}
.x77{left:477.733333pt;}
.x4f{left:479.333333pt;}
.x8d{left:482.133333pt;}
.x9a{left:485.200000pt;}
.x3e{left:486.666667pt;}
.xc8{left:488.000000pt;}
.x53{left:489.600000pt;}
.x6d{left:495.066667pt;}
.xb0{left:498.533333pt;}
.xd7{left:500.666667pt;}
.xbf{left:504.000000pt;}
.xad{left:508.000000pt;}
.x92{left:511.600000pt;}
.x93{left:512.533333pt;}
.x43{left:515.866667pt;}
.x76{left:517.866667pt;}
.x5f{left:519.733333pt;}
.x89{left:529.466667pt;}
.x6b{left:531.866667pt;}
.x7e{left:534.666667pt;}
.x46{left:538.133333pt;}
.x6a{left:541.200000pt;}
.x99{left:542.533333pt;}
.x52{left:545.600000pt;}
.x82{left:548.133333pt;}
.xd5{left:553.733333pt;}
.x5c{left:556.533333pt;}
.x64{left:563.200000pt;}
.x50{left:573.466667pt;}
.xa6{left:579.466667pt;}
.x65{left:582.000000pt;}
.x8c{left:586.666667pt;}
.xc5{left:590.400000pt;}
.x94{left:592.666667pt;}
.x78{left:595.200000pt;}
.xdc{left:599.466667pt;}
.xc9{left:600.800000pt;}
.xbc{left:609.600000pt;}
.x95{left:612.400000pt;}
.x17{left:614.266667pt;}
.x8e{left:615.466667pt;}
.xd6{left:616.800000pt;}
.x18{left:618.133333pt;}
.x88{left:619.066667pt;}
.xa8{left:622.800000pt;}
.x91{left:626.000000pt;}
.x8a{left:629.333333pt;}
.x68{left:630.400000pt;}
.x59{left:631.333333pt;}
.x74{left:632.400000pt;}
.x4e{left:634.266667pt;}
.x57{left:635.466667pt;}
.x5d{left:636.533333pt;}
.x66{left:639.733333pt;}
.x6f{left:640.666667pt;}
.x3f{left:642.400000pt;}
.x4b{left:643.466667pt;}
.x54{left:644.800000pt;}
.x5a{left:645.733333pt;}
.xb8{left:648.666667pt;}
.xbb{left:649.600000pt;}
.xd0{left:652.533333pt;}
.xd3{left:653.866667pt;}
.x98{left:664.000000pt;}
.x9d{left:665.733333pt;}
.x62{left:671.333333pt;}
.x7b{left:673.600000pt;}
.x84{left:674.533333pt;}
.xd8{left:676.666667pt;}
.x86{left:680.000000pt;}
.xc1{left:681.333333pt;}
.xcb{left:684.400000pt;}
.xe8{left:686.400000pt;}
}




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