
    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_46fba4b5618e845a104e31c8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9d2ca59b71167ccf9e3ee604.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;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_617e44cb913d75a04b5cdc60.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_e18fce7320497b8d86a6cbe8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_b8f2dd5437efee8deead6e21.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.779785;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_f108bbfbe70b70a988d6e7fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.068000;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_9bf97e8c8fe896643f4f4813.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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_7e50f5f202c228987c0843a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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_cb80de6d83c32d4535a81c2c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f4c0d9bfb04d8d88d66e19ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf60c38c6e030d3a7625d37c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d14d8435b5bec4b2a9320558.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c5c5b64685ddb098817bfb4e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ec94f31892a8dba874a177e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.860840;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5832e800d58283cf668d438d.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b373b5f9e87ef9671db54b47.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21829addbaef6dc8240bcf82.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;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;}
.m1f{transform:matrix(0.000000,-0.248082,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248082,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248082,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.248373,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248373,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248373,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.248453,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248453,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248453,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.248510,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248510,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248510,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.000000,-0.248602,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248602,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248602,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.248662,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248662,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248662,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.249111,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249111,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249111,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249238,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249238,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249238,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249499,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249499,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249499,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.254785,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.254785,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.254785,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.146820,0.202346,-0.202346,0.146820,0,0);-ms-transform:matrix(0.146820,0.202346,-0.202346,0.146820,0,0);-webkit-transform:matrix(0.146820,0.202346,-0.202346,0.146820,0,0);}
.m0{transform:matrix(0.155777,0.195534,-0.195534,0.155777,0,0);-ms-transform:matrix(0.155777,0.195534,-0.195534,0.155777,0,0);-webkit-transform:matrix(0.155777,0.195534,-0.195534,0.155777,0,0);}
.m11{transform:matrix(0.229627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229627,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.232011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232011,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.232448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232448,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m12{transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248373,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249499,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m20{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254785,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v6{vertical-align:-121.680097px;}
.v2{vertical-align:-38.880031px;}
.v7{vertical-align:-30.240024px;}
.v9{vertical-align:-18.000014px;}
.vc{vertical-align:-15.120012px;}
.v8{vertical-align:-12.240010px;}
.va{vertical-align:-10.800009px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.440001px;}
.v5{vertical-align:4.322403px;}
.v1{vertical-align:38.880031px;}
.v4{vertical-align:45.362436px;}
.v3{vertical-align:62.640050px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.037440px;}
.ls7{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.202169px;}
.lsd{letter-spacing:0.208080px;}
.lsb{letter-spacing:0.230132px;}
.ls10{letter-spacing:0.337984px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.385920px;}
.lse{letter-spacing:0.530640px;}
.lsa{letter-spacing:5.580004px;}
.ls4{letter-spacing:11.160997px;}
.ls8{letter-spacing:13.500011px;}
.ls5{letter-spacing:194.939940px;}
.ls3{letter-spacing:333.180267px;}
.ls6{letter-spacing:815.625333px;}
.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;}
}
.ws5{word-spacing:-50.544040px;}
.ws25{word-spacing:-24.300019px;}
.ws11{word-spacing:-23.940019px;}
.ws4{word-spacing:-21.420017px;}
.ws3{word-spacing:-21.060017px;}
.ws0{word-spacing:-17.994254px;}
.wsf{word-spacing:-17.199763px;}
.ws10{word-spacing:-17.181748px;}
.ws14{word-spacing:-15.840013px;}
.ws12{word-spacing:-14.284830px;}
.ws2{word-spacing:-13.500011px;}
.ws1a{word-spacing:-13.393517px;}
.ws22{word-spacing:-13.316055px;}
.ws18{word-spacing:-13.298241px;}
.ws24{word-spacing:-13.276223px;}
.ws1c{word-spacing:-13.273821px;}
.ws20{word-spacing:-13.250402px;}
.ws16{word-spacing:-13.029225px;}
.ws26{word-spacing:-11.387169px;}
.ws27{word-spacing:-11.338569px;}
.ws1d{word-spacing:-9.796839px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:7.143323px;}
.wsc{word-spacing:16.733332px;}
.ws7{word-spacing:56.647036px;}
.ws1f{word-spacing:61.870697px;}
.ws15{word-spacing:81.006632px;}
.ws17{word-spacing:82.131337px;}
.wsd{word-spacing:91.992287px;}
.ws6{word-spacing:111.562160px;}
.wsb{word-spacing:112.872345px;}
.wse{word-spacing:168.807899px;}
.ws1e{word-spacing:196.684230px;}
.ws1b{word-spacing:214.975741px;}
.ws19{word-spacing:232.943612px;}
.ws8{word-spacing:295.687404px;}
.wsa{word-spacing:303.341453px;}
.ws23{word-spacing:318.569182px;}
.ws21{word-spacing:328.200999px;}
.ws13{word-spacing:796.739153px;}
._77{margin-left:-2809.230850px;}
._8a{margin-left:-2807.919961px;}
._3d{margin-left:-2788.583147px;}
._3c{margin-left:-2787.475916px;}
._4b{margin-left:-2775.982352px;}
._4a{margin-left:-2774.658054px;}
._59{margin-left:-2767.208201px;}
._5d{margin-left:-2766.189215px;}
._4c{margin-left:-2754.793294px;}
._e{margin-left:-2752.683944px;}
._1c{margin-left:-2751.114679px;}
._36{margin-left:-2739.663466px;}
._35{margin-left:-2738.231575px;}
._2e{margin-left:-2732.511808px;}
._a{margin-left:-2716.873286px;}
._49{margin-left:-2675.285566px;}
._8d{margin-left:-2644.001450px;}
._7e{margin-left:-2640.666005px;}
._60{margin-left:-2551.679748px;}
._87{margin-left:-2537.507240px;}
._7d{margin-left:-2480.595896px;}
._5c{margin-left:-2468.432689px;}
._6d{margin-left:-2436.822487px;}
._74{margin-left:-2431.898514px;}
._4{margin-left:-2403.630899px;}
._50{margin-left:-2365.860924px;}
._6f{margin-left:-2360.260300px;}
._5{margin-left:-2317.523848px;}
._8e{margin-left:-2303.648294px;}
._4e{margin-left:-2296.205638px;}
._6{margin-left:-2292.807668px;}
._40{margin-left:-2275.776081px;}
._3b{margin-left:-2243.285030px;}
._62{margin-left:-2226.315913px;}
._7b{margin-left:-2195.989488px;}
._2{margin-left:-2193.838200px;}
._73{margin-left:-2173.163161px;}
._65{margin-left:-2119.926119px;}
._1{margin-left:-2115.917207px;}
._3e{margin-left:-2039.369758px;}
._88{margin-left:-2020.328771px;}
._55{margin-left:-1984.863703px;}
._5f{margin-left:-1978.632669px;}
._7f{margin-left:-1960.204271px;}
._5e{margin-left:-1947.940539px;}
._75{margin-left:-1938.909406px;}
._72{margin-left:-1910.377611px;}
._80{margin-left:-1894.703547px;}
._81{margin-left:-1873.126056px;}
._5b{margin-left:-1854.480255px;}
._79{margin-left:-1823.967905px;}
._42{margin-left:-1772.854361px;}
._89{margin-left:-1754.170938px;}
._6c{margin-left:-1679.470175px;}
._29{margin-left:-1677.950348px;}
._86{margin-left:-1655.740491px;}
._39{margin-left:-1615.990388px;}
._f{margin-left:-1540.914667px;}
._3{margin-left:-1440.181152px;}
._6b{margin-left:-1412.173761px;}
._82{margin-left:-1390.907215px;}
._15{margin-left:-1281.786808px;}
._64{margin-left:-1264.480746px;}
._83{margin-left:-1257.470949px;}
._6a{margin-left:-1248.608245px;}
._78{margin-left:-1227.182573px;}
._63{margin-left:-1143.598930px;}
._76{margin-left:-1127.971057px;}
._67{margin-left:-1087.381289px;}
._6e{margin-left:-1054.360004px;}
._7c{margin-left:-1051.878993px;}
._41{margin-left:-967.761214px;}
._70{margin-left:-926.440121px;}
._58{margin-left:-904.665404px;}
._18{margin-left:-838.980866px;}
._56{margin-left:-800.080020px;}
._51{margin-left:-760.234468px;}
._7a{margin-left:-743.769606px;}
._33{margin-left:-651.665693px;}
._5a{margin-left:-646.129957px;}
._2a{margin-left:-637.597601px;}
._8b{margin-left:-625.575380px;}
._84{margin-left:-618.499215px;}
._27{margin-left:-609.667948px;}
._61{margin-left:-604.431124px;}
._52{margin-left:-552.960442px;}
._26{margin-left:-545.012356px;}
._8c{margin-left:-520.106816px;}
._43{margin-left:-449.460360px;}
._85{margin-left:-426.600341px;}
._3f{margin-left:-237.060190px;}
._10{margin-left:-201.060161px;}
._7{margin-left:-167.418854px;}
._3a{margin-left:-53.999568px;}
._66{margin-left:-5.312057px;}
._1b{margin-left:-2.077307px;}
._0{margin-left:-1.005469px;}
._9{width:1.278366px;}
._21{width:2.368084px;}
._20{width:3.401635px;}
._1d{width:5.331264px;}
._1a{width:6.927462px;}
._2c{width:8.678856px;}
._2b{width:9.984220px;}
._13{width:11.150660px;}
._14{width:13.049273px;}
._25{width:14.191609px;}
._24{width:15.253523px;}
._12{width:16.805672px;}
._11{width:18.236222px;}
._19{width:19.905919px;}
._8f{width:20.938759px;}
._2d{width:22.153006px;}
._8{width:23.276221px;}
._23{width:24.594974px;}
._38{width:26.366251px;}
._1e{width:27.974940px;}
._1f{width:28.981566px;}
._28{width:30.717754px;}
._34{width:31.731528px;}
._37{width:33.451381px;}
._c{width:34.749459px;}
._d{width:36.054992px;}
._22{width:37.745947px;}
._53{width:38.897051px;}
._9a{width:40.362733px;}
._68{width:41.390693px;}
._69{width:42.745849px;}
._b{width:44.582135px;}
._30{width:46.053967px;}
._2f{width:47.424296px;}
._31{width:48.583239px;}
._54{width:49.663239px;}
._4d{width:50.996213px;}
._57{width:53.174934px;}
._4f{width:54.918773px;}
._32{width:56.017493px;}
._71{width:58.289813px;}
._16{width:76.934927px;}
._90{width:97.250539px;}
._17{width:191.340362px;}
._48{width:192.969089px;}
._96{width:216.561241px;}
._95{width:225.921099px;}
._91{width:230.293634px;}
._92{width:238.242060px;}
._93{width:243.642259px;}
._94{width:244.898658px;}
._47{width:285.487490px;}
._97{width:333.538022px;}
._99{width:339.085722px;}
._98{width:340.559675px;}
._44{width:455.137669px;}
._46{width:808.143764px;}
._45{width:987.822020px;}
.fc4{color:transparent;}
.fc5{color:rgb(128,128,128);}
.fc3{color:rgb(101,101,101);}
.fc2{color:rgb(43,43,43);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(214,241,254);}
.fs1a{font-size:21.982338px;}
.fs18{font-size:29.401944px;}
.fs24{font-size:35.240428px;}
.fs1c{font-size:36.821549px;}
.fs2c{font-size:37.794270px;}
.fs29{font-size:37.957710px;}
.fs1b{font-size:41.805393px;}
.fsb{font-size:41.999074px;}
.fs17{font-size:43.965395px;}
.fs2b{font-size:45.354276px;}
.fs28{font-size:45.548676px;}
.fs1e{font-size:46.867717px;}
.fs2a{font-size:47.421398px;}
.fs25{font-size:47.663318px;}
.fs21{font-size:47.747558px;}
.fs27{font-size:47.756198px;}
.fs1f{font-size:47.835398px;}
.fs26{font-size:47.899478px;}
.fs20{font-size:48.178119px;}
.fs8{font-size:48.240039px;}
.fs3{font-size:51.120041px;}
.fs19{font-size:51.384281px;}
.fs23{font-size:52.779642px;}
.fs7{font-size:54.000043px;}
.fs22{font-size:55.828125px;}
.fs16{font-size:58.747727px;}
.fs9{font-size:59.760048px;}
.fs4{font-size:60.000000px;}
.fs13{font-size:61.804849px;}
.fs11{font-size:61.869649px;}
.fs14{font-size:62.420450px;}
.fs12{font-size:62.488250px;}
.fs1d{font-size:63.360051px;}
.fs2{font-size:66.240053px;}
.fsd{font-size:66.315653px;}
.fs1{font-size:72.000058px;}
.fs6{font-size:84.240067px;}
.fsc{font-size:89.031111px;}
.fs15{font-size:95.760077px;}
.fsa{font-size:119.998296px;}
.fse{font-size:123.671499px;}
.fsf{font-size:172.063338px;}
.fs10{font-size:229.418584px;}
.fs5{font-size:287.863167px;}
.fs0{font-size:287.950028px;}
.y232{bottom:-0.000404px;}
.y0{bottom:0.000000px;}
.y2b5{bottom:0.179682px;}
.y252{bottom:0.179688px;}
.y254{bottom:0.179694px;}
.y2b9{bottom:0.179697px;}
.y256{bottom:0.179700px;}
.y258{bottom:0.179703px;}
.y29d{bottom:0.179706px;}
.y25a{bottom:0.179708px;}
.y25c{bottom:0.179713px;}
.y2bb{bottom:0.179716px;}
.y25e{bottom:0.179719px;}
.y260{bottom:0.179721px;}
.y2bd{bottom:0.179723px;}
.y262{bottom:0.179725px;}
.y2bf{bottom:0.179726px;}
.y2a3{bottom:0.179728px;}
.y264{bottom:0.179732px;}
.y2a5{bottom:0.179734px;}
.y2a7{bottom:0.179737px;}
.y2c2{bottom:0.179738px;}
.y1f0{bottom:0.179744px;}
.y2c4{bottom:0.179745px;}
.y268{bottom:0.179746px;}
.y2c6{bottom:0.179748px;}
.y1f2{bottom:0.179750px;}
.y26b{bottom:0.179752px;}
.y2c8{bottom:0.179754px;}
.y1f4{bottom:0.179756px;}
.y26d{bottom:0.179757px;}
.y1f6{bottom:0.179759px;}
.y26f{bottom:0.179762px;}
.y1f8{bottom:0.179764px;}
.y271{bottom:0.179768px;}
.y1fa{bottom:0.179769px;}
.y273{bottom:0.179773px;}
.y1fc{bottom:0.179775px;}
.y1fe{bottom:0.179777px;}
.y136{bottom:0.179783px;}
.y277{bottom:0.179784px;}
.y17c{bottom:0.179788px;}
.y1bf{bottom:0.179790px;}
.y1c1{bottom:0.179792px;}
.y17e{bottom:0.179794px;}
.y180{bottom:0.179797px;}
.y1c3{bottom:0.179799px;}
.y182{bottom:0.179803px;}
.y1c5{bottom:0.179805px;}
.y184{bottom:0.179808px;}
.y206{bottom:0.179810px;}
.y1c7{bottom:0.179812px;}
.y186{bottom:0.179813px;}
.y1c9{bottom:0.179814px;}
.y188{bottom:0.179816px;}
.y1cb{bottom:0.179818px;}
.y1cd{bottom:0.179820px;}
.y18a{bottom:0.179823px;}
.y18c{bottom:0.179826px;}
.y20b{bottom:0.179829px;}
.y18e{bottom:0.179832px;}
.y20d{bottom:0.179834px;}
.y190{bottom:0.179838px;}
.y20f{bottom:0.179840px;}
.y192{bottom:0.179845px;}
.y194{bottom:0.179847px;}
.y196{bottom:0.179854px;}
.y198{bottom:0.179859px;}
.y19a{bottom:0.179862px;}
.y19c{bottom:0.179868px;}
.y19e{bottom:0.179870px;}
.y1a0{bottom:0.179875px;}
.y266{bottom:0.359737px;}
.y15a{bottom:2.519484px;}
.y2c{bottom:2.520242px;}
.y1d{bottom:2.520426px;}
.y19{bottom:2.520449px;}
.y15{bottom:2.520485px;}
.y12{bottom:2.520508px;}
.yf{bottom:2.520531px;}
.y10d{bottom:3.239710px;}
.ycd{bottom:5.759568px;}
.yb9{bottom:6.479557px;}
.yb4{bottom:6.839557px;}
.yca{bottom:6.839632px;}
.yd1{bottom:9.539579px;}
.ycf{bottom:9.539624px;}
.yc6{bottom:9.719624px;}
.y34{bottom:48.000000px;}
.y8f{bottom:57.000946px;}
.y109{bottom:74.280959px;}
.y8e{bottom:74.281559px;}
.y108{bottom:91.561573px;}
.y173{bottom:112.801590px;}
.y156{bottom:115.861593px;}
.y2df{bottom:116.221593px;}
.y1e8{bottom:121.261597px;}
.y12f{bottom:122.161598px;}
.y291{bottom:124.861600px;}
.y301{bottom:126.301601px;}
.y1b6{bottom:130.261604px;}
.y249{bottom:130.441604px;}
.y228{bottom:131.161605px;}
.y172{bottom:133.501607px;}
.y155{bottom:136.561609px;}
.y2de{bottom:136.921610px;}
.yb0{bottom:141.421013px;}
.y1e7{bottom:141.961614px;}
.y33{bottom:142.020114px;}
.y12e{bottom:142.861614px;}
.y290{bottom:145.561616px;}
.y8a{bottom:149.199000px;}
.yf9{bottom:150.421020px;}
.ya4{bottom:150.421620px;}
.y1b5{bottom:150.961621px;}
.y248{bottom:151.141621px;}
.y227{bottom:151.861621px;}
.y171{bottom:154.201623px;}
.y154{bottom:157.261626px;}
.y2dd{bottom:157.621626px;}
.y4d{bottom:162.481630px;}
.y1e6{bottom:162.661630px;}
.y12d{bottom:163.561631px;}
.y28f{bottom:166.261633px;}
.y89{bottom:166.699500px;}
.yf5{bottom:171.661637px;}
.y247{bottom:171.841637px;}
.y226{bottom:172.561638px;}
.y170{bottom:174.901640px;}
.y153{bottom:177.961642px;}
.y2dc{bottom:178.321643px;}
.yda{bottom:180.121644px;}
.ye6{bottom:180.661045px;}
.y1e5{bottom:183.361647px;}
.y88{bottom:184.200000px;}
.y12c{bottom:184.261647px;}
.y28e{bottom:186.961650px;}
.yaf{bottom:189.661052px;}
.y1b4{bottom:192.361654px;}
.y246{bottom:192.541654px;}
.y225{bottom:193.261655px;}
.y300{bottom:195.241656px;}
.y16f{bottom:195.601656px;}
.yc2{bottom:196.141657px;}
.yf8{bottom:198.661059px;}
.ya3{bottom:198.661659px;}
.y2db{bottom:199.021659px;}
.y87{bottom:201.700500px;}
.y1e4{bottom:204.061663px;}
.y12b{bottom:204.961664px;}
.y28d{bottom:207.661666px;}
.y4c{bottom:210.721669px;}
.y1b3{bottom:213.061670px;}
.y245{bottom:213.241671px;}
.y224{bottom:213.961671px;}
.y2ff{bottom:215.941673px;}
.y16e{bottom:216.301673px;}
.y86{bottom:219.201000px;}
.y152{bottom:219.361675px;}
.y2da{bottom:219.721676px;}
.yf4{bottom:220.081676px;}
.y1e3{bottom:224.581680px;}
.y12a{bottom:225.661681px;}
.y32{bottom:225.720181px;}
.y28c{bottom:228.361683px;}
.yd9{bottom:228.541683px;}
.ye5{bottom:229.081083px;}
.y1b2{bottom:233.761687px;}
.y244{bottom:233.941687px;}
.y223{bottom:234.661688px;}
.y2fe{bottom:236.641689px;}
.y85{bottom:236.701500px;}
.y16d{bottom:237.001690px;}
.yae{bottom:238.081090px;}
.y2d9{bottom:240.421692px;}
.y31{bottom:241.920194px;}
.y151{bottom:242.041694px;}
.y1e2{bottom:245.281696px;}
.yc1{bottom:246.181697px;}
.y129{bottom:246.361697px;}
.yf7{bottom:247.081098px;}
.ya2{bottom:247.081698px;}
.y28b{bottom:249.061699px;}
.y30{bottom:254.160203px;}
.y84{bottom:254.202000px;}
.y1b1{bottom:254.461704px;}
.y243{bottom:254.641704px;}
.y222{bottom:255.361704px;}
.y2fd{bottom:257.341706px;}
.y4b{bottom:259.141707px;}
.y2d8{bottom:261.121709px;}
.y16c{bottom:261.301709px;}
.y150{bottom:264.361711px;}
.y1e1{bottom:265.981713px;}
.y128{bottom:267.061714px;}
.yf3{bottom:268.321715px;}
.y28a{bottom:269.761716px;}
.y83{bottom:271.702500px;}
.y1b0{bottom:275.161720px;}
.y242{bottom:275.341720px;}
.y221{bottom:276.061721px;}
.yd8{bottom:276.781721px;}
.ye4{bottom:277.321122px;}
.y2fc{bottom:278.041722px;}
.y2d7{bottom:281.821725px;}
.yad{bottom:286.321129px;}
.y2f{bottom:286.380229px;}
.y1e0{bottom:286.681729px;}
.y127{bottom:287.761730px;}
.y16b{bottom:288.841731px;}
.y82{bottom:289.203000px;}
.y289{bottom:290.281732px;}
.y14f{bottom:291.901734px;}
.yf6{bottom:295.321136px;}
.ya1{bottom:295.321736px;}
.yc0{bottom:295.861737px;}
.y241{bottom:296.041737px;}
.y220{bottom:296.761737px;}
.y2fb{bottom:298.741739px;}
.y2b{bottom:299.520000px;}
.y2e{bottom:301.860241px;}
.y2a{bottom:302.040242px;}
.y2d6{bottom:302.521742px;}
.y81{bottom:306.703500px;}
.y4a{bottom:307.381746px;}
.y126{bottom:308.461747px;}
.y288{bottom:310.981749px;}
.y16a{bottom:316.381753px;}
.yf2{bottom:316.561753px;}
.y240{bottom:316.741753px;}
.y21f{bottom:317.461754px;}
.y2d{bottom:317.520254px;}
.y14e{bottom:319.441756px;}
.y80{bottom:324.204000px;}
.yd7{bottom:325.021760px;}
.y2d5{bottom:325.381760px;}
.ye3{bottom:325.561160px;}
.y1df{bottom:328.081762px;}
.y125{bottom:329.161763px;}
.y287{bottom:331.681765px;}
.y104{bottom:334.561168px;}
.y1af{bottom:337.261770px;}
.y23f{bottom:337.441770px;}
.y21e{bottom:338.161771px;}
.y7f{bottom:341.704500px;}
.y2fa{bottom:342.301774px;}
.ya0{bottom:343.561175px;}
.yac{bottom:343.561775px;}
.y169{bottom:344.101775px;}
.ybf{bottom:345.901777px;}
.y29{bottom:346.500277px;}
.y14d{bottom:347.161778px;}
.y2d4{bottom:347.521778px;}
.y1de{bottom:348.781779px;}
.y124{bottom:349.861780px;}
.y286{bottom:352.381782px;}
.y49{bottom:355.621784px;}
.y1ae{bottom:357.961786px;}
.y23e{bottom:358.141787px;}
.y21d{bottom:358.861787px;}
.y7e{bottom:359.205000px;}
.y28{bottom:361.980290px;}
.y2f9{bottom:363.181791px;}
.yf1{bottom:364.981792px;}
.y1dd{bottom:369.481796px;}
.y123{bottom:370.561796px;}
.y168{bottom:371.641797px;}
.y285{bottom:373.081798px;}
.yd6{bottom:373.261799px;}
.ye2{bottom:373.981199px;}
.y14c{bottom:374.701800px;}
.y2d3{bottom:375.061800px;}
.y7d{bottom:376.705500px;}
.y27{bottom:377.460302px;}
.y1ad{bottom:378.661803px;}
.y23d{bottom:378.841803px;}
.y21c{bottom:379.561804px;}
.y103{bottom:382.981206px;}
.y2f8{bottom:385.141808px;}
.y1dc{bottom:390.181812px;}
.y122{bottom:391.261813px;}
.y9f{bottom:391.981214px;}
.yab{bottom:391.981814px;}
.y26{bottom:392.940314px;}
.y7c{bottom:394.206000px;}
.ybe{bottom:395.581816px;}
.y284{bottom:395.941817px;}
.y167{bottom:399.361819px;}
.y23c{bottom:399.541820px;}
.y14b{bottom:402.241822px;}
.y2d2{bottom:402.601822px;}
.y48{bottom:404.041823px;}
.y25{bottom:408.420327px;}
.y1db{bottom:410.881829px;}
.y7b{bottom:411.706500px;}
.y121{bottom:411.961830px;}
.y2f7{bottom:412.681830px;}
.yf0{bottom:413.221831px;}
.y283{bottom:418.081834px;}
.y1ac{bottom:420.061836px;}
.yd5{bottom:421.681837px;}
.ye1{bottom:422.221238px;}
.y23b{bottom:422.401838px;}
.y24{bottom:423.900339px;}
.y21b{bottom:424.381840px;}
.y166{bottom:427.801842px;}
.y7a{bottom:429.207000px;}
.y14a{bottom:429.961844px;}
.y2d1{bottom:430.321844px;}
.y102{bottom:431.221245px;}
.y1da{bottom:431.581845px;}
.y23{bottom:439.380352px;}
.y9e{bottom:440.221252px;}
.yaa{bottom:440.221852px;}
.y2f6{bottom:440.401852px;}
.y1ab{bottom:440.761853px;}
.ybd{bottom:444.001855px;}
.y23a{bottom:444.541856px;}
.y120{bottom:445.081856px;}
.y282{bottom:445.801857px;}
.y79{bottom:446.707500px;}
.y165{bottom:448.501859px;}
.y21a{bottom:452.101862px;}
.y47{bottom:452.281862px;}
.y22{bottom:454.860364px;}
.y149{bottom:457.501866px;}
.y2d0{bottom:457.861866px;}
.yef{bottom:461.461869px;}
.y78{bottom:464.208000px;}
.y164{bottom:464.701872px;}
.y15b{bottom:467.401874px;}
.y2f5{bottom:467.941874px;}
.yd4{bottom:469.921876px;}
.y21{bottom:470.340376px;}
.ye0{bottom:470.461276px;}
.y239{bottom:472.261878px;}
.y281{bottom:473.341879px;}
.y1d9{bottom:475.141880px;}
.y159{bottom:477.842400px;}
.y11f{bottom:478.561883px;}
.y101{bottom:479.461284px;}
.y219{bottom:479.641884px;}
.y158{bottom:480.361884px;}
.y77{bottom:481.708500px;}
.y1aa{bottom:482.161886px;}
.y148{bottom:485.041888px;}
.y2cf{bottom:485.401888px;}
.y20{bottom:485.820389px;}
.y9d{bottom:488.461291px;}
.y46{bottom:488.461891px;}
.y2f4{bottom:495.481896px;}
.y1d8{bottom:497.281898px;}
.y76{bottom:499.209000px;}
.y238{bottom:499.801900px;}
.y280{bottom:500.881901px;}
.y1f{bottom:501.300401px;}
.y1a9{bottom:502.861902px;}
.yb6{bottom:505.021904px;}
.y218{bottom:507.181906px;}
.yee{bottom:509.881308px;}
.y147{bottom:512.581910px;}
.y11e{bottom:513.121910px;}
.y75{bottom:516.709500px;}
.y1e{bottom:516.960414px;}
.ydf{bottom:518.881315px;}
.yba{bottom:520.141916px;}
.y2f3{bottom:523.201919px;}
.y45{bottom:524.641920px;}
.y1d7{bottom:525.001920px;}
.y1a8{bottom:526.981922px;}
.yd3{bottom:527.161922px;}
.y237{bottom:527.341922px;}
.y100{bottom:527.881322px;}
.y27f{bottom:528.601923px;}
.y1c{bottom:529.920000px;}
.y1b{bottom:532.440426px;}
.y74{bottom:534.210000px;}
.y217{bottom:534.901928px;}
.ybb{bottom:535.801929px;}
.yb5{bottom:536.521929px;}
.y9c{bottom:536.881330px;}
.ya9{bottom:536.881930px;}
.y2ce{bottom:539.221931px;}
.y146{bottom:540.301932px;}
.y11d{bottom:544.441936px;}
.y2f2{bottom:550.741941px;}
.y73{bottom:551.710500px;}
.y1d6{bottom:552.541942px;}
.ybc{bottom:554.161943px;}
.yb2{bottom:554.701344px;}
.yb7{bottom:554.701944px;}
.y236{bottom:554.881944px;}
.yed{bottom:558.121346px;}
.y18{bottom:558.900000px;}
.y44{bottom:561.001949px;}
.y17{bottom:561.420449px;}
.y2cd{bottom:562.261950px;}
.y216{bottom:562.441950px;}
.yb3{bottom:564.422400px;}
.yb8{bottom:564.782400px;}
.yde{bottom:567.121354px;}
.y145{bottom:567.841954px;}
.y15c{bottom:568.741955px;}
.y1a{bottom:569.160455px;}
.y72{bottom:569.211000px;}
.y11c{bottom:573.781959px;}
.yff{bottom:576.121361px;}
.y16{bottom:576.900462px;}
.y27e{bottom:577.741962px;}
.y2f1{bottom:578.461963px;}
.ycc{bottom:579.362400px;}
.y1d5{bottom:580.081964px;}
.y235{bottom:581.161965px;}
.y1a7{bottom:582.241966px;}
.y2cc{bottom:582.961966px;}
.y9b{bottom:585.121368px;}
.ya8{bottom:585.121968px;}
.y71{bottom:586.711500px;}
.yd0{bottom:589.622400px;}
.yc4{bottom:589.981972px;}
.y144{bottom:594.121975px;}
.y43{bottom:597.181978px;}
.y15f{bottom:597.361978px;}
.y27d{bottom:598.441979px;}
.y2ae{bottom:599.161979px;}
.y2b0{bottom:601.681981px;}
.y295{bottom:601.861981px;}
.y11b{bottom:603.121982px;}
.y14{bottom:603.360000px;}
.y234{bottom:604.201983px;}
.y70{bottom:604.212000px;}
.y13{bottom:605.880485px;}
.y1d4{bottom:607.621986px;}
.y2f0{bottom:608.161987px;}
.y1a6{bottom:609.781988px;}
.yc3{bottom:610.861389px;}
.y27c{bottom:614.641992px;}
.y2af{bottom:615.001992px;}
.y294{bottom:615.181992px;}
.ydd{bottom:615.361392px;}
.y215{bottom:616.261993px;}
.y143{bottom:617.161994px;}
.y24c{bottom:617.341994px;}
.yd2{bottom:618.421995px;}
.y233{bottom:620.401996px;}
.y231{bottom:620.582400px;}
.y6f{bottom:621.712500px;}
.yc8{bottom:622.201998px;}
.yb1{bottom:624.361399px;}
.yc7{bottom:629.582004px;}
.y24b{bottom:630.662005px;}
.y11a{bottom:630.842005px;}
.y11{bottom:632.340000px;}
.y9a{bottom:633.361407px;}
.y42{bottom:633.362007px;}
.y1d3{bottom:633.902007px;}
.y10{bottom:634.860508px;}
.y2ef{bottom:635.882009px;}
.y1a5{bottom:637.502010px;}
.y142{bottom:637.862010px;}
.y6e{bottom:639.213000px;}
.y214{bottom:639.302011px;}
.ycb{bottom:640.742013px;}
.yc5{bottom:645.062400px;}
.yce{bottom:645.242400px;}
.y296{bottom:649.382020px;}
.y141{bottom:654.062023px;}
.y230{bottom:654.422024px;}
.y134{bottom:656.582025px;}
.y6d{bottom:656.713500px;}
.y1d2{bottom:656.942026px;}
.y2e7{bottom:657.662026px;}
.yc9{bottom:657.662400px;}
.y133{bottom:659.282027px;}
.y213{bottom:660.002028px;}
.ye{bottom:661.320000px;}
.ydc{bottom:663.601431px;}
.y1a4{bottom:663.602031px;}
.yd{bottom:663.840531px;}
.y2e6{bottom:665.042032px;}
.y119{bottom:665.942033px;}
.y2ee{bottom:666.122033px;}
.y2e5{bottom:667.922034px;}
.y2ed{bottom:668.822035px;}
.y41{bottom:669.542036px;}
.y15d{bottom:669.902036px;}
.yfe{bottom:672.601438px;}
.y6c{bottom:674.214000px;}
.y212{bottom:676.202041px;}
.y1d1{bottom:677.642042px;}
.y1eb{bottom:678.902043px;}
.y13d{bottom:680.522044px;}
.y13e{bottom:680.702045px;}
.y99{bottom:681.601445px;}
.ya7{bottom:681.602045px;}
.y1a3{bottom:686.642049px;}
.y27b{bottom:687.542050px;}
.yc{bottom:689.220551px;}
.y6b{bottom:691.714500px;}
.y1ea{bottom:692.222054px;}
.y1d0{bottom:693.842055px;}
.y1b9{bottom:696.722057px;}
.y118{bottom:698.522059px;}
.y24d{bottom:699.242059px;}
.y13a{bottom:701.402061px;}
.y22c{bottom:704.822064px;}
.y2b1{bottom:705.002064px;}
.y40{bottom:705.902065px;}
.y1a2{bottom:707.342066px;}
.y297{bottom:708.602067px;}
.y6a{bottom:709.215000px;}
.yb{bottom:709.920568px;}
.y1b8{bottom:710.042068px;}
.yec{bottom:712.021470px;}
.ydb{bottom:721.021477px;}
.y1a1{bottom:723.542079px;}
.y13b{bottom:725.162080px;}
.y176{bottom:726.242081px;}
.y69{bottom:726.715500px;}
.y2b4{bottom:727.862400px;}
.ya{bottom:729.900584px;}
.y98{bottom:730.021484px;}
.ya6{bottom:730.022084px;}
.y117{bottom:731.642085px;}
.y251{bottom:734.702400px;}
.y2b6{bottom:735.242400px;}
.y175{bottom:739.562092px;}
.y140{bottom:741.362093px;}
.y3f{bottom:742.082094px;}
.y253{bottom:742.082400px;}
.y2b7{bottom:743.162400px;}
.y68{bottom:744.216000px;}
.y2b8{bottom:746.582400px;}
.y29b{bottom:749.462400px;}
.y9{bottom:749.880600px;}
.y255{bottom:750.002400px;}
.y257{bottom:753.242400px;}
.y29c{bottom:757.562400px;}
.y112{bottom:759.722108px;}
.y10c{bottom:759.722400px;}
.y259{bottom:759.902400px;}
.yeb{bottom:760.261508px;}
.y29e{bottom:760.802400px;}
.y22d{bottom:761.162109px;}
.y67{bottom:761.716500px;}
.y138{bottom:762.602110px;}
.y25b{bottom:766.562400px;}
.y29f{bottom:767.462400px;}
.y298{bottom:767.822114px;}
.yfd{bottom:769.261515px;}
.y2ba{bottom:769.802400px;}
.y8{bottom:770.760617px;}
.y15e{bottom:770.882117px;}
.y25d{bottom:773.222400px;}
.y2a0{bottom:774.122400px;}
.y25f{bottom:776.642400px;}
.y97{bottom:778.261523px;}
.y3e{bottom:778.262123px;}
.y2bc{bottom:778.442400px;}
.y66{bottom:779.217000px;}
.y2e4{bottom:779.882124px;}
.y24e{bottom:780.062124px;}
.y2ec{bottom:780.422124px;}
.y261{bottom:780.602400px;}
.y2a1{bottom:780.782400px;}
.y2be{bottom:781.862400px;}
.y2e3{bottom:782.762126px;}
.y2eb{bottom:783.302127px;}
.y2a2{bottom:784.202400px;}
.y263{bottom:789.242400px;}
.y2c0{bottom:789.962400px;}
.y7{bottom:791.460633px;}
.y2a4{bottom:792.842400px;}
.y265{bottom:795.722400px;}
.y2a6{bottom:796.262400px;}
.y65{bottom:796.717500px;}
.y1ec{bottom:797.702138px;}
.y2c1{bottom:797.882400px;}
.y2e2{bottom:801.662141px;}
.y2ea{bottom:802.202142px;}
.y27a{bottom:803.282143px;}
.y1ba{bottom:804.362143px;}
.y2a8{bottom:804.362400px;}
.y2e1{bottom:804.542144px;}
.y1ef{bottom:804.542400px;}
.y2e9{bottom:804.902144px;}
.y2c3{bottom:805.802400px;}
.y6{bottom:807.660646px;}
.y267{bottom:807.782400px;}
.y2b2{bottom:807.962146px;}
.yea{bottom:808.501547px;}
.y1{bottom:808.885500px;}
.y2c5{bottom:809.222400px;}
.y2a9{bottom:810.842400px;}
.y269{bottom:811.202400px;}
.y1f1{bottom:811.922400px;}
.y13f{bottom:814.082151px;}
.y64{bottom:814.218000px;}
.y26a{bottom:814.442400px;}
.y2aa{bottom:814.982400px;}
.y2c7{bottom:817.142400px;}
.yfc{bottom:817.501554px;}
.y22e{bottom:817.502154px;}
.y5{bottom:818.820655px;}
.y1f3{bottom:819.842400px;}
.y26c{bottom:821.102400px;}
.y2ab{bottom:821.642400px;}
.y1f5{bottom:823.262400px;}
.y2c9{bottom:823.802400px;}
.y2ac{bottom:824.342400px;}
.y3d{bottom:826.142161px;}
.y96{bottom:826.501561px;}
.ya5{bottom:826.502161px;}
.y299{bottom:826.862161px;}
.y26e{bottom:827.762400px;}
.y2ca{bottom:827.942400px;}
.y177{bottom:829.742164px;}
.y1f7{bottom:829.922400px;}
.y2ad{bottom:831.002400px;}
.y63{bottom:831.718500px;}
.y270{bottom:834.422400px;}
.y1f9{bottom:836.582400px;}
.y2cb{bottom:837.122400px;}
.y272{bottom:840.542400px;}
.y1fb{bottom:843.242400px;}
.y274{bottom:843.782400px;}
.y4{bottom:846.180677px;}
.y1fd{bottom:846.662400px;}
.y275{bottom:847.022400px;}
.y62{bottom:849.219000px;}
.y17a{bottom:852.602400px;}
.y36{bottom:852.819000px;}
.y1bd{bottom:853.322400px;}
.y135{bottom:853.502400px;}
.y1ff{bottom:854.582400px;}
.y160{bottom:854.942184px;}
.y276{bottom:855.122400px;}
.ye9{bottom:856.921586px;}
.y17b{bottom:859.982400px;}
.y24f{bottom:860.702189px;}
.y200{bottom:861.242400px;}
.y13c{bottom:861.962190px;}
.y1be{bottom:862.142400px;}
.y278{bottom:863.042400px;}
.y110{bottom:863.402191px;}
.y137{bottom:864.302191px;}
.y201{bottom:865.202400px;}
.y1c0{bottom:865.382400px;}
.yfb{bottom:865.921593px;}
.y61{bottom:866.719500px;}
.y3{bottom:866.880694px;}
.y17d{bottom:867.902400px;}
.y279{bottom:870.422400px;}
.y17f{bottom:871.322400px;}
.y202{bottom:871.862400px;}
.y211{bottom:872.582198px;}
.y1c2{bottom:873.482400px;}
.y22f{bottom:873.662199px;}
.y203{bottom:874.562400px;}
.y95{bottom:874.921600px;}
.y3c{bottom:874.922200px;}
.y181{bottom:877.982400px;}
.y204{bottom:881.222400px;}
.y1c4{bottom:881.582400px;}
.y2{bottom:883.080706px;}
.y60{bottom:884.220000px;}
.y183{bottom:884.642400px;}
.y29a{bottom:885.902209px;}
.y205{bottom:887.882400px;}
.y1c6{bottom:889.682400px;}
.y163{bottom:890.942213px;}
.y185{bottom:891.302400px;}
.y1c8{bottom:892.922400px;}
.y187{bottom:894.722400px;}
.y1ca{bottom:897.062400px;}
.y207{bottom:899.942400px;}
.y2e8{bottom:900.302220px;}
.y1cc{bottom:900.302400px;}
.y1ed{bottom:900.662221px;}
.y5f{bottom:901.720500px;}
.y208{bottom:903.182400px;}
.y189{bottom:903.362400px;}
.ye8{bottom:905.161624px;}
.y18b{bottom:906.782400px;}
.y209{bottom:907.142400px;}
.y1ce{bottom:907.502400px;}
.y20a{bottom:910.562400px;}
.y2b3{bottom:910.922229px;}
.y113{bottom:913.442231px;}
.y10e{bottom:913.622231px;}
.y210{bottom:913.982231px;}
.yfa{bottom:914.161631px;}
.y1cf{bottom:914.162400px;}
.y1bb{bottom:914.342231px;}
.y18d{bottom:914.702400px;}
.y2e0{bottom:915.421632px;}
.y293{bottom:915.422232px;}
.y111{bottom:917.402234px;}
.y20c{bottom:917.582400px;}
.y5e{bottom:919.221000px;}
.y18f{bottom:922.802400px;}
.y94{bottom:923.161639px;}
.y3b{bottom:923.162239px;}
.y20e{bottom:924.242400px;}
.y191{bottom:930.722400px;}
.y178{bottom:932.882246px;}
.y193{bottom:933.962400px;}
.y292{bottom:936.121649px;}
.y5d{bottom:936.721500px;}
.y250{bottom:941.522253px;}
.y195{bottom:942.062400px;}
.y116{bottom:944.762256px;}
.y197{bottom:948.722400px;}
.y199{bottom:952.682400px;}
.y5c{bottom:954.222000px;}
.y161{bottom:955.922265px;}
.y24a{bottom:956.821665px;}
.y19b{bottom:959.342400px;}
.y22b{bottom:961.142269px;}
.y19d{bottom:962.042400px;}
.ye7{bottom:962.401670px;}
.y19f{bottom:968.702400px;}
.y93{bottom:971.401677px;}
.y3a{bottom:971.402277px;}
.y5b{bottom:971.722500px;}
.y22a{bottom:977.521682px;}
.y5a{bottom:989.223000px;}
.y229{bottom:998.221699px;}
.y115{bottom:1002.002302px;}
.y1ee{bottom:1003.622303px;}
.y10f{bottom:1005.062304px;}
.y59{bottom:1006.723500px;}
.y1e9{bottom:1018.921715px;}
.y92{bottom:1019.821716px;}
.y39{bottom:1019.822316px;}
.y1bc{bottom:1024.142319px;}
.y58{bottom:1024.224000px;}
.y179{bottom:1035.842329px;}
.y1b7{bottom:1039.621732px;}
.y57{bottom:1041.724500px;}
.y162{bottom:1057.082346px;}
.y139{bottom:1058.702347px;}
.y56{bottom:1059.225000px;}
.y174{bottom:1060.321748px;}
.y114{bottom:1060.862349px;}
.y91{bottom:1068.061754px;}
.y38{bottom:1068.062354px;}
.y55{bottom:1076.725500px;}
.y157{bottom:1081.021765px;}
.y54{bottom:1094.226000px;}
.y132{bottom:1101.721781px;}
.y10b{bottom:1107.121786px;}
.y53{bottom:1111.726500px;}
.y90{bottom:1116.301793px;}
.y37{bottom:1116.302393px;}
.y131{bottom:1122.421798px;}
.y52{bottom:1129.227000px;}
.y10a{bottom:1140.241812px;}
.y130{bottom:1143.121814px;}
.y51{bottom:1146.727500px;}
.y35{bottom:1159.230000px;}
.y107{bottom:1163.102430px;}
.y50{bottom:1164.228000px;}
.y8d{bottom:1167.782434px;}
.y106{bottom:1181.642445px;}
.y4f{bottom:1181.728500px;}
.y8c{bottom:1185.062448px;}
.y105{bottom:1196.402457px;}
.y8b{bottom:1199.102459px;}
.y4e{bottom:1234.230000px;}
.h2{height:0.000000px;}
.h47{height:2.880000px;}
.h43{height:3.600000px;}
.h4d{height:4.140000px;}
.h46{height:4.320000px;}
.h53{height:6.300000px;}
.h44{height:6.840000px;}
.h49{height:7.200000px;}
.h41{height:7.560000px;}
.h4b{height:8.100000px;}
.h42{height:8.280000px;}
.h4c{height:8.820000px;}
.h45{height:9.000000px;}
.h37{height:10.800000px;}
.h51{height:11.700000px;}
.h3f{height:13.140000px;}
.h6{height:15.300000px;}
.h3a{height:15.885674px;}
.h2d{height:17.100000px;}
.h38{height:21.247498px;}
.h50{height:25.655995px;}
.h5b{height:26.260374px;}
.h57{height:26.373936px;}
.h3d{height:26.609323px;}
.h3c{height:30.210929px;}
.h15{height:30.420000px;}
.h12{height:30.780000px;}
.h5c{height:31.491104px;}
.h5a{height:31.513250px;}
.h58{height:31.626083px;}
.h56{height:31.648324px;}
.h36{height:32.008010px;}
.h59{height:32.949536px;}
.h22{height:33.300000px;}
.h2b{height:33.518347px;}
.h20{height:34.020000px;}
.h3e{height:34.120980px;}
.h52{height:34.700199px;}
.h4a{height:34.761528px;}
.h55{height:34.767818px;}
.h40{height:34.825478px;}
.h54{height:34.872130px;}
.h48{height:35.074988px;}
.h4f{height:36.672574px;}
.h39{height:37.409162px;}
.h3b{height:38.849163px;}
.h17{height:38.902462px;}
.h4e{height:40.644401px;}
.hd{height:41.004033px;}
.h2a{height:41.522729px;}
.h5{height:41.834565px;}
.h35{height:42.769952px;}
.h32{height:43.340762px;}
.h2f{height:43.387838px;}
.h31{height:44.995620px;}
.h2e{height:45.042797px;}
.h1f{height:45.293591px;}
.he{height:45.900037px;}
.h23{height:46.440000px;}
.h1d{height:46.620000px;}
.h25{height:47.880000px;}
.h30{height:50.027384px;}
.h3{height:50.650353px;}
.hf{height:50.796041px;}
.h28{height:52.920000px;}
.h4{height:54.208168px;}
.h34{height:56.146334px;}
.h2c{height:58.532039px;}
.hc{height:61.200049px;}
.h7{height:62.578125px;}
.h33{height:66.536420px;}
.ha{height:71.604057px;}
.h10{height:71.606457px;}
.h1a{height:78.029008px;}
.h13{height:81.958836px;}
.h11{height:81.961236px;}
.h19{height:82.466805px;}
.h21{height:84.467634px;}
.hb{height:84.780068px;}
.h18{height:101.998552px;}
.h1c{height:105.120774px;}
.h1b{height:109.443178px;}
.h14{height:111.150765px;}
.h26{height:114.553141px;}
.h24{height:117.519260px;}
.h1e{height:146.253837px;}
.h27{height:159.377027px;}
.h16{height:173.790815px;}
.h29{height:212.503444px;}
.h9{height:300.232288px;}
.h1{height:300.322880px;}
.h0{height:1188.000000px;}
.h8{height:1263.000000px;}
.we{width:4.500000px;}
.w14{width:6.120000px;}
.w1{width:6.660000px;}
.w4{width:7.560000px;}
.w10{width:7.740000px;}
.wf{width:8.820000px;}
.wd{width:10.440000px;}
.w15{width:13.680000px;}
.w13{width:13.860000px;}
.w3{width:16.380000px;}
.w11{width:16.740000px;}
.w5{width:18.360000px;}
.w12{width:25.380000px;}
.w7{width:61.560000px;}
.wb{width:85.500000px;}
.w6{width:107.100000px;}
.w8{width:112.140000px;}
.w9{width:146.160000px;}
.wc{width:155.520000px;}
.wa{width:184.500000px;}
.w2{width:892.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x60{left:10.980230px;}
.x19{left:12.000000px;}
.x51{left:13.320198px;}
.x44{left:84.960068px;}
.x6e{left:97.560078px;}
.x78{left:107.820086px;}
.x1d{left:117.000094px;}
.x43{left:118.620095px;}
.x70{left:122.040103px;}
.x18{left:127.620102px;}
.x79{left:131.580105px;}
.x3{left:135.000108px;}
.x4{left:141.660113px;}
.x6f{left:154.260123px;}
.xf{left:158.580127px;}
.x38{left:169.740136px;}
.xd{left:176.940142px;}
.x2e{left:180.720145px;}
.x42{left:184.500148px;}
.x6{left:194.760156px;}
.x31{left:196.020157px;}
.xc{left:205.200164px;}
.x68{left:212.580170px;}
.x1f{left:221.760177px;}
.xb{left:227.520182px;}
.x17{left:233.460187px;}
.x1c{left:236.880190px;}
.x69{left:238.140191px;}
.x1b{left:240.367500px;}
.x52{left:250.020200px;}
.x32{left:251.820201px;}
.x12{left:253.117500px;}
.x6a{left:254.520204px;}
.x15{left:257.940206px;}
.x10{left:261.720209px;}
.x45{left:262.980000px;}
.x13{left:264.616500px;}
.x1{left:266.683500px;}
.x8{left:270.900217px;}
.xe{left:273.960219px;}
.x46{left:275.940000px;}
.x14{left:277.380222px;}
.x24{left:278.640223px;}
.x7b{left:280.260224px;}
.x27{left:283.860000px;}
.x7a{left:284.940228px;}
.x55{left:286.560229px;}
.x5e{left:287.820230px;}
.x58{left:294.480255px;}
.x63{left:295.740237px;}
.x25{left:297.900238px;}
.x1a{left:300.375000px;}
.x65{left:301.500244px;}
.x5b{left:302.580242px;}
.x23{left:305.460000px;}
.x11{left:313.125000px;}
.x22{left:315.000252px;}
.x21{left:318.060000px;}
.x9{left:322.920000px;}
.x53{left:324.000259px;}
.x7{left:333.180267px;}
.xa{left:336.420269px;}
.x26{left:337.500270px;}
.x77{left:343.800275px;}
.x28{left:347.040278px;}
.x3e{left:355.860285px;}
.x29{left:357.120286px;}
.x1e{left:359.460288px;}
.x6d{left:368.820295px;}
.x57{left:373.320299px;}
.x5a{left:374.580300px;}
.x3b{left:376.380301px;}
.x64{left:404.280314px;}
.x3d{left:406.260325px;}
.x35{left:408.240327px;}
.x33{left:415.620000px;}
.x3a{left:417.780334px;}
.x56{left:421.740337px;}
.x47{left:424.980340px;}
.x50{left:429.300343px;}
.x2f{left:431.460345px;}
.x71{left:437.400350px;}
.x67{left:439.920627px;}
.x62{left:443.880265px;}
.x16{left:446.400357px;}
.x72{left:455.400364px;}
.x5f{left:457.740450px;}
.x5{left:459.000367px;}
.x2a{left:463.680371px;}
.x39{left:466.560000px;}
.x2b{left:477.000382px;}
.x4d{left:479.700384px;}
.x75{left:480.780387px;}
.x66{left:487.260390px;}
.x7c{left:489.420392px;}
.x3c{left:495.540000px;}
.x37{left:498.420000px;}
.x73{left:513.000410px;}
.x34{left:517.500414px;}
.x2c{left:520.560416px;}
.x59{left:528.300423px;}
.x2d{left:530.820425px;}
.x2{left:534.420428px;}
.x36{left:538.920000px;}
.x74{left:540.000372px;}
.x30{left:543.960000px;}
.x81{left:551.880442px;}
.x41{left:558.360447px;}
.x5d{left:590.580000px;}
.x48{left:615.240000px;}
.x61{left:616.320493px;}
.x54{left:617.580494px;}
.x7d{left:621.720497px;}
.x49{left:625.500000px;}
.x4a{left:629.640000px;}
.x7e{left:633.960507px;}
.x4b{left:638.460000px;}
.x7f{left:642.600514px;}
.x4c{left:646.200000px;}
.x6b{left:651.420000px;}
.x80{left:654.840524px;}
.x5c{left:658.800527px;}
.x6c{left:680.040544px;}
.x4e{left:736.920590px;}
.x40{left:765.360612px;}
.x3f{left:784.620000px;}
.x4f{left:787.500630px;}
.x20{left:792.960000px;}
.x76{left:795.240636px;}
@media print{
.v6{vertical-align:-108.160087pt;}
.v2{vertical-align:-34.560028pt;}
.v7{vertical-align:-26.880022pt;}
.v9{vertical-align:-16.000013pt;}
.vc{vertical-align:-13.440011pt;}
.v8{vertical-align:-10.880009pt;}
.va{vertical-align:-9.600008pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.280001pt;}
.v5{vertical-align:3.842136pt;}
.v1{vertical-align:34.560028pt;}
.v4{vertical-align:40.322166pt;}
.v3{vertical-align:55.680045pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.033280pt;}
.ls7{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.179705pt;}
.lsd{letter-spacing:0.184960pt;}
.lsb{letter-spacing:0.204562pt;}
.ls10{letter-spacing:0.300431pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.343040pt;}
.lse{letter-spacing:0.471680pt;}
.lsa{letter-spacing:4.960004pt;}
.ls4{letter-spacing:9.920886pt;}
.ls8{letter-spacing:12.000010pt;}
.ls5{letter-spacing:173.279947pt;}
.ls3{letter-spacing:296.160237pt;}
.ls6{letter-spacing:725.000296pt;}
.ws5{word-spacing:-44.928036pt;}
.ws25{word-spacing:-21.600017pt;}
.ws11{word-spacing:-21.280017pt;}
.ws4{word-spacing:-19.040015pt;}
.ws3{word-spacing:-18.720015pt;}
.ws0{word-spacing:-15.994893pt;}
.wsf{word-spacing:-15.288678pt;}
.ws10{word-spacing:-15.272665pt;}
.ws14{word-spacing:-14.080011pt;}
.ws12{word-spacing:-12.697627pt;}
.ws2{word-spacing:-12.000010pt;}
.ws1a{word-spacing:-11.905348pt;}
.ws22{word-spacing:-11.836493pt;}
.ws18{word-spacing:-11.820658pt;}
.ws24{word-spacing:-11.801087pt;}
.ws1c{word-spacing:-11.798952pt;}
.ws20{word-spacing:-11.778136pt;}
.ws16{word-spacing:-11.581534pt;}
.ws26{word-spacing:-10.121928pt;}
.ws27{word-spacing:-10.078728pt;}
.ws1d{word-spacing:-8.708301pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:6.349621pt;}
.wsc{word-spacing:14.874073pt;}
.ws7{word-spacing:50.352921pt;}
.ws1f{word-spacing:54.996175pt;}
.ws15{word-spacing:72.005895pt;}
.ws17{word-spacing:73.005633pt;}
.wsd{word-spacing:81.770922pt;}
.ws6{word-spacing:99.166364pt;}
.wsb{word-spacing:100.330973pt;}
.wse{word-spacing:150.051466pt;}
.ws1e{word-spacing:174.830427pt;}
.ws1b{word-spacing:191.089548pt;}
.ws19{word-spacing:207.060988pt;}
.ws8{word-spacing:262.833248pt;}
.wsa{word-spacing:269.636847pt;}
.ws23{word-spacing:283.172606pt;}
.ws21{word-spacing:291.734221pt;}
.ws13{word-spacing:708.212580pt;}
._77{margin-left:-2497.094089pt;}
._8a{margin-left:-2495.928854pt;}
._3d{margin-left:-2478.740575pt;}
._3c{margin-left:-2477.756370pt;}
._4b{margin-left:-2467.539869pt;}
._4a{margin-left:-2466.362714pt;}
._59{margin-left:-2459.740624pt;}
._5d{margin-left:-2458.834857pt;}
._4c{margin-left:-2448.705150pt;}
._e{margin-left:-2446.830172pt;}
._1c{margin-left:-2445.435270pt;}
._36{margin-left:-2435.256414pt;}
._35{margin-left:-2433.983622pt;}
._2e{margin-left:-2428.899385pt;}
._a{margin-left:-2414.998477pt;}
._49{margin-left:-2378.031614pt;}
._8d{margin-left:-2350.223511pt;}
._7e{margin-left:-2347.258671pt;}
._60{margin-left:-2268.159776pt;}
._87{margin-left:-2255.561991pt;}
._7d{margin-left:-2204.974130pt;}
._5c{margin-left:-2194.162390pt;}
._6d{margin-left:-2166.064433pt;}
._74{margin-left:-2161.687568pt;}
._4{margin-left:-2136.560800pt;}
._50{margin-left:-2102.987488pt;}
._6f{margin-left:-2098.009155pt;}
._5{margin-left:-2060.021198pt;}
._8e{margin-left:-2047.687373pt;}
._4e{margin-left:-2041.071678pt;}
._6{margin-left:-2038.051261pt;}
._40{margin-left:-2022.912072pt;}
._3b{margin-left:-1994.031138pt;}
._62{margin-left:-1978.947478pt;}
._7b{margin-left:-1951.990656pt;}
._2{margin-left:-1950.078400pt;}
._73{margin-left:-1931.700588pt;}
._65{margin-left:-1884.378772pt;}
._1{margin-left:-1880.815295pt;}
._3e{margin-left:-1812.773118pt;}
._88{margin-left:-1795.847797pt;}
._55{margin-left:-1764.323291pt;}
._5f{margin-left:-1758.784595pt;}
._7f{margin-left:-1742.403796pt;}
._5e{margin-left:-1731.502701pt;}
._75{margin-left:-1723.475027pt;}
._72{margin-left:-1698.113432pt;}
._80{margin-left:-1684.180931pt;}
._81{margin-left:-1665.000938pt;}
._5b{margin-left:-1648.426893pt;}
._79{margin-left:-1621.304805pt;}
._42{margin-left:-1575.870543pt;}
._89{margin-left:-1559.263056pt;}
._6c{margin-left:-1492.862378pt;}
._29{margin-left:-1491.511421pt;}
._86{margin-left:-1471.769325pt;}
._39{margin-left:-1436.435900pt;}
._f{margin-left:-1369.701926pt;}
._3{margin-left:-1280.161024pt;}
._6b{margin-left:-1255.265565pt;}
._82{margin-left:-1236.361969pt;}
._15{margin-left:-1139.366052pt;}
._64{margin-left:-1123.982886pt;}
._83{margin-left:-1117.751954pt;}
._6a{margin-left:-1109.873995pt;}
._78{margin-left:-1090.828954pt;}
._63{margin-left:-1016.532382pt;}
._76{margin-left:-1002.640940pt;}
._67{margin-left:-966.561146pt;}
._6e{margin-left:-937.208892pt;}
._7c{margin-left:-935.003549pt;}
._41{margin-left:-860.232191pt;}
._70{margin-left:-823.502330pt;}
._58{margin-left:-804.147026pt;}
._18{margin-left:-745.760770pt;}
._56{margin-left:-711.182240pt;}
._51{margin-left:-675.763972pt;}
._7a{margin-left:-661.128539pt;}
._33{margin-left:-579.258393pt;}
._5a{margin-left:-574.337739pt;}
._2a{margin-left:-566.753423pt;}
._8b{margin-left:-556.067005pt;}
._84{margin-left:-549.777080pt;}
._27{margin-left:-541.927065pt;}
._61{margin-left:-537.272110pt;}
._52{margin-left:-491.520393pt;}
._26{margin-left:-484.455428pt;}
._8c{margin-left:-462.317170pt;}
._43{margin-left:-399.520320pt;}
._85{margin-left:-379.200303pt;}
._3f{margin-left:-210.720169pt;}
._10{margin-left:-178.720143pt;}
._7{margin-left:-148.816759pt;}
._3a{margin-left:-47.999616pt;}
._66{margin-left:-4.721829pt;}
._1b{margin-left:-1.846495pt;}
._0{margin-left:-0.893751pt;}
._9{width:1.136326pt;}
._21{width:2.104964pt;}
._20{width:3.023676pt;}
._1d{width:4.738901pt;}
._1a{width:6.157744pt;}
._2c{width:7.714539pt;}
._2b{width:8.874862pt;}
._13{width:9.911698pt;}
._14{width:11.599354pt;}
._25{width:12.614764pt;}
._24{width:13.558687pt;}
._12{width:14.938375pt;}
._11{width:16.209975pt;}
._19{width:17.694150pt;}
._8f{width:18.612230pt;}
._2d{width:19.691561pt;}
._8{width:20.689974pt;}
._23{width:21.862199pt;}
._38{width:23.436667pt;}
._1e{width:24.866613pt;}
._1f{width:25.761392pt;}
._28{width:27.304670pt;}
._34{width:28.205803pt;}
._37{width:29.734561pt;}
._c{width:30.888408pt;}
._d{width:32.048882pt;}
._22{width:33.551953pt;}
._53{width:34.575157pt;}
._9a{width:35.877984pt;}
._68{width:36.791727pt;}
._69{width:37.996310pt;}
._b{width:39.628565pt;}
._30{width:40.936859pt;}
._2f{width:42.154930pt;}
._31{width:43.185102pt;}
._54{width:44.145101pt;}
._4d{width:45.329967pt;}
._57{width:47.266608pt;}
._4f{width:48.816687pt;}
._32{width:49.793327pt;}
._71{width:51.813167pt;}
._16{width:68.386602pt;}
._90{width:86.444924pt;}
._17{width:170.080322pt;}
._48{width:171.528079pt;}
._96{width:192.498881pt;}
._95{width:200.818755pt;}
._91{width:204.705452pt;}
._92{width:211.770720pt;}
._93{width:216.570897pt;}
._94{width:217.687696pt;}
._47{width:253.766658pt;}
._97{width:296.478242pt;}
._99{width:301.409531pt;}
._98{width:302.719711pt;}
._44{width:404.566817pt;}
._46{width:718.350013pt;}
._45{width:878.064017pt;}
.fs1a{font-size:19.539856pt;}
.fs18{font-size:26.135061pt;}
.fs24{font-size:31.324825pt;}
.fs1c{font-size:32.730266pt;}
.fs2c{font-size:33.594907pt;}
.fs29{font-size:33.740187pt;}
.fs1b{font-size:37.160350pt;}
.fsb{font-size:37.332510pt;}
.fs17{font-size:39.080351pt;}
.fs2b{font-size:40.314912pt;}
.fs28{font-size:40.487712pt;}
.fs1e{font-size:41.660193pt;}
.fs2a{font-size:42.152354pt;}
.fs25{font-size:42.367394pt;}
.fs21{font-size:42.442274pt;}
.fs27{font-size:42.449954pt;}
.fs1f{font-size:42.520354pt;}
.fs26{font-size:42.577314pt;}
.fs20{font-size:42.824994pt;}
.fs8{font-size:42.880034pt;}
.fs3{font-size:45.440036pt;}
.fs19{font-size:45.674917pt;}
.fs23{font-size:46.915238pt;}
.fs7{font-size:48.000038pt;}
.fs22{font-size:49.625000pt;}
.fs16{font-size:52.220202pt;}
.fs9{font-size:53.120042pt;}
.fs4{font-size:53.333333pt;}
.fs13{font-size:54.937644pt;}
.fs11{font-size:54.995244pt;}
.fs14{font-size:55.484844pt;}
.fs12{font-size:55.545111pt;}
.fs1d{font-size:56.320045pt;}
.fs2{font-size:58.880047pt;}
.fsd{font-size:58.947247pt;}
.fs1{font-size:64.000051pt;}
.fs6{font-size:74.880060pt;}
.fsc{font-size:79.138765pt;}
.fs15{font-size:85.120068pt;}
.fsa{font-size:106.665152pt;}
.fse{font-size:109.930221pt;}
.fsf{font-size:152.945189pt;}
.fs10{font-size:203.927630pt;}
.fs5{font-size:255.878371pt;}
.fs0{font-size:255.955580pt;}
.y232{bottom:-0.000359pt;}
.y0{bottom:0.000000pt;}
.y2b5{bottom:0.159718pt;}
.y252{bottom:0.159723pt;}
.y254{bottom:0.159728pt;}
.y2b9{bottom:0.159731pt;}
.y256{bottom:0.159733pt;}
.y258{bottom:0.159736pt;}
.y29d{bottom:0.159739pt;}
.y25a{bottom:0.159741pt;}
.y25c{bottom:0.159745pt;}
.y2bb{bottom:0.159748pt;}
.y25e{bottom:0.159750pt;}
.y260{bottom:0.159752pt;}
.y2bd{bottom:0.159754pt;}
.y262{bottom:0.159755pt;}
.y2bf{bottom:0.159756pt;}
.y2a3{bottom:0.159758pt;}
.y264{bottom:0.159761pt;}
.y2a5{bottom:0.159764pt;}
.y2a7{bottom:0.159766pt;}
.y2c2{bottom:0.159768pt;}
.y1f0{bottom:0.159772pt;}
.y2c4{bottom:0.159773pt;}
.y268{bottom:0.159775pt;}
.y2c6{bottom:0.159776pt;}
.y1f2{bottom:0.159777pt;}
.y26b{bottom:0.159779pt;}
.y2c8{bottom:0.159781pt;}
.y1f4{bottom:0.159783pt;}
.y26d{bottom:0.159784pt;}
.y1f6{bottom:0.159786pt;}
.y26f{bottom:0.159789pt;}
.y1f8{bottom:0.159790pt;}
.y271{bottom:0.159793pt;}
.y1fa{bottom:0.159795pt;}
.y273{bottom:0.159798pt;}
.y1fc{bottom:0.159800pt;}
.y1fe{bottom:0.159802pt;}
.y136{bottom:0.159807pt;}
.y277{bottom:0.159808pt;}
.y17c{bottom:0.159812pt;}
.y1bf{bottom:0.159813pt;}
.y1c1{bottom:0.159816pt;}
.y17e{bottom:0.159817pt;}
.y180{bottom:0.159820pt;}
.y1c3{bottom:0.159821pt;}
.y182{bottom:0.159824pt;}
.y1c5{bottom:0.159827pt;}
.y184{bottom:0.159829pt;}
.y206{bottom:0.159832pt;}
.y1c7{bottom:0.159833pt;}
.y186{bottom:0.159834pt;}
.y1c9{bottom:0.159835pt;}
.y188{bottom:0.159836pt;}
.y1cb{bottom:0.159838pt;}
.y1cd{bottom:0.159840pt;}
.y18a{bottom:0.159843pt;}
.y18c{bottom:0.159845pt;}
.y20b{bottom:0.159848pt;}
.y18e{bottom:0.159851pt;}
.y20d{bottom:0.159853pt;}
.y190{bottom:0.159856pt;}
.y20f{bottom:0.159857pt;}
.y192{bottom:0.159862pt;}
.y194{bottom:0.159864pt;}
.y196{bottom:0.159870pt;}
.y198{bottom:0.159875pt;}
.y19a{bottom:0.159878pt;}
.y19c{bottom:0.159882pt;}
.y19e{bottom:0.159884pt;}
.y1a0{bottom:0.159889pt;}
.y266{bottom:0.319766pt;}
.y15a{bottom:2.239542pt;}
.y2c{bottom:2.240215pt;}
.y1d{bottom:2.240379pt;}
.y19{bottom:2.240399pt;}
.y15{bottom:2.240431pt;}
.y12{bottom:2.240451pt;}
.yf{bottom:2.240472pt;}
.y10d{bottom:2.879743pt;}
.ycd{bottom:5.119616pt;}
.yb9{bottom:5.759606pt;}
.yb4{bottom:6.079606pt;}
.yca{bottom:6.079673pt;}
.yd1{bottom:8.479626pt;}
.ycf{bottom:8.479666pt;}
.yc6{bottom:8.639666pt;}
.y34{bottom:42.666667pt;}
.y8f{bottom:50.667507pt;}
.y109{bottom:66.027519pt;}
.y8e{bottom:66.028053pt;}
.y108{bottom:81.388065pt;}
.y173{bottom:100.268080pt;}
.y156{bottom:102.988082pt;}
.y2df{bottom:103.308083pt;}
.y1e8{bottom:107.788086pt;}
.y12f{bottom:108.588087pt;}
.y291{bottom:110.988089pt;}
.y301{bottom:112.268090pt;}
.y1b6{bottom:115.788093pt;}
.y249{bottom:115.948093pt;}
.y228{bottom:116.588093pt;}
.y172{bottom:118.668095pt;}
.y155{bottom:121.388097pt;}
.y2de{bottom:121.708097pt;}
.yb0{bottom:125.707567pt;}
.y1e7{bottom:126.188101pt;}
.y33{bottom:126.240101pt;}
.y12e{bottom:126.988102pt;}
.y290{bottom:129.388104pt;}
.y8a{bottom:132.621333pt;}
.yf9{bottom:133.707574pt;}
.ya4{bottom:133.708107pt;}
.y1b5{bottom:134.188107pt;}
.y248{bottom:134.348107pt;}
.y227{bottom:134.988108pt;}
.y171{bottom:137.068110pt;}
.y154{bottom:139.788112pt;}
.y2dd{bottom:140.108112pt;}
.y4d{bottom:144.428116pt;}
.y1e6{bottom:144.588116pt;}
.y12d{bottom:145.388116pt;}
.y28f{bottom:147.788118pt;}
.y89{bottom:148.177333pt;}
.yf5{bottom:152.588122pt;}
.y247{bottom:152.748122pt;}
.y226{bottom:153.388123pt;}
.y170{bottom:155.468124pt;}
.y153{bottom:158.188127pt;}
.y2dc{bottom:158.508127pt;}
.yda{bottom:160.108128pt;}
.ye6{bottom:160.587595pt;}
.y1e5{bottom:162.988130pt;}
.y88{bottom:163.733333pt;}
.y12c{bottom:163.788131pt;}
.y28e{bottom:166.188133pt;}
.yaf{bottom:168.587602pt;}
.y1b4{bottom:170.988137pt;}
.y246{bottom:171.148137pt;}
.y225{bottom:171.788137pt;}
.y300{bottom:173.548139pt;}
.y16f{bottom:173.868139pt;}
.yc2{bottom:174.348139pt;}
.yf8{bottom:176.587608pt;}
.ya3{bottom:176.588141pt;}
.y2db{bottom:176.908142pt;}
.y87{bottom:179.289333pt;}
.y1e4{bottom:181.388145pt;}
.y12b{bottom:182.188146pt;}
.y28d{bottom:184.588148pt;}
.y4c{bottom:187.308150pt;}
.y1b3{bottom:189.388152pt;}
.y245{bottom:189.548152pt;}
.y224{bottom:190.188152pt;}
.y2ff{bottom:191.948154pt;}
.y16e{bottom:192.268154pt;}
.y86{bottom:194.845333pt;}
.y152{bottom:194.988156pt;}
.y2da{bottom:195.308156pt;}
.yf4{bottom:195.628157pt;}
.y1e3{bottom:199.628160pt;}
.y12a{bottom:200.588160pt;}
.y32{bottom:200.640161pt;}
.y28c{bottom:202.988162pt;}
.yd9{bottom:203.148163pt;}
.ye5{bottom:203.627630pt;}
.y1b2{bottom:207.788166pt;}
.y244{bottom:207.948166pt;}
.y223{bottom:208.588167pt;}
.y2fe{bottom:210.348168pt;}
.y85{bottom:210.401333pt;}
.y16d{bottom:210.668169pt;}
.yae{bottom:211.627636pt;}
.y2d9{bottom:213.708171pt;}
.y31{bottom:215.040172pt;}
.y151{bottom:215.148172pt;}
.y1e2{bottom:218.028174pt;}
.yc1{bottom:218.828175pt;}
.y129{bottom:218.988175pt;}
.yf7{bottom:219.627642pt;}
.ya2{bottom:219.628176pt;}
.y28b{bottom:221.388177pt;}
.y30{bottom:225.920181pt;}
.y84{bottom:225.957333pt;}
.y1b1{bottom:226.188181pt;}
.y243{bottom:226.348181pt;}
.y222{bottom:226.988182pt;}
.y2fd{bottom:228.748183pt;}
.y4b{bottom:230.348184pt;}
.y2d8{bottom:232.108186pt;}
.y16c{bottom:232.268186pt;}
.y150{bottom:234.988188pt;}
.y1e1{bottom:236.428189pt;}
.y128{bottom:237.388190pt;}
.yf3{bottom:238.508191pt;}
.y28a{bottom:239.788192pt;}
.y83{bottom:241.513333pt;}
.y1b0{bottom:244.588196pt;}
.y242{bottom:244.748196pt;}
.y221{bottom:245.388196pt;}
.yd8{bottom:246.028197pt;}
.ye4{bottom:246.507664pt;}
.y2fc{bottom:247.148198pt;}
.y2d7{bottom:250.508200pt;}
.yad{bottom:254.507670pt;}
.y2f{bottom:254.560204pt;}
.y1e0{bottom:254.828204pt;}
.y127{bottom:255.788205pt;}
.y16b{bottom:256.748205pt;}
.y82{bottom:257.069333pt;}
.y289{bottom:258.028206pt;}
.y14f{bottom:259.468208pt;}
.yf6{bottom:262.507677pt;}
.ya1{bottom:262.508210pt;}
.yc0{bottom:262.988210pt;}
.y241{bottom:263.148211pt;}
.y220{bottom:263.788211pt;}
.y2fb{bottom:265.548212pt;}
.y2b{bottom:266.240000pt;}
.y2e{bottom:268.320215pt;}
.y2a{bottom:268.480215pt;}
.y2d6{bottom:268.908215pt;}
.y81{bottom:272.625333pt;}
.y4a{bottom:273.228219pt;}
.y126{bottom:274.188219pt;}
.y288{bottom:276.428221pt;}
.y16a{bottom:281.228225pt;}
.yf2{bottom:281.388225pt;}
.y240{bottom:281.548225pt;}
.y21f{bottom:282.188226pt;}
.y2d{bottom:282.240226pt;}
.y14e{bottom:283.948227pt;}
.y80{bottom:288.181333pt;}
.yd7{bottom:288.908231pt;}
.y2d5{bottom:289.228231pt;}
.ye3{bottom:289.387698pt;}
.y1df{bottom:291.628233pt;}
.y125{bottom:292.588234pt;}
.y287{bottom:294.828236pt;}
.y104{bottom:297.387705pt;}
.y1af{bottom:299.788240pt;}
.y23f{bottom:299.948240pt;}
.y21e{bottom:300.588240pt;}
.y7f{bottom:303.737333pt;}
.y2fa{bottom:304.268243pt;}
.ya0{bottom:305.387711pt;}
.yac{bottom:305.388244pt;}
.y169{bottom:305.868245pt;}
.ybf{bottom:307.468246pt;}
.y29{bottom:308.000246pt;}
.y14d{bottom:308.588247pt;}
.y2d4{bottom:308.908247pt;}
.y1de{bottom:310.028248pt;}
.y124{bottom:310.988249pt;}
.y286{bottom:313.228251pt;}
.y49{bottom:316.108253pt;}
.y1ae{bottom:318.188255pt;}
.y23e{bottom:318.348255pt;}
.y21d{bottom:318.988255pt;}
.y7e{bottom:319.293333pt;}
.y28{bottom:321.760257pt;}
.y2f9{bottom:322.828258pt;}
.yf1{bottom:324.428260pt;}
.y1dd{bottom:328.428263pt;}
.y123{bottom:329.388264pt;}
.y168{bottom:330.348264pt;}
.y285{bottom:331.628265pt;}
.yd6{bottom:331.788265pt;}
.ye2{bottom:332.427733pt;}
.y14c{bottom:333.068266pt;}
.y2d3{bottom:333.388267pt;}
.y7d{bottom:334.849333pt;}
.y27{bottom:335.520268pt;}
.y1ad{bottom:336.588269pt;}
.y23d{bottom:336.748269pt;}
.y21c{bottom:337.388270pt;}
.y103{bottom:340.427739pt;}
.y2f8{bottom:342.348274pt;}
.y1dc{bottom:346.828277pt;}
.y122{bottom:347.788278pt;}
.y9f{bottom:348.427745pt;}
.yab{bottom:348.428279pt;}
.y26{bottom:349.280279pt;}
.y7c{bottom:350.405333pt;}
.ybe{bottom:351.628281pt;}
.y284{bottom:351.948282pt;}
.y167{bottom:354.988284pt;}
.y23c{bottom:355.148284pt;}
.y14b{bottom:357.548286pt;}
.y2d2{bottom:357.868286pt;}
.y48{bottom:359.148287pt;}
.y25{bottom:363.040290pt;}
.y1db{bottom:365.228292pt;}
.y7b{bottom:365.961333pt;}
.y121{bottom:366.188293pt;}
.y2f7{bottom:366.828293pt;}
.yf0{bottom:367.308294pt;}
.y283{bottom:371.628297pt;}
.y1ac{bottom:373.388299pt;}
.yd5{bottom:374.828300pt;}
.ye1{bottom:375.307767pt;}
.y23b{bottom:375.468300pt;}
.y24{bottom:376.800301pt;}
.y21b{bottom:377.228302pt;}
.y166{bottom:380.268304pt;}
.y7a{bottom:381.517333pt;}
.y14a{bottom:382.188306pt;}
.y2d1{bottom:382.508306pt;}
.y102{bottom:383.307773pt;}
.y1da{bottom:383.628307pt;}
.y23{bottom:390.560312pt;}
.y9e{bottom:391.307780pt;}
.yaa{bottom:391.308313pt;}
.y2f6{bottom:391.468313pt;}
.y1ab{bottom:391.788313pt;}
.ybd{bottom:394.668316pt;}
.y23a{bottom:395.148316pt;}
.y120{bottom:395.628317pt;}
.y282{bottom:396.268317pt;}
.y79{bottom:397.073333pt;}
.y165{bottom:398.668319pt;}
.y21a{bottom:401.868321pt;}
.y47{bottom:402.028322pt;}
.y22{bottom:404.320323pt;}
.y149{bottom:406.668325pt;}
.y2d0{bottom:406.988326pt;}
.yef{bottom:410.188328pt;}
.y78{bottom:412.629333pt;}
.y164{bottom:413.068330pt;}
.y15b{bottom:415.468332pt;}
.y2f5{bottom:415.948333pt;}
.yd4{bottom:417.708334pt;}
.y21{bottom:418.080334pt;}
.ye0{bottom:418.187801pt;}
.y239{bottom:419.788336pt;}
.y281{bottom:420.748337pt;}
.y1d9{bottom:422.348338pt;}
.y159{bottom:424.748800pt;}
.y11f{bottom:425.388340pt;}
.y101{bottom:426.187808pt;}
.y219{bottom:426.348341pt;}
.y158{bottom:426.988342pt;}
.y77{bottom:428.185333pt;}
.y1aa{bottom:428.588343pt;}
.y148{bottom:431.148345pt;}
.y2cf{bottom:431.468345pt;}
.y20{bottom:431.840345pt;}
.y9d{bottom:434.187814pt;}
.y46{bottom:434.188347pt;}
.y2f4{bottom:440.428352pt;}
.y1d8{bottom:442.028354pt;}
.y76{bottom:443.741333pt;}
.y238{bottom:444.268355pt;}
.y280{bottom:445.228356pt;}
.y1f{bottom:445.600356pt;}
.y1a9{bottom:446.988358pt;}
.yb6{bottom:448.908359pt;}
.y218{bottom:450.828361pt;}
.yee{bottom:453.227829pt;}
.y147{bottom:455.628365pt;}
.y11e{bottom:456.108365pt;}
.y75{bottom:459.297333pt;}
.y1e{bottom:459.520368pt;}
.ydf{bottom:461.227836pt;}
.yba{bottom:462.348370pt;}
.y2f3{bottom:465.068372pt;}
.y45{bottom:466.348373pt;}
.y1d7{bottom:466.668373pt;}
.y1a8{bottom:468.428375pt;}
.yd3{bottom:468.588375pt;}
.y237{bottom:468.748375pt;}
.y100{bottom:469.227842pt;}
.y27f{bottom:469.868376pt;}
.y1c{bottom:471.040000pt;}
.y1b{bottom:473.280379pt;}
.y74{bottom:474.853333pt;}
.y217{bottom:475.468380pt;}
.ybb{bottom:476.268381pt;}
.yb5{bottom:476.908382pt;}
.y9c{bottom:477.227848pt;}
.ya9{bottom:477.228382pt;}
.y2ce{bottom:479.308383pt;}
.y146{bottom:480.268384pt;}
.y11d{bottom:483.948387pt;}
.y2f2{bottom:489.548392pt;}
.y73{bottom:490.409333pt;}
.y1d6{bottom:491.148393pt;}
.ybc{bottom:492.588394pt;}
.yb2{bottom:493.067861pt;}
.yb7{bottom:493.068394pt;}
.y236{bottom:493.228395pt;}
.yed{bottom:496.107864pt;}
.y18{bottom:496.800000pt;}
.y44{bottom:498.668399pt;}
.y17{bottom:499.040399pt;}
.y2cd{bottom:499.788400pt;}
.y216{bottom:499.948400pt;}
.yb3{bottom:501.708800pt;}
.yb8{bottom:502.028800pt;}
.yde{bottom:504.107870pt;}
.y145{bottom:504.748404pt;}
.y15c{bottom:505.548404pt;}
.y1a{bottom:505.920405pt;}
.y72{bottom:505.965333pt;}
.y11c{bottom:510.028408pt;}
.yff{bottom:512.107876pt;}
.y16{bottom:512.800410pt;}
.y27e{bottom:513.548411pt;}
.y2f1{bottom:514.188411pt;}
.ycc{bottom:514.988800pt;}
.y1d5{bottom:515.628413pt;}
.y235{bottom:516.588413pt;}
.y1a7{bottom:517.548414pt;}
.y2cc{bottom:518.188415pt;}
.y9b{bottom:520.107883pt;}
.ya8{bottom:520.108416pt;}
.y71{bottom:521.521333pt;}
.yd0{bottom:524.108800pt;}
.yc4{bottom:524.428420pt;}
.y144{bottom:528.108422pt;}
.y43{bottom:530.828425pt;}
.y15f{bottom:530.988425pt;}
.y27d{bottom:531.948426pt;}
.y2ae{bottom:532.588426pt;}
.y2b0{bottom:534.828428pt;}
.y295{bottom:534.988428pt;}
.y11b{bottom:536.108429pt;}
.y14{bottom:536.320000pt;}
.y234{bottom:537.068430pt;}
.y70{bottom:537.077333pt;}
.y13{bottom:538.560431pt;}
.y1d4{bottom:540.108432pt;}
.y2f0{bottom:540.588432pt;}
.y1a6{bottom:542.028434pt;}
.yc3{bottom:542.987901pt;}
.y27c{bottom:546.348437pt;}
.y2af{bottom:546.668437pt;}
.y294{bottom:546.828437pt;}
.ydd{bottom:546.987904pt;}
.y215{bottom:547.788438pt;}
.y143{bottom:548.588439pt;}
.y24c{bottom:548.748439pt;}
.yd2{bottom:549.708440pt;}
.y233{bottom:551.468441pt;}
.y231{bottom:551.628800pt;}
.y6f{bottom:552.633333pt;}
.yc8{bottom:553.068442pt;}
.yb1{bottom:554.987911pt;}
.yc7{bottom:559.628448pt;}
.y24b{bottom:560.588448pt;}
.y11a{bottom:560.748449pt;}
.y11{bottom:562.080000pt;}
.y9a{bottom:562.987917pt;}
.y42{bottom:562.988450pt;}
.y1d3{bottom:563.468451pt;}
.y10{bottom:564.320451pt;}
.y2ef{bottom:565.228452pt;}
.y1a5{bottom:566.668453pt;}
.y142{bottom:566.988454pt;}
.y6e{bottom:568.189333pt;}
.y214{bottom:568.268455pt;}
.ycb{bottom:569.548456pt;}
.yc5{bottom:573.388800pt;}
.yce{bottom:573.548800pt;}
.y296{bottom:577.228462pt;}
.y141{bottom:581.388465pt;}
.y230{bottom:581.708465pt;}
.y134{bottom:583.628467pt;}
.y6d{bottom:583.745333pt;}
.y1d2{bottom:583.948467pt;}
.y2e7{bottom:584.588468pt;}
.yc9{bottom:584.588800pt;}
.y133{bottom:586.028469pt;}
.y213{bottom:586.668469pt;}
.ye{bottom:587.840000pt;}
.ydc{bottom:589.867939pt;}
.y1a4{bottom:589.868472pt;}
.yd{bottom:590.080472pt;}
.y2e6{bottom:591.148473pt;}
.y119{bottom:591.948474pt;}
.y2ee{bottom:592.108474pt;}
.y2e5{bottom:593.708475pt;}
.y2ed{bottom:594.508476pt;}
.y41{bottom:595.148476pt;}
.y15d{bottom:595.468476pt;}
.yfe{bottom:597.867945pt;}
.y6c{bottom:599.301333pt;}
.y212{bottom:601.068481pt;}
.y1d1{bottom:602.348482pt;}
.y1eb{bottom:603.468483pt;}
.y13d{bottom:604.908484pt;}
.y13e{bottom:605.068484pt;}
.y99{bottom:605.867951pt;}
.ya7{bottom:605.868485pt;}
.y1a3{bottom:610.348488pt;}
.y27b{bottom:611.148489pt;}
.yc{bottom:612.640490pt;}
.y6b{bottom:614.857333pt;}
.y1ea{bottom:615.308492pt;}
.y1d0{bottom:616.748493pt;}
.y1b9{bottom:619.308495pt;}
.y118{bottom:620.908497pt;}
.y24d{bottom:621.548497pt;}
.y13a{bottom:623.468499pt;}
.y22c{bottom:626.508501pt;}
.y2b1{bottom:626.668501pt;}
.y40{bottom:627.468502pt;}
.y1a2{bottom:628.748503pt;}
.y297{bottom:629.868504pt;}
.y6a{bottom:630.413333pt;}
.yb{bottom:631.040505pt;}
.y1b8{bottom:631.148505pt;}
.yec{bottom:632.907973pt;}
.ydb{bottom:640.907979pt;}
.y1a1{bottom:643.148515pt;}
.y13b{bottom:644.588516pt;}
.y176{bottom:645.548516pt;}
.y69{bottom:645.969333pt;}
.y2b4{bottom:646.988800pt;}
.ya{bottom:648.800519pt;}
.y98{bottom:648.907986pt;}
.ya6{bottom:648.908519pt;}
.y117{bottom:650.348520pt;}
.y251{bottom:653.068800pt;}
.y2b6{bottom:653.548800pt;}
.y175{bottom:657.388526pt;}
.y140{bottom:658.988527pt;}
.y3f{bottom:659.628528pt;}
.y253{bottom:659.628800pt;}
.y2b7{bottom:660.588800pt;}
.y68{bottom:661.525333pt;}
.y2b8{bottom:663.628800pt;}
.y29b{bottom:666.188800pt;}
.y9{bottom:666.560533pt;}
.y255{bottom:666.668800pt;}
.y257{bottom:669.548800pt;}
.y29c{bottom:673.388800pt;}
.y112{bottom:675.308540pt;}
.y10c{bottom:675.308800pt;}
.y259{bottom:675.468800pt;}
.yeb{bottom:675.788007pt;}
.y29e{bottom:676.268800pt;}
.y22d{bottom:676.588541pt;}
.y67{bottom:677.081333pt;}
.y138{bottom:677.868542pt;}
.y25b{bottom:681.388800pt;}
.y29f{bottom:682.188800pt;}
.y298{bottom:682.508546pt;}
.yfd{bottom:683.788014pt;}
.y2ba{bottom:684.268800pt;}
.y8{bottom:685.120548pt;}
.y15e{bottom:685.228548pt;}
.y25d{bottom:687.308800pt;}
.y2a0{bottom:688.108800pt;}
.y25f{bottom:690.348800pt;}
.y97{bottom:691.788020pt;}
.y3e{bottom:691.788553pt;}
.y2bc{bottom:691.948800pt;}
.y66{bottom:692.637333pt;}
.y2e4{bottom:693.228555pt;}
.y24e{bottom:693.388555pt;}
.y2ec{bottom:693.708555pt;}
.y261{bottom:693.868800pt;}
.y2a1{bottom:694.028800pt;}
.y2be{bottom:694.988800pt;}
.y2e3{bottom:695.788557pt;}
.y2eb{bottom:696.268557pt;}
.y2a2{bottom:697.068800pt;}
.y263{bottom:701.548800pt;}
.y2c0{bottom:702.188800pt;}
.y7{bottom:703.520563pt;}
.y2a4{bottom:704.748800pt;}
.y265{bottom:707.308800pt;}
.y2a6{bottom:707.788800pt;}
.y65{bottom:708.193333pt;}
.y1ec{bottom:709.068567pt;}
.y2c1{bottom:709.228800pt;}
.y2e2{bottom:712.588570pt;}
.y2ea{bottom:713.068570pt;}
.y27a{bottom:714.028571pt;}
.y1ba{bottom:714.988572pt;}
.y2a8{bottom:714.988800pt;}
.y2e1{bottom:715.148572pt;}
.y1ef{bottom:715.148800pt;}
.y2e9{bottom:715.468572pt;}
.y2c3{bottom:716.268800pt;}
.y6{bottom:717.920574pt;}
.y267{bottom:718.028800pt;}
.y2b2{bottom:718.188575pt;}
.yea{bottom:718.668042pt;}
.y1{bottom:719.009333pt;}
.y2c5{bottom:719.308800pt;}
.y2a9{bottom:720.748800pt;}
.y269{bottom:721.068800pt;}
.y1f1{bottom:721.708800pt;}
.y13f{bottom:723.628579pt;}
.y64{bottom:723.749333pt;}
.y26a{bottom:723.948800pt;}
.y2aa{bottom:724.428800pt;}
.y2c7{bottom:726.348800pt;}
.yfc{bottom:726.668048pt;}
.y22e{bottom:726.668581pt;}
.y5{bottom:727.840582pt;}
.y1f3{bottom:728.748800pt;}
.y26c{bottom:729.868800pt;}
.y2ab{bottom:730.348800pt;}
.y1f5{bottom:731.788800pt;}
.y2c9{bottom:732.268800pt;}
.y2ac{bottom:732.748800pt;}
.y3d{bottom:734.348587pt;}
.y96{bottom:734.668054pt;}
.ya5{bottom:734.668588pt;}
.y299{bottom:734.988588pt;}
.y26e{bottom:735.788800pt;}
.y2ca{bottom:735.948800pt;}
.y177{bottom:737.548590pt;}
.y1f7{bottom:737.708800pt;}
.y2ad{bottom:738.668800pt;}
.y63{bottom:739.305333pt;}
.y270{bottom:741.708800pt;}
.y1f9{bottom:743.628800pt;}
.y2cb{bottom:744.108800pt;}
.y272{bottom:747.148800pt;}
.y1fb{bottom:749.548800pt;}
.y274{bottom:750.028800pt;}
.y4{bottom:752.160602pt;}
.y1fd{bottom:752.588800pt;}
.y275{bottom:752.908800pt;}
.y62{bottom:754.861333pt;}
.y17a{bottom:757.868800pt;}
.y36{bottom:758.061333pt;}
.y1bd{bottom:758.508800pt;}
.y135{bottom:758.668800pt;}
.y1ff{bottom:759.628800pt;}
.y160{bottom:759.948608pt;}
.y276{bottom:760.108800pt;}
.ye9{bottom:761.708076pt;}
.y17b{bottom:764.428800pt;}
.y24f{bottom:765.068612pt;}
.y200{bottom:765.548800pt;}
.y13c{bottom:766.188613pt;}
.y1be{bottom:766.348800pt;}
.y278{bottom:767.148800pt;}
.y110{bottom:767.468614pt;}
.y137{bottom:768.268615pt;}
.y201{bottom:769.068800pt;}
.y1c0{bottom:769.228800pt;}
.yfb{bottom:769.708082pt;}
.y61{bottom:770.417333pt;}
.y3{bottom:770.560616pt;}
.y17d{bottom:771.468800pt;}
.y279{bottom:773.708800pt;}
.y17f{bottom:774.508800pt;}
.y202{bottom:774.988800pt;}
.y211{bottom:775.628621pt;}
.y1c2{bottom:776.428800pt;}
.y22f{bottom:776.588621pt;}
.y203{bottom:777.388800pt;}
.y95{bottom:777.708089pt;}
.y3c{bottom:777.708622pt;}
.y181{bottom:780.428800pt;}
.y204{bottom:783.308800pt;}
.y1c4{bottom:783.628800pt;}
.y2{bottom:784.960628pt;}
.y60{bottom:785.973333pt;}
.y183{bottom:786.348800pt;}
.y29a{bottom:787.468630pt;}
.y205{bottom:789.228800pt;}
.y1c6{bottom:790.828800pt;}
.y163{bottom:791.948634pt;}
.y185{bottom:792.268800pt;}
.y1c8{bottom:793.708800pt;}
.y187{bottom:795.308800pt;}
.y1ca{bottom:797.388800pt;}
.y207{bottom:799.948800pt;}
.y2e8{bottom:800.268640pt;}
.y1cc{bottom:800.268800pt;}
.y1ed{bottom:800.588640pt;}
.y5f{bottom:801.529333pt;}
.y208{bottom:802.828800pt;}
.y189{bottom:802.988800pt;}
.ye8{bottom:804.588110pt;}
.y18b{bottom:806.028800pt;}
.y209{bottom:806.348800pt;}
.y1ce{bottom:806.668800pt;}
.y20a{bottom:809.388800pt;}
.y2b3{bottom:809.708648pt;}
.y113{bottom:811.948650pt;}
.y10e{bottom:812.108650pt;}
.y210{bottom:812.428650pt;}
.yfa{bottom:812.588117pt;}
.y1cf{bottom:812.588800pt;}
.y1bb{bottom:812.748650pt;}
.y18d{bottom:813.068800pt;}
.y2e0{bottom:813.708118pt;}
.y293{bottom:813.708651pt;}
.y111{bottom:815.468652pt;}
.y20c{bottom:815.628800pt;}
.y5e{bottom:817.085333pt;}
.y18f{bottom:820.268800pt;}
.y94{bottom:820.588123pt;}
.y3b{bottom:820.588656pt;}
.y20e{bottom:821.548800pt;}
.y191{bottom:827.308800pt;}
.y178{bottom:829.228663pt;}
.y193{bottom:830.188800pt;}
.y292{bottom:832.108132pt;}
.y5d{bottom:832.641333pt;}
.y250{bottom:836.908670pt;}
.y195{bottom:837.388800pt;}
.y116{bottom:839.788672pt;}
.y197{bottom:843.308800pt;}
.y199{bottom:846.828800pt;}
.y5c{bottom:848.197333pt;}
.y161{bottom:849.708680pt;}
.y24a{bottom:850.508147pt;}
.y19b{bottom:852.748800pt;}
.y22b{bottom:854.348683pt;}
.y19d{bottom:855.148800pt;}
.ye7{bottom:855.468151pt;}
.y19f{bottom:861.068800pt;}
.y93{bottom:863.468157pt;}
.y3a{bottom:863.468691pt;}
.y5b{bottom:863.753333pt;}
.y22a{bottom:868.908162pt;}
.y5a{bottom:879.309333pt;}
.y229{bottom:887.308177pt;}
.y115{bottom:890.668713pt;}
.y1ee{bottom:892.108714pt;}
.y10f{bottom:893.388715pt;}
.y59{bottom:894.865333pt;}
.y1e9{bottom:905.708191pt;}
.y92{bottom:906.508192pt;}
.y39{bottom:906.508725pt;}
.y1bc{bottom:910.348728pt;}
.y58{bottom:910.421333pt;}
.y179{bottom:920.748737pt;}
.y1b7{bottom:924.108206pt;}
.y57{bottom:925.977333pt;}
.y162{bottom:939.628752pt;}
.y139{bottom:941.068753pt;}
.y56{bottom:941.533333pt;}
.y174{bottom:942.508221pt;}
.y114{bottom:942.988754pt;}
.y91{bottom:949.388226pt;}
.y38{bottom:949.388760pt;}
.y55{bottom:957.089333pt;}
.y157{bottom:960.908235pt;}
.y54{bottom:972.645333pt;}
.y132{bottom:979.308250pt;}
.y10b{bottom:984.108254pt;}
.y53{bottom:988.201333pt;}
.y90{bottom:992.268260pt;}
.y37{bottom:992.268794pt;}
.y131{bottom:997.708265pt;}
.y52{bottom:1003.757333pt;}
.y10a{bottom:1013.548278pt;}
.y130{bottom:1016.108280pt;}
.y51{bottom:1019.313333pt;}
.y35{bottom:1030.426667pt;}
.y107{bottom:1033.868827pt;}
.y50{bottom:1034.869333pt;}
.y8d{bottom:1038.028830pt;}
.y106{bottom:1050.348840pt;}
.y4f{bottom:1050.425333pt;}
.y8c{bottom:1053.388843pt;}
.y105{bottom:1063.468851pt;}
.y8b{bottom:1065.868853pt;}
.y4e{bottom:1097.093333pt;}
.h2{height:0.000000pt;}
.h47{height:2.560000pt;}
.h43{height:3.200000pt;}
.h4d{height:3.680000pt;}
.h46{height:3.840000pt;}
.h53{height:5.600000pt;}
.h44{height:6.080000pt;}
.h49{height:6.400000pt;}
.h41{height:6.720000pt;}
.h4b{height:7.200000pt;}
.h42{height:7.360000pt;}
.h4c{height:7.840000pt;}
.h45{height:8.000000pt;}
.h37{height:9.600000pt;}
.h51{height:10.400000pt;}
.h3f{height:11.680000pt;}
.h6{height:13.600000pt;}
.h3a{height:14.120599pt;}
.h2d{height:15.200000pt;}
.h38{height:18.886665pt;}
.h50{height:22.805329pt;}
.h5b{height:23.342555pt;}
.h57{height:23.443499pt;}
.h3d{height:23.652731pt;}
.h3c{height:26.854159pt;}
.h15{height:27.040000pt;}
.h12{height:27.360000pt;}
.h5c{height:27.992092pt;}
.h5a{height:28.011777pt;}
.h58{height:28.112074pt;}
.h56{height:28.131843pt;}
.h36{height:28.451564pt;}
.h59{height:29.288476pt;}
.h22{height:29.600000pt;}
.h2b{height:29.794086pt;}
.h20{height:30.240000pt;}
.h3e{height:30.329760pt;}
.h52{height:30.844621pt;}
.h4a{height:30.899136pt;}
.h55{height:30.904727pt;}
.h40{height:30.955980pt;}
.h54{height:30.997449pt;}
.h48{height:31.177767pt;}
.h4f{height:32.597843pt;}
.h39{height:33.252588pt;}
.h3b{height:34.532589pt;}
.h17{height:34.579966pt;}
.h4e{height:36.128357pt;}
.hd{height:36.448029pt;}
.h2a{height:36.909092pt;}
.h5{height:37.186280pt;}
.h35{height:38.017735pt;}
.h32{height:38.525121pt;}
.h2f{height:38.566967pt;}
.h31{height:39.996107pt;}
.h2e{height:40.038041pt;}
.h1f{height:40.260970pt;}
.he{height:40.800033pt;}
.h23{height:41.280000pt;}
.h1d{height:41.440000pt;}
.h25{height:42.560000pt;}
.h30{height:44.468786pt;}
.h3{height:45.022536pt;}
.hf{height:45.152036pt;}
.h28{height:47.040000pt;}
.h4{height:48.185039pt;}
.h34{height:49.907852pt;}
.h2c{height:52.028479pt;}
.hc{height:54.400044pt;}
.h7{height:55.625000pt;}
.h33{height:59.143485pt;}
.ha{height:63.648051pt;}
.h10{height:63.650184pt;}
.h1a{height:69.359118pt;}
.h13{height:72.852299pt;}
.h11{height:72.854432pt;}
.h19{height:73.303827pt;}
.h21{height:75.082341pt;}
.hb{height:75.360060pt;}
.h18{height:90.665379pt;}
.h1c{height:93.440688pt;}
.h1b{height:97.282824pt;}
.h14{height:98.800680pt;}
.h26{height:101.825015pt;}
.h24{height:104.461564pt;}
.h1e{height:130.003411pt;}
.h27{height:141.668469pt;}
.h16{height:154.480725pt;}
.h29{height:188.891950pt;}
.h9{height:266.873145pt;}
.h1{height:266.953671pt;}
.h0{height:1056.000000pt;}
.h8{height:1122.666667pt;}
.we{width:4.000000pt;}
.w14{width:5.440000pt;}
.w1{width:5.920000pt;}
.w4{width:6.720000pt;}
.w10{width:6.880000pt;}
.wf{width:7.840000pt;}
.wd{width:9.280000pt;}
.w15{width:12.160000pt;}
.w13{width:12.320000pt;}
.w3{width:14.560000pt;}
.w11{width:14.880000pt;}
.w5{width:16.320000pt;}
.w12{width:22.560000pt;}
.w7{width:54.720000pt;}
.wb{width:76.000000pt;}
.w6{width:95.200000pt;}
.w8{width:99.680000pt;}
.w9{width:129.920000pt;}
.wc{width:138.240000pt;}
.wa{width:164.000000pt;}
.w2{width:793.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x60{left:9.760204pt;}
.x19{left:10.666667pt;}
.x51{left:11.840176pt;}
.x44{left:75.520060pt;}
.x6e{left:86.720069pt;}
.x78{left:95.840077pt;}
.x1d{left:104.000083pt;}
.x43{left:105.440084pt;}
.x70{left:108.480092pt;}
.x18{left:113.440091pt;}
.x79{left:116.960094pt;}
.x3{left:120.000096pt;}
.x4{left:125.920101pt;}
.x6f{left:137.120110pt;}
.xf{left:140.960113pt;}
.x38{left:150.880121pt;}
.xd{left:157.280126pt;}
.x2e{left:160.640129pt;}
.x42{left:164.000131pt;}
.x6{left:173.120138pt;}
.x31{left:174.240139pt;}
.xc{left:182.400146pt;}
.x68{left:188.960151pt;}
.x1f{left:197.120158pt;}
.xb{left:202.240162pt;}
.x17{left:207.520166pt;}
.x1c{left:210.560168pt;}
.x69{left:211.680169pt;}
.x1b{left:213.660000pt;}
.x52{left:222.240178pt;}
.x32{left:223.840179pt;}
.x12{left:224.993333pt;}
.x6a{left:226.240181pt;}
.x15{left:229.280183pt;}
.x10{left:232.640186pt;}
.x45{left:233.760000pt;}
.x13{left:235.214667pt;}
.x1{left:237.052000pt;}
.x8{left:240.800193pt;}
.xe{left:243.520195pt;}
.x46{left:245.280000pt;}
.x14{left:246.560197pt;}
.x24{left:247.680198pt;}
.x7b{left:249.120199pt;}
.x27{left:252.320000pt;}
.x7a{left:253.280203pt;}
.x55{left:254.720204pt;}
.x5e{left:255.840205pt;}
.x58{left:261.760226pt;}
.x63{left:262.880210pt;}
.x25{left:264.800212pt;}
.x1a{left:267.000000pt;}
.x65{left:268.000217pt;}
.x5b{left:268.960215pt;}
.x23{left:271.520000pt;}
.x11{left:278.333333pt;}
.x22{left:280.000224pt;}
.x21{left:282.720000pt;}
.x9{left:287.040000pt;}
.x53{left:288.000230pt;}
.x7{left:296.160237pt;}
.xa{left:299.040239pt;}
.x26{left:300.000240pt;}
.x77{left:305.600244pt;}
.x28{left:308.480247pt;}
.x3e{left:316.320253pt;}
.x29{left:317.440254pt;}
.x1e{left:319.520256pt;}
.x6d{left:327.840262pt;}
.x57{left:331.840265pt;}
.x5a{left:332.960266pt;}
.x3b{left:334.560268pt;}
.x64{left:359.360279pt;}
.x3d{left:361.120289pt;}
.x35{left:362.880290pt;}
.x33{left:369.440000pt;}
.x3a{left:371.360297pt;}
.x56{left:374.880300pt;}
.x47{left:377.760302pt;}
.x50{left:381.600305pt;}
.x2f{left:383.520307pt;}
.x71{left:388.800311pt;}
.x67{left:391.040557pt;}
.x62{left:394.560235pt;}
.x16{left:396.800317pt;}
.x72{left:404.800324pt;}
.x5f{left:406.880400pt;}
.x5{left:408.000326pt;}
.x2a{left:412.160330pt;}
.x39{left:414.720000pt;}
.x2b{left:424.000339pt;}
.x4d{left:426.400341pt;}
.x75{left:427.360344pt;}
.x66{left:433.120346pt;}
.x7c{left:435.040348pt;}
.x3c{left:440.480000pt;}
.x37{left:443.040000pt;}
.x73{left:456.000365pt;}
.x34{left:460.000368pt;}
.x2c{left:462.720370pt;}
.x59{left:469.600376pt;}
.x2d{left:471.840377pt;}
.x2{left:475.040380pt;}
.x36{left:479.040000pt;}
.x74{left:480.000331pt;}
.x30{left:483.520000pt;}
.x81{left:490.560392pt;}
.x41{left:496.320397pt;}
.x5d{left:524.960000pt;}
.x48{left:546.880000pt;}
.x61{left:547.840438pt;}
.x54{left:548.960439pt;}
.x7d{left:552.640442pt;}
.x49{left:556.000000pt;}
.x4a{left:559.680000pt;}
.x7e{left:563.520451pt;}
.x4b{left:567.520000pt;}
.x7f{left:571.200457pt;}
.x4c{left:574.400000pt;}
.x6b{left:579.040000pt;}
.x80{left:582.080466pt;}
.x5c{left:585.600468pt;}
.x6c{left:604.480484pt;}
.x4e{left:655.040524pt;}
.x40{left:680.320544pt;}
.x3f{left:697.440000pt;}
.x4f{left:700.000560pt;}
.x20{left:704.853333pt;}
.x76{left:706.880566pt;}
}




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