
    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_a2375b07cd25edaa05baa83d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2e8074d022e992deb988f9fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77879e4a27db0cd0f6f40887.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e9bbe6a9bb33730d31572e45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_fb54f13a0a657f113468fc94.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4466b1adcb67b979d52d071a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9b5248ee0b54e506f8782492.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056641;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_045df4d05a4b028b98383975.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_00c1902717bd9032a401abb1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.749512;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_da75e59db8482d321b2b5182.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_f4a4a9f0521b0124e224aa11.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936523;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_565d344ad3783e4343eb099a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_ff677d2ebba71e6a3d5e66d3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c996bcc43d626de3576f1d5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.033203;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_365cb52a029b209afaa2378e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_180ace5dd253ceff33b9cf12.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.731445;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;}
.m13{transform:matrix(0.000000,-0.249475,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249475,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249475,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249381,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249381,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249381,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249386,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249386,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249386,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.249416,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249416,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249416,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249166,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249166,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249166,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249290,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249290,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249290,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m14{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250586,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250629,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m7{transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.120000px;}
.v18{vertical-align:-20.444062px;}
.v4{vertical-align:-14.760000px;}
.v8{vertical-align:-10.440000px;}
.v3{vertical-align:-9.000000px;}
.v16{vertical-align:-7.244873px;}
.v10{vertical-align:-4.003373px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:1.795036px;}
.v5{vertical-align:2.880000px;}
.v14{vertical-align:4.697560px;}
.v15{vertical-align:7.661496px;}
.v9{vertical-align:10.440000px;}
.v13{vertical-align:15.966224px;}
.v11{vertical-align:17.024975px;}
.vb{vertical-align:20.880000px;}
.va{vertical-align:25.920000px;}
.v12{vertical-align:28.864831px;}
.vf{vertical-align:29.880000px;}
.vc{vertical-align:31.680000px;}
.v1{vertical-align:33.120000px;}
.ve{vertical-align:36.360000px;}
.v7{vertical-align:42.120000px;}
.vd{vertical-align:44.280000px;}
.ls58{letter-spacing:-5.832000px;}
.lsb{letter-spacing:-3.744000px;}
.ls40{letter-spacing:-2.516779px;}
.ls50{letter-spacing:-2.428949px;}
.ls49{letter-spacing:-2.409466px;}
.ls4a{letter-spacing:-2.362129px;}
.ls51{letter-spacing:-2.312126px;}
.ls35{letter-spacing:-0.648000px;}
.ls55{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.287129px;}
.ls2c{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls54{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.072000px;}
.ls2e{letter-spacing:-0.045360px;}
.ls30{letter-spacing:-0.034662px;}
.ls2d{letter-spacing:-0.021960px;}
.ls3b{letter-spacing:-0.011408px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.014040px;}
.ls26{letter-spacing:0.018720px;}
.ls28{letter-spacing:0.021960px;}
.ls10{letter-spacing:0.025200px;}
.ls1c{letter-spacing:0.025320px;}
.ls42{letter-spacing:0.040218px;}
.ls2b{letter-spacing:0.044392px;}
.ls2{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.074982px;}
.ls4c{letter-spacing:0.077103px;}
.ls3d{letter-spacing:0.079891px;}
.ls29{letter-spacing:0.090600px;}
.ls25{letter-spacing:0.090720px;}
.ls23{letter-spacing:0.094800px;}
.ls37{letter-spacing:0.094875px;}
.ls20{letter-spacing:0.100800px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.200293px;}
.ls2a{letter-spacing:0.203108px;}
.ls2f{letter-spacing:0.215371px;}
.ls38{letter-spacing:0.245577px;}
.ls33{letter-spacing:0.255960px;}
.ls48{letter-spacing:0.257893px;}
.ls21{letter-spacing:0.264000px;}
.ls4d{letter-spacing:0.265189px;}
.ls3e{letter-spacing:0.274778px;}
.ls1d{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.300000px;}
.ls39{letter-spacing:0.357937px;}
.ls1e{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.848160px;}
.ls9{letter-spacing:1.203120px;}
.ls22{letter-spacing:1.350000px;}
.ls18{letter-spacing:2.103120px;}
.ls19{letter-spacing:2.226960px;}
.ls11{letter-spacing:2.298600px;}
.ls59{letter-spacing:2.520000px;}
.ls24{letter-spacing:3.960000px;}
.ls34{letter-spacing:4.140000px;}
.lse{letter-spacing:4.332960px;}
.ls56{letter-spacing:5.991120px;}
.ls53{letter-spacing:6.840000px;}
.lsd{letter-spacing:9.270000px;}
.ls5a{letter-spacing:9.591120px;}
.ls52{letter-spacing:9.720000px;}
.ls57{letter-spacing:11.880000px;}
.ls31{letter-spacing:12.000000px;}
.ls32{letter-spacing:18.720000px;}
.ls8{letter-spacing:19.350000px;}
.ls17{letter-spacing:20.016000px;}
.lsf{letter-spacing:20.160000px;}
.ls1f{letter-spacing:21.510000px;}
.ls7{letter-spacing:27.720000px;}
.ls1a{letter-spacing:30.276720px;}
.ls13{letter-spacing:31.458600px;}
.ls14{letter-spacing:64.080000px;}
.ls1b{letter-spacing:203.040000px;}
.ls44{letter-spacing:215.892401px;}
.ls41{letter-spacing:220.524257px;}
.ls4e{letter-spacing:282.550250px;}
.ls45{letter-spacing:292.526621px;}
.ls46{letter-spacing:305.528258px;}
.ls3c{letter-spacing:307.560445px;}
.ls4b{letter-spacing:326.189666px;}
.ls3f{letter-spacing:328.042303px;}
.ls4f{letter-spacing:338.811274px;}
.ls3{letter-spacing:849.231120px;}
.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;}
}
.ws52{word-spacing:-350.425190px;}
.ws39{word-spacing:-339.287076px;}
.ws4c{word-spacing:-337.370934px;}
.ws32{word-spacing:-318.103133px;}
.ws46{word-spacing:-316.001285px;}
.ws44{word-spacing:-302.553973px;}
.ws50{word-spacing:-292.235627px;}
.ws3e{word-spacing:-231.190084px;}
.ws42{word-spacing:-223.292852px;}
.ws31{word-spacing:-72.195938px;}
.wsa{word-spacing:-72.000000px;}
.ws3c{word-spacing:-60.373943px;}
.ws4a{word-spacing:-56.685339px;}
.ws1a{word-spacing:-50.472900px;}
.wsb{word-spacing:-41.328000px;}
.wsd{word-spacing:-36.072000px;}
.wsc{word-spacing:-29.342880px;}
.ws2b{word-spacing:-19.051946px;}
.ws28{word-spacing:-19.005161px;}
.ws1e{word-spacing:-18.360000px;}
.wsf{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws1c{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.640000px;}
.ws59{word-spacing:-17.568000px;}
.ws1d{word-spacing:-17.352000px;}
.ws17{word-spacing:-16.650000px;}
.ws18{word-spacing:-16.560600px;}
.ws13{word-spacing:-16.491960px;}
.ws10{word-spacing:-16.470000px;}
.ws14{word-spacing:-16.448040px;}
.ws15{word-spacing:-16.424640px;}
.ws30{word-spacing:-16.283715px;}
.ws2d{word-spacing:-16.243727px;}
.ws11{word-spacing:-16.200000px;}
.ws20{word-spacing:-15.030000px;}
.ws7{word-spacing:-14.888880px;}
.ws24{word-spacing:-14.607783px;}
.ws22{word-spacing:-14.281633px;}
.ws3b{word-spacing:-13.644511px;}
.ws35{word-spacing:-13.486908px;}
.ws56{word-spacing:-13.170159px;}
.ws55{word-spacing:-13.133071px;}
.ws4f{word-spacing:-13.016247px;}
.ws19{word-spacing:-12.886623px;}
.ws49{word-spacing:-12.836508px;}
.ws29{word-spacing:-12.670107px;}
.ws48{word-spacing:-12.658169px;}
.ws41{word-spacing:-12.636508px;}
.ws5a{word-spacing:-12.168000px;}
.ws3{word-spacing:-12.150000px;}
.wse{word-spacing:-12.064800px;}
.ws0{word-spacing:-11.970000px;}
.ws58{word-spacing:-11.875200px;}
.ws53{word-spacing:-11.613916px;}
.ws1b{word-spacing:-11.406875px;}
.ws3a{word-spacing:-11.244773px;}
.ws4d{word-spacing:-11.181268px;}
.ws37{word-spacing:-10.953660px;}
.ws2e{word-spacing:-10.883297px;}
.ws16{word-spacing:-10.710000px;}
.ws3f{word-spacing:-10.665827px;}
.ws33{word-spacing:-10.542687px;}
.ws12{word-spacing:-10.530000px;}
.ws47{word-spacing:-10.473027px;}
.ws45{word-spacing:-10.027351px;}
.ws51{word-spacing:-9.685377px;}
.ws26{word-spacing:-8.054291px;}
.ws43{word-spacing:-7.400451px;}
.ws2c{word-spacing:-1.868747px;}
.ws3d{word-spacing:-0.784861px;}
.ws57{word-spacing:-0.757576px;}
.ws4b{word-spacing:-0.736909px;}
.ws2a{word-spacing:-0.290369px;}
.ws2f{word-spacing:-0.112737px;}
.ws6{word-spacing:0.000000px;}
.ws40{word-spacing:0.188195px;}
.ws4e{word-spacing:0.193473px;}
.ws54{word-spacing:0.290598px;}
.ws38{word-spacing:0.301065px;}
.ws34{word-spacing:0.351376px;}
.ws27{word-spacing:0.352906px;}
.ws21{word-spacing:172.579760px;}
.ws23{word-spacing:173.041995px;}
.ws36{word-spacing:357.129207px;}
.ws25{word-spacing:453.969868px;}
._3e{margin-left:-338.811274px;}
._2f{margin-left:-328.036440px;}
._39{margin-left:-326.189666px;}
._28{margin-left:-307.560445px;}
._36{margin-left:-305.528258px;}
._35{margin-left:-292.521393px;}
._3a{margin-left:-282.545200px;}
._30{margin-left:-220.524257px;}
._31{margin-left:-215.888543px;}
._1a{margin-left:-161.406720px;}
._20{margin-left:-9.344040px;}
._14{margin-left:-7.344000px;}
._1b{margin-left:-5.328000px;}
._5{margin-left:-4.272000px;}
._16{margin-left:-2.880000px;}
._0{margin-left:-1.062000px;}
._2{width:1.680000px;}
._6{width:2.880000px;}
._11{width:4.464000px;}
._7{width:5.832000px;}
._8{width:6.960000px;}
._1{width:7.992000px;}
._12{width:9.048000px;}
._c{width:10.080000px;}
._e{width:11.424000px;}
._d{width:12.600000px;}
._f{width:13.752000px;}
._4{width:15.264000px;}
._3{width:16.272000px;}
._9{width:19.872000px;}
._a{width:21.096000px;}
._19{width:22.104000px;}
._1c{width:23.466000px;}
._15{width:24.480000px;}
._10{width:25.776000px;}
._b{width:27.192000px;}
._13{width:28.536000px;}
._17{width:29.712000px;}
._22{width:31.392000px;}
._23{width:32.406000px;}
._40{width:33.546000px;}
._41{width:34.620000px;}
._21{width:185.864865px;}
._18{width:203.075520px;}
._2a{width:417.968804px;}
._3c{width:423.057366px;}
._29{width:433.793579px;}
._2b{width:436.684727px;}
._3b{width:442.812605px;}
._32{width:445.055489px;}
._3d{width:448.892634px;}
._2e{width:450.570733px;}
._34{width:454.219619px;}
._37{width:465.679505px;}
._2c{width:468.682916px;}
._38{width:471.590614px;}
._33{width:479.019454px;}
._3f{width:488.403111px;}
._2d{width:491.272833px;}
._25{width:1117.415239px;}
._24{width:1119.316632px;}
._1d{width:1148.613202px;}
._27{width:1184.243618px;}
._26{width:1210.259151px;}
._1f{width:1245.967886px;}
._1e{width:1249.224543px;}
.fc6{color:rgb(0,0,10);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:16.799810px;}
.fs30{font-size:26.620328px;}
.fs15{font-size:28.972271px;}
.fsf{font-size:30.387830px;}
.fs13{font-size:30.469221px;}
.fs31{font-size:32.405410px;}
.fs3d{font-size:34.839486px;}
.fs17{font-size:35.386558px;}
.fs33{font-size:36.069610px;}
.fsd{font-size:37.094541px;}
.fs35{font-size:37.672759px;}
.fs22{font-size:37.923335px;}
.fs2c{font-size:38.366285px;}
.fs29{font-size:39.401653px;}
.fs39{font-size:40.220387px;}
.fs2a{font-size:40.448824px;}
.fs40{font-size:41.776678px;}
.fs5{font-size:42.120000px;}
.fs3e{font-size:42.410741px;}
.fs34{font-size:43.908192px;}
.fs38{font-size:44.307664px;}
.fs2f{font-size:44.421273px;}
.fs3c{font-size:45.561052px;}
.fs23{font-size:46.164766px;}
.fs26{font-size:47.208514px;}
.fs1{font-size:47.880000px;}
.fs1c{font-size:48.156183px;}
.fs2b{font-size:49.239089px;}
.fs9{font-size:50.472900px;}
.fs4{font-size:51.120000px;}
.fse{font-size:52.405619px;}
.fs12{font-size:52.545982px;}
.fs19{font-size:56.062422px;}
.fsc{font-size:56.067486px;}
.fs32{font-size:56.685339px;}
.fs36{font-size:56.798709px;}
.fs3{font-size:56.880000px;}
.fs3f{font-size:58.275040px;}
.fs6{font-size:60.120000px;}
.fs28{font-size:60.373943px;}
.fs27{font-size:60.494690px;}
.fs8{font-size:60.810723px;}
.fs11{font-size:63.794314px;}
.fs10{font-size:63.975932px;}
.fs14{font-size:64.148812px;}
.fs2{font-size:65.880000px;}
.fs2d{font-size:66.321846px;}
.fs37{font-size:66.461496px;}
.fs2e{font-size:66.575105px;}
.fs20{font-size:67.107996px;}
.fs3a{font-size:68.181797px;}
.fs3b{font-size:68.341578px;}
.fs7{font-size:69.442923px;}
.fs24{font-size:70.637513px;}
.fs25{font-size:70.812771px;}
.fs1b{font-size:71.874900px;}
.fs0{font-size:72.000000px;}
.fs1e{font-size:72.051834px;}
.fs1d{font-size:72.195938px;}
.fs18{font-size:84.093633px;}
.fs1a{font-size:84.300646px;}
.fsa{font-size:91.216084px;}
.fsb{font-size:91.337706px;}
.fs21{font-size:100.661994px;}
.fs1f{font-size:107.812350px;}
.y1a3{bottom:-242.519399px;}
.y1e1{bottom:-216.262904px;}
.y1cf{bottom:-216.262887px;}
.y201{bottom:-208.887441px;}
.y1a4{bottom:-199.994225px;}
.y1e2{bottom:-178.341741px;}
.y1d0{bottom:-178.341723px;}
.y202{bottom:-172.259547px;}
.y1c3{bottom:-159.607723px;}
.y1a5{bottom:-142.075972px;}
.y1c4{bottom:-131.620898px;}
.y1e3{bottom:-126.694039px;}
.y1d1{bottom:-126.694022px;}
.y203{bottom:-122.373247px;}
.y1c5{bottom:-93.503525px;}
.y1a6{bottom:-84.008215px;}
.y1e4{bottom:-74.913020px;}
.y1d2{bottom:-74.913003px;}
.y204{bottom:-72.358175px;}
.y1c6{bottom:-55.287760px;}
.y1a7{bottom:-26.089962px;}
.y1e5{bottom:-23.265319px;}
.y1d3{bottom:-23.265302px;}
.y205{bottom:-22.471875px;}
.y1c7{bottom:-17.170388px;}
.y0{bottom:0.000000px;}
.y212{bottom:1.860795px;}
.y1cc{bottom:3.289490px;}
.yde{bottom:3.600000px;}
.yd6{bottom:3.690000px;}
.ydb{bottom:3.780000px;}
.y11a{bottom:3.960000px;}
.y113{bottom:4.140000px;}
.y20a{bottom:4.305132px;}
.yd8{bottom:4.320000px;}
.yd9{bottom:4.410000px;}
.y1ea{bottom:4.457138px;}
.y1d8{bottom:4.457140px;}
.y1ac{bottom:4.998280px;}
.y116{bottom:9.180000px;}
.yf2{bottom:11.976822px;}
.yd3{bottom:13.140000px;}
.y1cb{bottom:13.229910px;}
.y111{bottom:14.310000px;}
.y11b{bottom:14.490000px;}
.y1eb{bottom:16.399777px;}
.y209{bottom:17.314706px;}
.y1e9{bottom:17.926059px;}
.y1d7{bottom:17.926061px;}
.y117{bottom:19.710000px;}
.y1ab{bottom:20.102463px;}
.y1c8{bottom:21.046342px;}
.yd4{bottom:22.680000px;}
.y1ca{bottom:23.168498px;}
.y119{bottom:24.660000px;}
.y20c{bottom:25.237220px;}
.y19f{bottom:26.238768px;}
.y206{bottom:27.544459px;}
.y1e6{bottom:28.517007px;}
.y1d4{bottom:28.517025px;}
.y145{bottom:29.805623px;}
.yef{bottom:29.824263px;}
.y115{bottom:29.880000px;}
.y208{bottom:30.321882px;}
.y1e8{bottom:31.392496px;}
.y1d6{bottom:31.392498px;}
.y13c{bottom:31.609092px;}
.y1a8{bottom:31.979261px;}
.yd2{bottom:32.130000px;}
.y1c9{bottom:33.109014px;}
.y1aa{bottom:35.203862px;}
.y1d9{bottom:41.090616px;}
.y18a{bottom:41.374816px;}
.yd5{bottom:41.580000px;}
.y1b9{bottom:41.858078px;}
.y13d{bottom:41.902938px;}
.y199{bottom:42.987673px;}
.y207{bottom:43.331583px;}
.y1f7{bottom:43.880922px;}
.y1e7{bottom:44.861547px;}
.y1d5{bottom:44.861549px;}
.y1a9{bottom:50.308192px;}
.y1da{bottom:53.656666px;}
.y1ba{bottom:54.655460px;}
.y19a{bottom:56.130410px;}
.y124{bottom:57.175156px;}
.y134{bottom:57.328290px;}
.y125{bottom:73.326169px;}
.y20d{bottom:76.882049px;}
.y13e{bottom:77.926678px;}
.y135{bottom:78.663599px;}
.y18b{bottom:81.244862px;}
.ya8{bottom:82.890000px;}
.y164{bottom:84.780000px;}
.yed{bottom:84.857968px;}
.y1f8{bottom:86.165934px;}
.yea{bottom:90.900000px;}
.y213{bottom:97.257400px;}
.y80{bottom:98.280000px;}
.y1f5{bottom:101.250000px;}
.ya7{bottom:103.590000px;}
.y55{bottom:103.950000px;}
.y257{bottom:104.220000px;}
.y163{bottom:105.480000px;}
.y1a0{bottom:105.902186px;}
.y29{bottom:109.530000px;}
.ye9{bottom:111.600000px;}
.y122{bottom:112.860000px;}
.y1ec{bottom:113.416734px;}
.y1db{bottom:114.429661px;}
.y188{bottom:114.660000px;}
.y13f{bottom:115.317332px;}
.y1bb{bottom:116.547239px;}
.y7f{bottom:118.980000px;}
.y19b{bottom:119.692425px;}
.y126{bottom:120.820209px;}
.ya6{bottom:124.320000px;}
.y54{bottom:124.680000px;}
.y256{bottom:124.950000px;}
.y1f4{bottom:125.040000px;}
.y162{bottom:126.210000px;}
.y143{bottom:129.707720px;}
.ye8{bottom:132.330000px;}
.y1b7{bottom:134.760000px;}
.y20e{bottom:134.885028px;}
.y18c{bottom:135.546894px;}
.y121{bottom:138.090000px;}
.y187{bottom:138.720000px;}
.y28{bottom:139.350000px;}
.y7e{bottom:139.710000px;}
.y23e{bottom:142.950000px;}
.y1f9{bottom:143.757090px;}
.ya5{bottom:145.020000px;}
.y53{bottom:145.380000px;}
.y255{bottom:145.650000px;}
.y11d{bottom:146.550000px;}
.y161{bottom:146.910000px;}
.y140{bottom:152.707985px;}
.ye7{bottom:153.030000px;}
.y136{bottom:153.718952px;}
.y21a{bottom:156.759858px;}
.y1b5{bottom:156.972251px;}
.y120{bottom:158.790000px;}
.y1f3{bottom:159.870000px;}
.y1fd{bottom:159.930000px;}
.y27{bottom:160.050000px;}
.y23d{bottom:163.650000px;}
.y11c{bottom:163.830000px;}
.y186{bottom:163.920000px;}
.y7d{bottom:164.730000px;}
.ya4{bottom:165.720000px;}
.y52{bottom:166.080000px;}
.y25e{bottom:166.350000px;}
.y160{bottom:167.610000px;}
.y127{bottom:168.314250px;}
.ye6{bottom:173.730000px;}
.y1dc{bottom:175.201292px;}
.y1f2{bottom:175.204934px;}
.y254{bottom:175.350000px;}
.y146{bottom:176.243244px;}
.y1bc{bottom:178.437628px;}
.y11f{bottom:179.490000px;}
.y26{bottom:180.750000px;}
.y19c{bottom:183.253012px;}
.y118{bottom:184.530000px;}
.y185{bottom:185.070000px;}
.y194{bottom:185.159998px;}
.y198{bottom:185.166370px;}
.ya3{bottom:186.420000px;}
.y51{bottom:186.780000px;}
.y15f{bottom:188.310000px;}
.y1b4{bottom:188.706305px;}
.y18d{bottom:189.989096px;}
.y141{bottom:190.098639px;}
.y219{bottom:191.834148px;}
.y20f{bottom:192.736622px;}
.y23c{bottom:193.350000px;}
.y1b6{bottom:193.530000px;}
.y1bf{bottom:193.575000px;}
.ye5{bottom:194.430000px;}
.y7c{bottom:194.610000px;}
.y253{bottom:196.050000px;}
.y11e{bottom:200.550000px;}
.y144{bottom:200.610000px;}
.y133{bottom:200.623435px;}
.y25{bottom:201.450000px;}
.y1fa{bottom:201.496906px;}
.y50{bottom:207.480000px;}
.y15e{bottom:209.010000px;}
.y214{bottom:209.081354px;}
.y23b{bottom:214.050000px;}
.ye4{bottom:215.130000px;}
.y128{bottom:215.998191px;}
.ya2{bottom:216.120000px;}
.y25d{bottom:216.750000px;}
.y169{bottom:219.932476px;}
.y167{bottom:221.777945px;}
.y7b{bottom:224.310000px;}
.y1b2{bottom:224.993560px;}
.y252{bottom:225.750000px;}
.y114{bottom:225.930000px;}
.y142{bottom:227.489292px;}
.y4f{bottom:228.180000px;}
.y15d{bottom:229.710000px;}
.y24{bottom:231.150000px;}
.yf1{bottom:231.418143px;}
.y137{bottom:231.434315px;}
.y1f0{bottom:233.106646px;}
.y12d{bottom:234.617906px;}
.y23a{bottom:234.750000px;}
.y13a{bottom:235.246300px;}
.y1dd{bottom:235.977018px;}
.ya1{bottom:236.820000px;}
.y1bd{bottom:240.332188px;}
.y18e{bottom:244.291128px;}
.ye3{bottom:244.830000px;}
.y251{bottom:246.450000px;}
.y19d{bottom:246.817883px;}
.y218{bottom:248.105983px;}
.y4e{bottom:248.880000px;}
.y15c{bottom:250.410000px;}
.y210{bottom:250.744142px;}
.y23{bottom:251.850000px;}
.y7a{bottom:254.010000px;}
.ya0{bottom:257.520000px;}
.yca{bottom:259.050000px;}
.y1fb{bottom:259.088063px;}
.y1f1{bottom:261.248555px;}
.y129{bottom:263.492232px;}
.y239{bottom:264.450000px;}
.y184{bottom:265.350000px;}
.y1a2{bottom:266.671111px;}
.y25c{bottom:267.150000px;}
.yf9{bottom:267.321807px;}
.y4d{bottom:269.580000px;}
.y1e0{bottom:270.514719px;}
.y15b{bottom:271.110000px;}
.y22{bottom:272.550000px;}
.y193{bottom:273.438183px;}
.yee{bottom:273.706933px;}
.ye2{bottom:274.530000px;}
.y1b3{bottom:274.701439px;}
.y79{bottom:274.710000px;}
.yec{bottom:274.745785px;}
.y250{bottom:276.150000px;}
.y9f{bottom:278.220000px;}
.y110{bottom:278.490000px;}
.yc9{bottom:279.750000px;}
.yf8{bottom:282.524488px;}
.y238{bottom:285.150000px;}
.y192{bottom:287.599449px;}
.y4c{bottom:290.280000px;}
.y183{bottom:290.550000px;}
.y15a{bottom:291.810000px;}
.y21{bottom:293.250000px;}
.ye1{bottom:295.230000px;}
.y78{bottom:295.500000px;}
.y1de{bottom:296.750013px;}
.y24f{bottom:296.850000px;}
.y18f{bottom:298.734704px;}
.y9e{bottom:298.920000px;}
.y112{bottom:299.190000px;}
.y132{bottom:299.398559px;}
.yc8{bottom:300.450000px;}
.y191{bottom:301.757967px;}
.y1be{bottom:302.223967px;}
.y211{bottom:308.747121px;}
.y138{bottom:308.963078px;}
.y19e{bottom:310.379898px;}
.y4b{bottom:310.980000px;}
.y12a{bottom:310.986272px;}
.y182{bottom:311.250000px;}
.yf4{bottom:311.257556px;}
.ye0{bottom:312.510000px;}
.y237{bottom:314.850000px;}
.y190{bottom:315.919233px;}
.y77{bottom:316.110000px;}
.y1fc{bottom:316.829337px;}
.y25b{bottom:317.550000px;}
.y131{bottom:318.967775px;}
.y9d{bottom:319.620000px;}
.yc7{bottom:321.150000px;}
.y20{bottom:322.950000px;}
.yf6{bottom:325.636757px;}
.y24e{bottom:326.550000px;}
.y10f{bottom:329.250000px;}
.ydf{bottom:331.500000px;}
.y4a{bottom:331.680000px;}
.y181{bottom:331.950000px;}
.y159{bottom:333.210000px;}
.y236{bottom:335.550000px;}
.y76{bottom:336.810000px;}
.y130{bottom:338.536991px;}
.y9c{bottom:340.320000px;}
.yc6{bottom:341.850000px;}
.y1a1{bottom:341.930341px;}
.y1f{bottom:343.650000px;}
.y1df{bottom:343.902864px;}
.y21b{bottom:344.162674px;}
.y24d{bottom:347.250000px;}
.y10e{bottom:349.950000px;}
.ydd{bottom:350.490000px;}
.y49{bottom:352.380000px;}
.y180{bottom:352.650000px;}
.y158{bottom:353.910000px;}
.yf5{bottom:354.800566px;}
.y235{bottom:356.250000px;}
.y12f{bottom:358.100510px;}
.y12b{bottom:358.480313px;}
.y9b{bottom:361.020000px;}
.yc5{bottom:362.550000px;}
.y1e{bottom:364.350000px;}
.y75{bottom:366.510000px;}
.y24c{bottom:367.950000px;}
.ydc{bottom:369.390000px;}
.y48{bottom:373.080000px;}
.y17f{bottom:373.350000px;}
.y157{bottom:374.610000px;}
.y10d{bottom:375.150000px;}
.y12e{bottom:377.669726px;}
.y9a{bottom:381.720000px;}
.yc4{bottom:383.250000px;}
.yf3{bottom:383.622315px;}
.y1d{bottom:385.050000px;}
.y234{bottom:385.950000px;}
.y139{bottom:386.684154px;}
.y74{bottom:387.210000px;}
.y13b{bottom:387.679401px;}
.yda{bottom:388.380000px;}
.y14f{bottom:389.352323px;}
.y47{bottom:393.780000px;}
.y17e{bottom:394.050000px;}
.y156{bottom:395.310000px;}
.y24b{bottom:397.650000px;}
.y10c{bottom:400.350000px;}
.y99{bottom:402.420000px;}
.yf7{bottom:403.563166px;}
.yc3{bottom:403.950000px;}
.y1c{bottom:405.750000px;}
.y12c{bottom:405.974353px;}
.y233{bottom:406.650000px;}
.yd7{bottom:407.370000px;}
.y73{bottom:407.910000px;}
.y46{bottom:414.480000px;}
.y17d{bottom:414.750000px;}
.y155{bottom:416.010000px;}
.y24a{bottom:418.350000px;}
.y10b{bottom:421.050000px;}
.yf0{bottom:421.565672px;}
.yc2{bottom:424.650000px;}
.y1b{bottom:426.450000px;}
.yd1{bottom:428.340000px;}
.y72{bottom:428.610000px;}
.y147{bottom:430.291068px;}
.y98{bottom:432.120000px;}
.y17c{bottom:435.450000px;}
.y232{bottom:436.350000px;}
.y154{bottom:436.710000px;}
.y10a{bottom:441.750000px;}
.y1a{bottom:447.150000px;}
.y249{bottom:448.050000px;}
.y45{bottom:448.590000px;}
.y71{bottom:449.310000px;}
.y97{bottom:452.820000px;}
.yc1{bottom:454.350000px;}
.y1c0{bottom:454.970700px;}
.y17b{bottom:456.150000px;}
.y231{bottom:457.050000px;}
.y195{bottom:457.634486px;}
.y153{bottom:461.910000px;}
.y109{bottom:462.450000px;}
.y19{bottom:467.850000px;}
.y1fe{bottom:468.385635px;}
.y248{bottom:468.750000px;}
.y70{bottom:470.010000px;}
.y96{bottom:473.520000px;}
.yc0{bottom:475.050000px;}
.y17a{bottom:476.850000px;}
.y230{bottom:477.750000px;}
.y44{bottom:479.730000px;}
.y168{bottom:480.311500px;}
.y108{bottom:483.150000px;}
.y166{bottom:485.778005px;}
.y152{bottom:487.110000px;}
.y18{bottom:488.550000px;}
.y6f{bottom:490.710000px;}
.y95{bottom:494.220000px;}
.ybf{bottom:495.750000px;}
.y179{bottom:497.550000px;}
.y247{bottom:498.450000px;}
.yd0{bottom:499.170000px;}
.y43{bottom:500.430000px;}
.y107{bottom:503.850000px;}
.y22f{bottom:507.450000px;}
.y151{bottom:507.810000px;}
.y17{bottom:509.250000px;}
.y6e{bottom:511.410000px;}
.y94{bottom:514.920000px;}
.ybe{bottom:516.450000px;}
.y178{bottom:518.250000px;}
.y246{bottom:519.150000px;}
.ycf{bottom:519.870000px;}
.y42{bottom:521.130000px;}
.y106{bottom:524.550000px;}
.y22e{bottom:528.150000px;}
.y150{bottom:528.420000px;}
.y16{bottom:529.950000px;}
.y6d{bottom:532.110000px;}
.y14a{bottom:534.479725px;}
.y93{bottom:535.620000px;}
.ybd{bottom:537.150000px;}
.y196{bottom:538.145654px;}
.y25a{bottom:539.850000px;}
.y41{bottom:541.830000px;}
.y148{bottom:543.239479px;}
.y105{bottom:545.280000px;}
.y177{bottom:547.980000px;}
.y22d{bottom:548.880000px;}
.y165{bottom:549.585000px;}
.yce{bottom:549.600000px;}
.y1c1{bottom:552.020723px;}
.y6c{bottom:552.840000px;}
.y92{bottom:556.350000px;}
.ybc{bottom:557.880000px;}
.y15{bottom:559.680000px;}
.y40{bottom:562.560000px;}
.y1ff{bottom:563.774591px;}
.y104{bottom:565.980000px;}
.y176{bottom:568.680000px;}
.y245{bottom:569.580000px;}
.ycd{bottom:574.800000px;}
.y149{bottom:575.328627px;}
.y91{bottom:577.050000px;}
.y6b{bottom:578.040000px;}
.ybb{bottom:578.580000px;}
.y14{bottom:580.380000px;}
.y3f{bottom:583.260000px;}
.y14d{bottom:585.181478px;}
.y103{bottom:586.680000px;}
.y175{bottom:589.380000px;}
.y244{bottom:590.280000px;}
.y123{bottom:592.163488px;}
.ycc{bottom:595.500000px;}
.y90{bottom:597.750000px;}
.y6a{bottom:598.740000px;}
.yba{bottom:599.280000px;}
.y13{bottom:601.080000px;}
.y1b1{bottom:601.789851px;}
.y1f6{bottom:606.511054px;}
.y102{bottom:607.380000px;}
.y174{bottom:610.080000px;}
.y259{bottom:610.980000px;}
.y1ef{bottom:611.315949px;}
.ycb{bottom:612.060000px;}
.yeb{bottom:612.090000px;}
.y3e{bottom:612.960000px;}
.y217{bottom:616.744174px;}
.y8f{bottom:618.540000px;}
.yb9{bottom:619.980000px;}
.y12{bottom:621.780000px;}
.y69{bottom:622.410000px;}
.y189{bottom:622.569205px;}
.y1b8{bottom:624.796898px;}
.y1b0{bottom:626.480278px;}
.y101{bottom:628.080000px;}
.y22c{bottom:628.980000px;}
.y173{bottom:630.780000px;}
.y68{bottom:631.500000px;}
.y14c{bottom:632.544042px;}
.y3d{bottom:633.660000px;}
.y14b{bottom:634.565523px;}
.y8e{bottom:639.780000px;}
.yb8{bottom:640.680000px;}
.y11{bottom:642.480000px;}
.y100{bottom:648.780000px;}
.y216{bottom:650.082353px;}
.y172{bottom:651.480000px;}
.y3c{bottom:654.360000px;}
.y22b{bottom:658.680000px;}
.y8d{bottom:660.480000px;}
.yb7{bottom:661.380000px;}
.y67{bottom:662.820000px;}
.y10{bottom:663.180000px;}
.y1ae{bottom:666.805040px;}
.y1ed{bottom:669.217661px;}
.yff{bottom:669.480000px;}
.y171{bottom:672.180000px;}
.y3b{bottom:675.060000px;}
.y22a{bottom:679.380000px;}
.y8c{bottom:681.180000px;}
.y66{bottom:683.520000px;}
.yf{bottom:683.880000px;}
.y200{bottom:687.804738px;}
.yb6{bottom:691.080000px;}
.y1ad{bottom:693.508596px;}
.yfe{bottom:694.680000px;}
.y1ee{bottom:695.458249px;}
.y3a{bottom:695.760000px;}
.y215{bottom:701.340107px;}
.y8b{bottom:701.880000px;}
.y65{bottom:704.220000px;}
.ye{bottom:704.580000px;}
.y1af{bottom:706.438018px;}
.y1ce{bottom:708.974629px;}
.y229{bottom:709.080000px;}
.yb5{bottom:711.780000px;}
.yfd{bottom:715.380000px;}
.y8a{bottom:722.580000px;}
.yd{bottom:725.280000px;}
.y39{bottom:725.460000px;}
.y64{bottom:728.070000px;}
.y228{bottom:729.780000px;}
.yb4{bottom:732.480000px;}
.yfc{bottom:736.080000px;}
.y63{bottom:737.160000px;}
.y258{bottom:741.480000px;}
.y89{bottom:743.280000px;}
.y38{bottom:746.160000px;}
.yb3{bottom:753.180000px;}
.yc{bottom:754.890000px;}
.yfb{bottom:756.780000px;}
.y227{bottom:759.480000px;}
.y243{bottom:762.180000px;}
.y88{bottom:763.980000px;}
.y37{bottom:766.860000px;}
.y62{bottom:768.480000px;}
.y1cd{bottom:773.577731px;}
.y197{bottom:774.748620px;}
.yfa{bottom:777.480000px;}
.y14e{bottom:780.291883px;}
.yb2{bottom:782.880000px;}
.y87{bottom:784.680000px;}
.y36{bottom:787.560000px;}
.yb{bottom:792.870000px;}
.y61{bottom:798.180000px;}
.y20b{bottom:798.270924px;}
.y242{bottom:803.580000px;}
.y86{bottom:805.380000px;}
.y35{bottom:808.260000px;}
.y226{bottom:809.880000px;}
.yb1{bottom:812.580000px;}
.y60{bottom:818.880000px;}
.ya{bottom:822.570000px;}
.y25f{bottom:824.280000px;}
.y85{bottom:826.080000px;}
.y34{bottom:828.960000px;}
.y225{bottom:830.580000px;}
.y241{bottom:833.280000px;}
.y5f{bottom:839.580000px;}
.yb0{bottom:842.280000px;}
.y9{bottom:843.990000px;}
.y84{bottom:846.780000px;}
.y33{bottom:849.660000px;}
.y224{bottom:851.280000px;}
.y240{bottom:853.890000px;}
.y170{bottom:855.780000px;}
.y5e{bottom:860.280000px;}
.yaf{bottom:862.890000px;}
.y83{bottom:867.390000px;}
.y32{bottom:870.360000px;}
.y223{bottom:871.890000px;}
.y8{bottom:872.970000px;}
.y23f{bottom:874.590000px;}
.y16f{bottom:876.390000px;}
.y5d{bottom:880.890000px;}
.yae{bottom:883.590000px;}
.y82{bottom:888.090000px;}
.y31{bottom:891.060000px;}
.y222{bottom:892.590000px;}
.y16e{bottom:897.090000px;}
.y5c{bottom:901.590000px;}
.y7{bottom:902.670000px;}
.yad{bottom:904.290000px;}
.y30{bottom:911.760000px;}
.y221{bottom:913.290000px;}
.y6{bottom:915.090000px;}
.y81{bottom:917.610000px;}
.y16d{bottom:917.790000px;}
.y5b{bottom:922.290000px;}
.yac{bottom:924.990000px;}
.y2f{bottom:932.730000px;}
.y220{bottom:933.990000px;}
.y5{bottom:935.790000px;}
.y16c{bottom:938.490000px;}
.y5a{bottom:942.990000px;}
.yab{bottom:945.690000px;}
.y2e{bottom:953.610000px;}
.y21f{bottom:954.690000px;}
.y4{bottom:956.490000px;}
.y16b{bottom:959.190000px;}
.y59{bottom:963.690000px;}
.yaa{bottom:966.390000px;}
.y2d{bottom:974.700000px;}
.y21e{bottom:975.420000px;}
.y16a{bottom:979.920000px;}
.y1c2{bottom:980.639112px;}
.y58{bottom:984.420000px;}
.y3{bottom:994.680000px;}
.y2c{bottom:995.580000px;}
.ya9{bottom:995.940000px;}
.y21d{bottom:996.120000px;}
.y57{bottom:1005.120000px;}
.y2b{bottom:1016.640000px;}
.y21c{bottom:1021.320000px;}
.y56{bottom:1025.820000px;}
.y2{bottom:1030.680000px;}
.y2a{bottom:1046.520000px;}
.y1{bottom:1048.680000px;}
.h13{height:18.900000px;}
.h12{height:18.990000px;}
.h4e{height:19.133361px;}
.he{height:20.250000px;}
.h1b{height:20.700000px;}
.h2a{height:20.823820px;}
.h4f{height:23.291388px;}
.h60{height:25.040881px;}
.h2d{height:25.434088px;}
.h52{height:25.925032px;}
.h55{height:27.077296px;}
.h3b{height:27.257397px;}
.h49{height:27.575768px;}
.h2c{height:28.032688px;}
.h2b{height:28.041087px;}
.h42{height:28.319938px;}
.h5b{height:28.908403px;}
.h45{height:29.072592px;}
.h64{height:30.026987px;}
.h61{height:30.482720px;}
.h53{height:31.559013px;}
.h3c{height:33.180926px;}
.h46{height:35.390596px;}
.h1e{height:37.666539px;}
.h24{height:37.767425px;}
.h1a{height:41.400000px;}
.h4d{height:41.522524px;}
.h16{height:42.734379px;}
.h5{height:42.923672px;}
.h22{height:45.852163px;}
.h21{height:45.982701px;}
.h28{height:46.106958px;}
.h6{height:46.991602px;}
.h59{height:47.994325px;}
.h58{height:48.090313px;}
.hf{height:48.216717px;}
.h19{height:48.776308px;}
.h65{height:49.340293px;}
.h50{height:50.315250px;}
.h1f{height:50.706084px;}
.h20{height:50.728872px;}
.h25{height:50.841894px;}
.h26{height:50.857127px;}
.h27{height:50.864743px;}
.h47{height:51.117391px;}
.h66{height:51.629182px;}
.h43{height:51.677501px;}
.h1c{height:51.750000px;}
.h62{height:51.774869px;}
.h40{height:51.780856px;}
.h15{height:52.051366px;}
.h5f{height:54.342801px;}
.h4b{height:56.153360px;}
.h56{height:56.261554px;}
.h51{height:56.261557px;}
.hb{height:56.880000px;}
.h57{height:57.396041px;}
.h37{height:57.441561px;}
.h4c{height:57.492232px;}
.h5d{height:57.728142px;}
.h5e{height:59.019677px;}
.h3e{height:59.807347px;}
.h33{height:61.004824px;}
.h32{height:61.126834px;}
.h3f{height:61.153795px;}
.h36{height:62.139121px;}
.h31{height:62.335332px;}
.h44{height:63.092274px;}
.h7{height:64.546875px;}
.h10{height:64.625449px;}
.h11{height:64.657617px;}
.hc{height:66.394687px;}
.h4{height:70.664062px;}
.h30{height:71.375645px;}
.hd{height:72.329063px;}
.h2{height:72.562500px;}
.h2f{height:72.623129px;}
.h8{height:76.043672px;}
.h17{height:78.077049px;}
.h18{height:78.181151px;}
.h3{height:80.111602px;}
.h9{height:80.872734px;}
.h39{height:86.162341px;}
.h34{height:91.282527px;}
.h38{height:93.823838px;}
.ha{height:107.024063px;}
.h29{height:260.362411px;}
.h54{height:338.539468px;}
.h3a{height:340.802118px;}
.h48{height:344.782734px;}
.h41{height:354.087172px;}
.h63{height:355.088950px;}
.h5a{height:361.444812px;}
.h14{height:450.990000px;}
.h1d{height:470.916512px;}
.h23{height:472.210087px;}
.h35{height:513.495000px;}
.h2e{height:862.470000px;}
.h4a{height:869.505000px;}
.h3d{height:877.920002px;}
.h5c{height:903.150000px;}
.h1{height:1169.250000px;}
.h0{height:1169.460000px;}
.w1d{width:47.715622px;}
.w23{width:62.646018px;}
.w4{width:63.720000px;}
.w1e{width:64.899206px;}
.w20{width:64.899208px;}
.w1a{width:72.627985px;}
.w19{width:72.779597px;}
.w2{width:95.692500px;}
.w10{width:105.210000px;}
.wb{width:105.570000px;}
.w6{width:107.010000px;}
.w5{width:127.560000px;}
.wd{width:133.830000px;}
.we{width:134.010000px;}
.wc{width:134.310000px;}
.w7{width:135.360000px;}
.w3{width:191.430000px;}
.wf{width:212.698500px;}
.w9{width:213.058500px;}
.w13{width:369.444953px;}
.w1f{width:480.290161px;}
.w16{width:483.436969px;}
.w1b{width:488.810929px;}
.w18{width:502.202494px;}
.wa{width:507.720000px;}
.w21{width:512.714635px;}
.w24{width:532.279750px;}
.w22{width:559.571010px;}
.w17{width:578.619524px;}
.w1c{width:579.680101px;}
.w11{width:667.925517px;}
.w12{width:669.730429px;}
.w14{width:669.736810px;}
.w15{width:715.896241px;}
.w8{width:720.675698px;}
.w1{width:901.500000px;}
.w0{width:901.530000px;}
.x5e{left:-319.692876px;}
.x5d{left:-300.141750px;}
.x6d{left:-285.077344px;}
.x7b{left:-275.179948px;}
.x6c{left:-267.643165px;}
.x7a{left:-258.351054px;}
.x6b{left:-209.596416px;}
.x6a{left:-196.778343px;}
.x0{left:0.000000px;}
.x1d{left:1.708500px;}
.x23{left:3.600000px;}
.x11{left:4.860000px;}
.x17{left:8.730000px;}
.x6f{left:10.395261px;}
.x1a{left:11.520000px;}
.x29{left:12.615412px;}
.x27{left:13.948500px;}
.x13{left:15.750000px;}
.xb{left:17.098500px;}
.x16{left:18.180000px;}
.x22{left:20.518500px;}
.x20{left:23.040000px;}
.x37{left:24.118500px;}
.xc{left:27.628500px;}
.x18{left:30.060000px;}
.x50{left:32.207977px;}
.x21{left:33.480000px;}
.x33{left:36.990000px;}
.x1b{left:38.340000px;}
.x1c{left:40.140000px;}
.x3a{left:45.988500px;}
.x24{left:49.320000px;}
.x26{left:51.930000px;}
.x25{left:53.190000px;}
.x41{left:54.219892px;}
.x38{left:55.620000px;}
.x45{left:58.578142px;}
.x46{left:59.839049px;}
.xe{left:62.280000px;}
.x14{left:63.810000px;}
.xf{left:64.980000px;}
.x67{left:66.329528px;}
.x59{left:68.146705px;}
.x39{left:69.328500px;}
.x7d{left:72.228058px;}
.x1e{left:76.590000px;}
.x3f{left:78.636829px;}
.x28{left:80.190000px;}
.x56{left:81.434687px;}
.x5b{left:82.887258px;}
.x53{left:83.927369px;}
.x1f{left:85.590000px;}
.x58{left:87.185169px;}
.x76{left:89.010135px;}
.x3e{left:90.063279px;}
.x7c{left:92.406749px;}
.x4{left:106.380000px;}
.x4e{left:108.787499px;}
.x3d{left:110.434735px;}
.x43{left:124.062997px;}
.x82{left:127.710000px;}
.x4c{left:129.873431px;}
.x3c{left:131.849999px;}
.x48{left:136.466174px;}
.x1{left:172.110000px;}
.x54{left:177.404998px;}
.x77{left:186.600000px;}
.x75{left:196.822031px;}
.x32{left:199.080000px;}
.xd{left:202.080000px;}
.x57{left:203.278896px;}
.x52{left:211.903527px;}
.x6e{left:214.108111px;}
.x5a{left:224.757416px;}
.x2{left:229.980000px;}
.x78{left:231.395141px;}
.x55{left:233.949458px;}
.x71{left:235.455471px;}
.x68{left:237.928842px;}
.x44{left:240.758202px;}
.x47{left:256.474508px;}
.x2b{left:266.934795px;}
.x7{left:271.200000px;}
.x2e{left:276.406510px;}
.x4f{left:277.463200px;}
.x6{left:278.580000px;}
.x79{left:289.112367px;}
.x2d{left:291.921842px;}
.x49{left:296.027963px;}
.x5c{left:301.932585px;}
.x2c{left:312.731684px;}
.x5f{left:313.886023px;}
.x2f{left:315.905851px;}
.x70{left:317.634670px;}
.x31{left:319.440000px;}
.x30{left:323.333404px;}
.x4a{left:345.308415px;}
.x9{left:352.110000px;}
.x8{left:358.500000px;}
.x2a{left:371.542660px;}
.x4b{left:384.906902px;}
.x10{left:393.510000px;}
.x5{left:398.730000px;}
.x73{left:403.254178px;}
.x81{left:410.250000px;}
.x72{left:416.354761px;}
.x42{left:417.715649px;}
.x34{left:425.010000px;}
.x7f{left:428.862874px;}
.x80{left:438.878030px;}
.x62{left:440.007559px;}
.x63{left:444.761194px;}
.x66{left:447.056053px;}
.x65{left:451.141405px;}
.x7e{left:453.590453px;}
.x61{left:454.924138px;}
.x60{left:456.197658px;}
.x12{left:457.230000px;}
.x64{left:460.610848px;}
.x3{left:466.770000px;}
.x40{left:479.811870px;}
.x35{left:559.320000px;}
.x69{left:566.155217px;}
.x15{left:584.790000px;}
.x19{left:691.800000px;}
.x36{left:693.150000px;}
.x74{left:746.880000px;}
.x51{left:756.060000px;}
.x3b{left:801.600000px;}
.x4d{left:824.730000px;}
.xa{left:827.160000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v18{vertical-align:-18.172499pt;}
.v4{vertical-align:-13.120000pt;}
.v8{vertical-align:-9.280000pt;}
.v3{vertical-align:-8.000000pt;}
.v16{vertical-align:-6.439887pt;}
.v10{vertical-align:-3.558553pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:1.595587pt;}
.v5{vertical-align:2.560000pt;}
.v14{vertical-align:4.175609pt;}
.v15{vertical-align:6.810219pt;}
.v9{vertical-align:9.280000pt;}
.v13{vertical-align:14.192199pt;}
.v11{vertical-align:15.133311pt;}
.vb{vertical-align:18.560000pt;}
.va{vertical-align:23.040000pt;}
.v12{vertical-align:25.657627pt;}
.vf{vertical-align:26.560000pt;}
.vc{vertical-align:28.160000pt;}
.v1{vertical-align:29.440000pt;}
.ve{vertical-align:32.320000pt;}
.v7{vertical-align:37.440000pt;}
.vd{vertical-align:39.360000pt;}
.ls58{letter-spacing:-5.184000pt;}
.lsb{letter-spacing:-3.328000pt;}
.ls40{letter-spacing:-2.237137pt;}
.ls50{letter-spacing:-2.159066pt;}
.ls49{letter-spacing:-2.141747pt;}
.ls4a{letter-spacing:-2.099670pt;}
.ls51{letter-spacing:-2.055223pt;}
.ls35{letter-spacing:-0.576000pt;}
.ls55{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.255226pt;}
.ls2c{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls54{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2e{letter-spacing:-0.040320pt;}
.ls30{letter-spacing:-0.030811pt;}
.ls2d{letter-spacing:-0.019520pt;}
.ls3b{letter-spacing:-0.010141pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.012480pt;}
.ls26{letter-spacing:0.016640pt;}
.ls28{letter-spacing:0.019520pt;}
.ls10{letter-spacing:0.022400pt;}
.ls1c{letter-spacing:0.022507pt;}
.ls42{letter-spacing:0.035749pt;}
.ls2b{letter-spacing:0.039459pt;}
.ls2{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.066651pt;}
.ls4c{letter-spacing:0.068536pt;}
.ls3d{letter-spacing:0.071014pt;}
.ls29{letter-spacing:0.080533pt;}
.ls25{letter-spacing:0.080640pt;}
.ls23{letter-spacing:0.084267pt;}
.ls37{letter-spacing:0.084333pt;}
.ls20{letter-spacing:0.089600pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.178038pt;}
.ls2a{letter-spacing:0.180540pt;}
.ls2f{letter-spacing:0.191441pt;}
.ls38{letter-spacing:0.218290pt;}
.ls33{letter-spacing:0.227520pt;}
.ls48{letter-spacing:0.229238pt;}
.ls21{letter-spacing:0.234667pt;}
.ls4d{letter-spacing:0.235723pt;}
.ls3e{letter-spacing:0.244247pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.266667pt;}
.ls39{letter-spacing:0.318166pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.753920pt;}
.ls9{letter-spacing:1.069440pt;}
.ls22{letter-spacing:1.200000pt;}
.ls18{letter-spacing:1.869440pt;}
.ls19{letter-spacing:1.979520pt;}
.ls11{letter-spacing:2.043200pt;}
.ls59{letter-spacing:2.240000pt;}
.ls24{letter-spacing:3.520000pt;}
.ls34{letter-spacing:3.680000pt;}
.lse{letter-spacing:3.851520pt;}
.ls56{letter-spacing:5.325440pt;}
.ls53{letter-spacing:6.080000pt;}
.lsd{letter-spacing:8.240000pt;}
.ls5a{letter-spacing:8.525440pt;}
.ls52{letter-spacing:8.640000pt;}
.ls57{letter-spacing:10.560000pt;}
.ls31{letter-spacing:10.666667pt;}
.ls32{letter-spacing:16.640000pt;}
.ls8{letter-spacing:17.200000pt;}
.ls17{letter-spacing:17.792000pt;}
.lsf{letter-spacing:17.920000pt;}
.ls1f{letter-spacing:19.120000pt;}
.ls7{letter-spacing:24.640000pt;}
.ls1a{letter-spacing:26.912640pt;}
.ls13{letter-spacing:27.963200pt;}
.ls14{letter-spacing:56.960000pt;}
.ls1b{letter-spacing:180.480000pt;}
.ls44{letter-spacing:191.904356pt;}
.ls41{letter-spacing:196.021562pt;}
.ls4e{letter-spacing:251.155778pt;}
.ls45{letter-spacing:260.023663pt;}
.ls46{letter-spacing:271.580674pt;}
.ls3c{letter-spacing:273.387063pt;}
.ls4b{letter-spacing:289.946370pt;}
.ls3f{letter-spacing:291.593158pt;}
.ls4f{letter-spacing:301.165576pt;}
.ls3{letter-spacing:754.872107pt;}
.ws52{word-spacing:-311.489058pt;}
.ws39{word-spacing:-301.588512pt;}
.ws4c{word-spacing:-299.885274pt;}
.ws32{word-spacing:-282.758340pt;}
.ws46{word-spacing:-280.890031pt;}
.ws44{word-spacing:-268.936865pt;}
.ws50{word-spacing:-259.765002pt;}
.ws3e{word-spacing:-205.502297pt;}
.ws42{word-spacing:-198.482535pt;}
.ws31{word-spacing:-64.174167pt;}
.wsa{word-spacing:-64.000000pt;}
.ws3c{word-spacing:-53.665727pt;}
.ws4a{word-spacing:-50.386968pt;}
.ws1a{word-spacing:-44.864800pt;}
.wsb{word-spacing:-36.736000pt;}
.wsd{word-spacing:-32.064000pt;}
.wsc{word-spacing:-26.082560pt;}
.ws2b{word-spacing:-16.935063pt;}
.ws28{word-spacing:-16.893476pt;}
.ws1e{word-spacing:-16.320000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws1c{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.680000pt;}
.ws59{word-spacing:-15.616000pt;}
.ws1d{word-spacing:-15.424000pt;}
.ws17{word-spacing:-14.800000pt;}
.ws18{word-spacing:-14.720533pt;}
.ws13{word-spacing:-14.659520pt;}
.ws10{word-spacing:-14.640000pt;}
.ws14{word-spacing:-14.620480pt;}
.ws15{word-spacing:-14.599680pt;}
.ws30{word-spacing:-14.474413pt;}
.ws2d{word-spacing:-14.438869pt;}
.ws11{word-spacing:-14.400000pt;}
.ws20{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.234560pt;}
.ws24{word-spacing:-12.984696pt;}
.ws22{word-spacing:-12.694785pt;}
.ws3b{word-spacing:-12.128454pt;}
.ws35{word-spacing:-11.988362pt;}
.ws56{word-spacing:-11.706808pt;}
.ws55{word-spacing:-11.673841pt;}
.ws4f{word-spacing:-11.569998pt;}
.ws19{word-spacing:-11.454776pt;}
.ws49{word-spacing:-11.410230pt;}
.ws29{word-spacing:-11.262318pt;}
.ws48{word-spacing:-11.251706pt;}
.ws41{word-spacing:-11.232451pt;}
.ws5a{word-spacing:-10.816000pt;}
.ws3{word-spacing:-10.800000pt;}
.wse{word-spacing:-10.724267pt;}
.ws0{word-spacing:-10.640000pt;}
.ws58{word-spacing:-10.555733pt;}
.ws53{word-spacing:-10.323481pt;}
.ws1b{word-spacing:-10.139445pt;}
.ws3a{word-spacing:-9.995354pt;}
.ws4d{word-spacing:-9.938904pt;}
.ws37{word-spacing:-9.736586pt;}
.ws2e{word-spacing:-9.674042pt;}
.ws16{word-spacing:-9.520000pt;}
.ws3f{word-spacing:-9.480735pt;}
.ws33{word-spacing:-9.371278pt;}
.ws12{word-spacing:-9.360000pt;}
.ws47{word-spacing:-9.309357pt;}
.ws45{word-spacing:-8.913201pt;}
.ws51{word-spacing:-8.609224pt;}
.ws26{word-spacing:-7.159370pt;}
.ws43{word-spacing:-6.578179pt;}
.ws2c{word-spacing:-1.661109pt;}
.ws3d{word-spacing:-0.697654pt;}
.ws57{word-spacing:-0.673400pt;}
.ws4b{word-spacing:-0.655031pt;}
.ws2a{word-spacing:-0.258106pt;}
.ws2f{word-spacing:-0.100211pt;}
.ws6{word-spacing:0.000000pt;}
.ws40{word-spacing:0.167285pt;}
.ws4e{word-spacing:0.171976pt;}
.ws54{word-spacing:0.258310pt;}
.ws38{word-spacing:0.267613pt;}
.ws34{word-spacing:0.312335pt;}
.ws27{word-spacing:0.313694pt;}
.ws21{word-spacing:153.404231pt;}
.ws23{word-spacing:153.815107pt;}
.ws36{word-spacing:317.448184pt;}
.ws25{word-spacing:403.528771pt;}
._3e{margin-left:-301.165576pt;}
._2f{margin-left:-291.587946pt;}
._39{margin-left:-289.946370pt;}
._28{margin-left:-273.387063pt;}
._36{margin-left:-271.580674pt;}
._35{margin-left:-260.019016pt;}
._3a{margin-left:-251.151289pt;}
._30{margin-left:-196.021562pt;}
._31{margin-left:-191.900927pt;}
._1a{margin-left:-143.472640pt;}
._20{margin-left:-8.305813pt;}
._14{margin-left:-6.528000pt;}
._1b{margin-left:-4.736000pt;}
._5{margin-left:-3.797333pt;}
._16{margin-left:-2.560000pt;}
._0{margin-left:-0.944000pt;}
._2{width:1.493333pt;}
._6{width:2.560000pt;}
._11{width:3.968000pt;}
._7{width:5.184000pt;}
._8{width:6.186667pt;}
._1{width:7.104000pt;}
._12{width:8.042667pt;}
._c{width:8.960000pt;}
._e{width:10.154667pt;}
._d{width:11.200000pt;}
._f{width:12.224000pt;}
._4{width:13.568000pt;}
._3{width:14.464000pt;}
._9{width:17.664000pt;}
._a{width:18.752000pt;}
._19{width:19.648000pt;}
._1c{width:20.858667pt;}
._15{width:21.760000pt;}
._10{width:22.912000pt;}
._b{width:24.170667pt;}
._13{width:25.365333pt;}
._17{width:26.410667pt;}
._22{width:27.904000pt;}
._23{width:28.805333pt;}
._40{width:29.818667pt;}
._41{width:30.773333pt;}
._21{width:165.213213pt;}
._18{width:180.511573pt;}
._2a{width:371.527826pt;}
._3c{width:376.050992pt;}
._29{width:385.594293pt;}
._2b{width:388.164201pt;}
._3b{width:393.611204pt;}
._32{width:395.604879pt;}
._3d{width:399.015674pt;}
._2e{width:400.507319pt;}
._34{width:403.750772pt;}
._37{width:413.937338pt;}
._2c{width:416.607037pt;}
._38{width:419.191657pt;}
._33{width:425.795071pt;}
._3f{width:434.136099pt;}
._2d{width:436.686963pt;}
._25{width:993.257990pt;}
._24{width:994.948118pt;}
._1d{width:1020.989513pt;}
._27{width:1052.660994pt;}
._26{width:1075.785912pt;}
._1f{width:1107.527009pt;}
._1e{width:1110.421816pt;}
.fs16{font-size:14.933165pt;}
.fs30{font-size:23.662514pt;}
.fs15{font-size:25.753130pt;}
.fsf{font-size:27.011405pt;}
.fs13{font-size:27.083752pt;}
.fs31{font-size:28.804809pt;}
.fs3d{font-size:30.968432pt;}
.fs17{font-size:31.454718pt;}
.fs33{font-size:32.061875pt;}
.fsd{font-size:32.972925pt;}
.fs35{font-size:33.486897pt;}
.fs22{font-size:33.709631pt;}
.fs2c{font-size:34.103365pt;}
.fs29{font-size:35.023692pt;}
.fs39{font-size:35.751455pt;}
.fs2a{font-size:35.954510pt;}
.fs40{font-size:37.134824pt;}
.fs5{font-size:37.440000pt;}
.fs3e{font-size:37.698436pt;}
.fs34{font-size:39.029504pt;}
.fs38{font-size:39.384590pt;}
.fs2f{font-size:39.485576pt;}
.fs3c{font-size:40.498713pt;}
.fs23{font-size:41.035348pt;}
.fs26{font-size:41.963123pt;}
.fs1{font-size:42.560000pt;}
.fs1c{font-size:42.805496pt;}
.fs2b{font-size:43.768079pt;}
.fs9{font-size:44.864800pt;}
.fs4{font-size:45.440000pt;}
.fse{font-size:46.582773pt;}
.fs12{font-size:46.707540pt;}
.fs19{font-size:49.833264pt;}
.fsc{font-size:49.837766pt;}
.fs32{font-size:50.386968pt;}
.fs36{font-size:50.487742pt;}
.fs3{font-size:50.560000pt;}
.fs3f{font-size:51.800036pt;}
.fs6{font-size:53.440000pt;}
.fs28{font-size:53.665727pt;}
.fs27{font-size:53.773058pt;}
.fs8{font-size:54.053976pt;}
.fs11{font-size:56.706057pt;}
.fs10{font-size:56.867495pt;}
.fs14{font-size:57.021166pt;}
.fs2{font-size:58.560000pt;}
.fs2d{font-size:58.952752pt;}
.fs37{font-size:59.076885pt;}
.fs2e{font-size:59.177871pt;}
.fs20{font-size:59.651552pt;}
.fs3a{font-size:60.606042pt;}
.fs3b{font-size:60.748070pt;}
.fs7{font-size:61.727043pt;}
.fs24{font-size:62.788900pt;}
.fs25{font-size:62.944685pt;}
.fs1b{font-size:63.888800pt;}
.fs0{font-size:64.000000pt;}
.fs1e{font-size:64.046075pt;}
.fs1d{font-size:64.174167pt;}
.fs18{font-size:74.749896pt;}
.fs1a{font-size:74.933907pt;}
.fsa{font-size:81.080964pt;}
.fsb{font-size:81.189072pt;}
.fs21{font-size:89.477328pt;}
.fs1f{font-size:95.833200pt;}
.y1a3{bottom:-215.572799pt;}
.y1e1{bottom:-192.233692pt;}
.y1cf{bottom:-192.233677pt;}
.y201{bottom:-185.677726pt;}
.y1a4{bottom:-177.772644pt;}
.y1e2{bottom:-158.525992pt;}
.y1d0{bottom:-158.525976pt;}
.y202{bottom:-153.119598pt;}
.y1c3{bottom:-141.873532pt;}
.y1a5{bottom:-126.289753pt;}
.y1c4{bottom:-116.996354pt;}
.y1e3{bottom:-112.616924pt;}
.y1d1{bottom:-112.616908pt;}
.y203{bottom:-108.776220pt;}
.y1c5{bottom:-83.114245pt;}
.y1a6{bottom:-74.673969pt;}
.y1e4{bottom:-66.589351pt;}
.y1d2{bottom:-66.589336pt;}
.y204{bottom:-64.318378pt;}
.y1c6{bottom:-49.144676pt;}
.y1a7{bottom:-23.191077pt;}
.y1e5{bottom:-20.680284pt;}
.y1d3{bottom:-20.680268pt;}
.y205{bottom:-19.975000pt;}
.y1c7{bottom:-15.262567pt;}
.y0{bottom:0.000000pt;}
.y212{bottom:1.654040pt;}
.y1cc{bottom:2.923991pt;}
.yde{bottom:3.200000pt;}
.yd6{bottom:3.280000pt;}
.ydb{bottom:3.360000pt;}
.y11a{bottom:3.520000pt;}
.y113{bottom:3.680000pt;}
.y20a{bottom:3.826784pt;}
.yd8{bottom:3.840000pt;}
.yd9{bottom:3.920000pt;}
.y1ea{bottom:3.961901pt;}
.y1d8{bottom:3.961902pt;}
.y1ac{bottom:4.442916pt;}
.y116{bottom:8.160000pt;}
.yf2{bottom:10.646064pt;}
.yd3{bottom:11.680000pt;}
.y1cb{bottom:11.759920pt;}
.y111{bottom:12.720000pt;}
.y11b{bottom:12.880000pt;}
.y1eb{bottom:14.577580pt;}
.y209{bottom:15.390850pt;}
.y1e9{bottom:15.934275pt;}
.y1d7{bottom:15.934276pt;}
.y117{bottom:17.520000pt;}
.y1ab{bottom:17.868856pt;}
.y1c8{bottom:18.707859pt;}
.yd4{bottom:20.160000pt;}
.y1ca{bottom:20.594220pt;}
.y119{bottom:21.920000pt;}
.y20c{bottom:22.433084pt;}
.y19f{bottom:23.323350pt;}
.y206{bottom:24.483964pt;}
.y1e6{bottom:25.348451pt;}
.y1d4{bottom:25.348466pt;}
.y145{bottom:26.493887pt;}
.yef{bottom:26.510456pt;}
.y115{bottom:26.560000pt;}
.y208{bottom:26.952784pt;}
.y1e8{bottom:27.904441pt;}
.y1d6{bottom:27.904442pt;}
.y13c{bottom:28.096970pt;}
.y1a8{bottom:28.426010pt;}
.yd2{bottom:28.560000pt;}
.y1c9{bottom:29.430235pt;}
.y1aa{bottom:31.292322pt;}
.y1d9{bottom:36.524992pt;}
.y18a{bottom:36.777614pt;}
.yd5{bottom:36.960000pt;}
.y1b9{bottom:37.207181pt;}
.y13d{bottom:37.247056pt;}
.y199{bottom:38.211265pt;}
.y207{bottom:38.516962pt;}
.y1f7{bottom:39.005264pt;}
.y1e7{bottom:39.876931pt;}
.y1d5{bottom:39.876932pt;}
.y1a9{bottom:44.718393pt;}
.y1da{bottom:47.694814pt;}
.y1ba{bottom:48.582631pt;}
.y19a{bottom:49.893697pt;}
.y124{bottom:50.822361pt;}
.y134{bottom:50.958480pt;}
.y125{bottom:65.178817pt;}
.y20d{bottom:68.339599pt;}
.y13e{bottom:69.268158pt;}
.y135{bottom:69.923200pt;}
.y18b{bottom:72.217655pt;}
.ya8{bottom:73.680000pt;}
.y164{bottom:75.360000pt;}
.yed{bottom:75.429305pt;}
.y1f8{bottom:76.591941pt;}
.yea{bottom:80.800000pt;}
.y213{bottom:86.451022pt;}
.y80{bottom:87.360000pt;}
.y1f5{bottom:90.000000pt;}
.ya7{bottom:92.080000pt;}
.y55{bottom:92.400000pt;}
.y257{bottom:92.640000pt;}
.y163{bottom:93.760000pt;}
.y1a0{bottom:94.135276pt;}
.y29{bottom:97.360000pt;}
.ye9{bottom:99.200000pt;}
.y122{bottom:100.320000pt;}
.y1ec{bottom:100.814875pt;}
.y1db{bottom:101.715255pt;}
.y188{bottom:101.920000pt;}
.y13f{bottom:102.504295pt;}
.y1bb{bottom:103.597546pt;}
.y7f{bottom:105.760000pt;}
.y19b{bottom:106.393266pt;}
.y126{bottom:107.395742pt;}
.ya6{bottom:110.506667pt;}
.y54{bottom:110.826667pt;}
.y256{bottom:111.066667pt;}
.y1f4{bottom:111.146667pt;}
.y162{bottom:112.186667pt;}
.y143{bottom:115.295751pt;}
.ye8{bottom:117.626667pt;}
.y1b7{bottom:119.786667pt;}
.y20e{bottom:119.897802pt;}
.y18c{bottom:120.486128pt;}
.y121{bottom:122.746667pt;}
.y187{bottom:123.306667pt;}
.y28{bottom:123.866667pt;}
.y7e{bottom:124.186667pt;}
.y23e{bottom:127.066667pt;}
.y1f9{bottom:127.784080pt;}
.ya5{bottom:128.906667pt;}
.y53{bottom:129.226667pt;}
.y255{bottom:129.466667pt;}
.y11d{bottom:130.266667pt;}
.y161{bottom:130.586667pt;}
.y140{bottom:135.740431pt;}
.ye7{bottom:136.026667pt;}
.y136{bottom:136.639068pt;}
.y21a{bottom:139.342096pt;}
.y1b5{bottom:139.530890pt;}
.y120{bottom:141.146667pt;}
.y1f3{bottom:142.106667pt;}
.y1fd{bottom:142.160000pt;}
.y27{bottom:142.266667pt;}
.y23d{bottom:145.466667pt;}
.y11c{bottom:145.626667pt;}
.y186{bottom:145.706667pt;}
.y7d{bottom:146.426667pt;}
.ya4{bottom:147.306667pt;}
.y52{bottom:147.626667pt;}
.y25e{bottom:147.866667pt;}
.y160{bottom:148.986667pt;}
.y127{bottom:149.612667pt;}
.ye6{bottom:154.426667pt;}
.y1dc{bottom:155.734482pt;}
.y1f2{bottom:155.737719pt;}
.y254{bottom:155.866667pt;}
.y146{bottom:156.660662pt;}
.y1bc{bottom:158.611225pt;}
.y11f{bottom:159.546667pt;}
.y26{bottom:160.666667pt;}
.y19c{bottom:162.891566pt;}
.y118{bottom:164.026667pt;}
.y185{bottom:164.506667pt;}
.y194{bottom:164.586665pt;}
.y198{bottom:164.592329pt;}
.ya3{bottom:165.706667pt;}
.y51{bottom:166.026667pt;}
.y15f{bottom:167.386667pt;}
.y1b4{bottom:167.738937pt;}
.y18d{bottom:168.879196pt;}
.y141{bottom:168.976568pt;}
.y219{bottom:170.519242pt;}
.y20f{bottom:171.321441pt;}
.y23c{bottom:171.866667pt;}
.y1b6{bottom:172.026667pt;}
.y1bf{bottom:172.066667pt;}
.ye5{bottom:172.826667pt;}
.y7c{bottom:172.986667pt;}
.y253{bottom:174.266667pt;}
.y11e{bottom:178.266667pt;}
.y144{bottom:178.320000pt;}
.y133{bottom:178.331942pt;}
.y25{bottom:179.066667pt;}
.y1fa{bottom:179.108361pt;}
.y50{bottom:184.426667pt;}
.y15e{bottom:185.786667pt;}
.y214{bottom:185.850093pt;}
.y23b{bottom:190.266667pt;}
.ye4{bottom:191.226667pt;}
.y128{bottom:191.998392pt;}
.ya2{bottom:192.106667pt;}
.y25d{bottom:192.666667pt;}
.y169{bottom:195.495534pt;}
.y167{bottom:197.135952pt;}
.y7b{bottom:199.386667pt;}
.y1b2{bottom:199.994275pt;}
.y252{bottom:200.666667pt;}
.y114{bottom:200.826667pt;}
.y142{bottom:202.212704pt;}
.y4f{bottom:202.826667pt;}
.y15d{bottom:204.186667pt;}
.y24{bottom:205.466667pt;}
.yf1{bottom:205.705016pt;}
.y137{bottom:205.719391pt;}
.y1f0{bottom:207.205907pt;}
.y12d{bottom:208.549250pt;}
.y23a{bottom:208.666667pt;}
.y13a{bottom:209.107822pt;}
.y1dd{bottom:209.757349pt;}
.ya1{bottom:210.506667pt;}
.y1bd{bottom:213.628611pt;}
.y18e{bottom:217.147669pt;}
.ye3{bottom:217.626667pt;}
.y251{bottom:219.066667pt;}
.y19d{bottom:219.393674pt;}
.y218{bottom:220.538652pt;}
.y4e{bottom:221.226667pt;}
.y15c{bottom:222.586667pt;}
.y210{bottom:222.883682pt;}
.y23{bottom:223.866667pt;}
.y7a{bottom:225.786667pt;}
.ya0{bottom:228.906667pt;}
.yca{bottom:230.266667pt;}
.y1fb{bottom:230.300500pt;}
.y1f1{bottom:232.220937pt;}
.y129{bottom:234.215317pt;}
.y239{bottom:235.066667pt;}
.y184{bottom:235.866667pt;}
.y1a2{bottom:237.040987pt;}
.y25c{bottom:237.466667pt;}
.yf9{bottom:237.619384pt;}
.y4d{bottom:239.626667pt;}
.y1e0{bottom:240.457528pt;}
.y15b{bottom:240.986667pt;}
.y22{bottom:242.266667pt;}
.y193{bottom:243.056162pt;}
.yee{bottom:243.295051pt;}
.ye2{bottom:244.026667pt;}
.y1b3{bottom:244.179057pt;}
.y79{bottom:244.186667pt;}
.yec{bottom:244.218475pt;}
.y250{bottom:245.466667pt;}
.y9f{bottom:247.306667pt;}
.y110{bottom:247.546667pt;}
.yc9{bottom:248.666667pt;}
.yf8{bottom:251.132878pt;}
.y238{bottom:253.466667pt;}
.y192{bottom:255.643955pt;}
.y4c{bottom:258.026667pt;}
.y183{bottom:258.266667pt;}
.y15a{bottom:259.386667pt;}
.y21{bottom:260.666667pt;}
.ye1{bottom:262.426667pt;}
.y78{bottom:262.666667pt;}
.y1de{bottom:263.777790pt;}
.y24f{bottom:263.866667pt;}
.y18f{bottom:265.541959pt;}
.y9e{bottom:265.706667pt;}
.y112{bottom:265.946667pt;}
.y132{bottom:266.132053pt;}
.yc8{bottom:267.066667pt;}
.y191{bottom:268.229304pt;}
.y1be{bottom:268.643526pt;}
.y211{bottom:274.441885pt;}
.y138{bottom:274.633847pt;}
.y19e{bottom:275.893243pt;}
.y4b{bottom:276.426667pt;}
.y12a{bottom:276.432242pt;}
.y182{bottom:276.666667pt;}
.yf4{bottom:276.673383pt;}
.ye0{bottom:277.786667pt;}
.y237{bottom:279.866667pt;}
.y190{bottom:280.817096pt;}
.y77{bottom:280.986667pt;}
.y1fc{bottom:281.626077pt;}
.y25b{bottom:282.266667pt;}
.y131{bottom:283.526911pt;}
.y9d{bottom:284.106667pt;}
.yc7{bottom:285.466667pt;}
.y20{bottom:287.066667pt;}
.yf6{bottom:289.454895pt;}
.y24e{bottom:290.266667pt;}
.y10f{bottom:292.666667pt;}
.ydf{bottom:294.666667pt;}
.y4a{bottom:294.826667pt;}
.y181{bottom:295.066667pt;}
.y159{bottom:296.186667pt;}
.y236{bottom:298.266667pt;}
.y76{bottom:299.386667pt;}
.y130{bottom:300.921770pt;}
.y9c{bottom:302.506667pt;}
.yc6{bottom:303.866667pt;}
.y1a1{bottom:303.938081pt;}
.y1f{bottom:305.466667pt;}
.y1df{bottom:305.691435pt;}
.y21b{bottom:305.922377pt;}
.y24d{bottom:308.666667pt;}
.y10e{bottom:311.066667pt;}
.ydd{bottom:311.546667pt;}
.y49{bottom:313.226667pt;}
.y180{bottom:313.466667pt;}
.y158{bottom:314.586667pt;}
.yf5{bottom:315.378281pt;}
.y235{bottom:316.666667pt;}
.y12f{bottom:318.311564pt;}
.y12b{bottom:318.649167pt;}
.y9b{bottom:320.906667pt;}
.yc5{bottom:322.266667pt;}
.y1e{bottom:323.866667pt;}
.y75{bottom:325.786667pt;}
.y24c{bottom:327.066667pt;}
.ydc{bottom:328.346667pt;}
.y48{bottom:331.626667pt;}
.y17f{bottom:331.866667pt;}
.y157{bottom:332.986667pt;}
.y10d{bottom:333.466667pt;}
.y12e{bottom:335.706423pt;}
.y9a{bottom:339.306667pt;}
.yc4{bottom:340.666667pt;}
.yf3{bottom:340.997613pt;}
.y1d{bottom:342.266667pt;}
.y234{bottom:343.066667pt;}
.y139{bottom:343.719248pt;}
.y74{bottom:344.186667pt;}
.y13b{bottom:344.603912pt;}
.yda{bottom:345.226667pt;}
.y14f{bottom:346.090954pt;}
.y47{bottom:350.026667pt;}
.y17e{bottom:350.266667pt;}
.y156{bottom:351.386667pt;}
.y24b{bottom:353.466667pt;}
.y10c{bottom:355.866667pt;}
.y99{bottom:357.706667pt;}
.yf7{bottom:358.722814pt;}
.yc3{bottom:359.066667pt;}
.y1c{bottom:360.666667pt;}
.y12c{bottom:360.866092pt;}
.y233{bottom:361.466667pt;}
.yd7{bottom:362.106667pt;}
.y73{bottom:362.586667pt;}
.y46{bottom:368.426667pt;}
.y17d{bottom:368.666667pt;}
.y155{bottom:369.786667pt;}
.y24a{bottom:371.866667pt;}
.y10b{bottom:374.266667pt;}
.yf0{bottom:374.725042pt;}
.yc2{bottom:377.466667pt;}
.y1b{bottom:379.066667pt;}
.yd1{bottom:380.746667pt;}
.y72{bottom:380.986667pt;}
.y147{bottom:382.480949pt;}
.y98{bottom:384.106667pt;}
.y17c{bottom:387.066667pt;}
.y232{bottom:387.866667pt;}
.y154{bottom:388.186667pt;}
.y10a{bottom:392.666667pt;}
.y1a{bottom:397.466667pt;}
.y249{bottom:398.266667pt;}
.y45{bottom:398.746667pt;}
.y71{bottom:399.386667pt;}
.y97{bottom:402.506667pt;}
.yc1{bottom:403.866667pt;}
.y1c0{bottom:404.418400pt;}
.y17b{bottom:405.466667pt;}
.y231{bottom:406.266667pt;}
.y195{bottom:406.786210pt;}
.y153{bottom:410.586667pt;}
.y109{bottom:411.066667pt;}
.y19{bottom:415.866667pt;}
.y1fe{bottom:416.342786pt;}
.y248{bottom:416.666667pt;}
.y70{bottom:417.786667pt;}
.y96{bottom:420.906667pt;}
.yc0{bottom:422.266667pt;}
.y17a{bottom:423.866667pt;}
.y230{bottom:424.666667pt;}
.y44{bottom:426.426667pt;}
.y168{bottom:426.943555pt;}
.y108{bottom:429.466667pt;}
.y166{bottom:431.802671pt;}
.y152{bottom:432.986667pt;}
.y18{bottom:434.266667pt;}
.y6f{bottom:436.186667pt;}
.y95{bottom:439.306667pt;}
.ybf{bottom:440.666667pt;}
.y179{bottom:442.266667pt;}
.y247{bottom:443.066667pt;}
.yd0{bottom:443.706667pt;}
.y43{bottom:444.826667pt;}
.y107{bottom:447.866667pt;}
.y22f{bottom:451.066667pt;}
.y151{bottom:451.386667pt;}
.y17{bottom:452.666667pt;}
.y6e{bottom:454.586667pt;}
.y94{bottom:457.706667pt;}
.ybe{bottom:459.066667pt;}
.y178{bottom:460.666667pt;}
.y246{bottom:461.466667pt;}
.ycf{bottom:462.106667pt;}
.y42{bottom:463.226667pt;}
.y106{bottom:466.266667pt;}
.y22e{bottom:469.466667pt;}
.y150{bottom:469.706667pt;}
.y16{bottom:471.066667pt;}
.y6d{bottom:472.986667pt;}
.y14a{bottom:475.093089pt;}
.y93{bottom:476.106667pt;}
.ybd{bottom:477.466667pt;}
.y196{bottom:478.351693pt;}
.y25a{bottom:479.866667pt;}
.y41{bottom:481.626667pt;}
.y148{bottom:482.879536pt;}
.y105{bottom:484.693333pt;}
.y177{bottom:487.093333pt;}
.y22d{bottom:487.893333pt;}
.y165{bottom:488.520000pt;}
.yce{bottom:488.533333pt;}
.y1c1{bottom:490.685087pt;}
.y6c{bottom:491.413333pt;}
.y92{bottom:494.533333pt;}
.ybc{bottom:495.893333pt;}
.y15{bottom:497.493333pt;}
.y40{bottom:500.053333pt;}
.y1ff{bottom:501.132970pt;}
.y104{bottom:503.093333pt;}
.y176{bottom:505.493333pt;}
.y245{bottom:506.293333pt;}
.ycd{bottom:510.933333pt;}
.y149{bottom:511.403224pt;}
.y91{bottom:512.933333pt;}
.y6b{bottom:513.813333pt;}
.ybb{bottom:514.293333pt;}
.y14{bottom:515.893333pt;}
.y3f{bottom:518.453333pt;}
.y14d{bottom:520.161313pt;}
.y103{bottom:521.493333pt;}
.y175{bottom:523.893333pt;}
.y244{bottom:524.693333pt;}
.y123{bottom:526.367545pt;}
.ycc{bottom:529.333333pt;}
.y90{bottom:531.333333pt;}
.y6a{bottom:532.213333pt;}
.yba{bottom:532.693333pt;}
.y13{bottom:534.293333pt;}
.y1b1{bottom:534.924312pt;}
.y1f6{bottom:539.120937pt;}
.y102{bottom:539.893333pt;}
.y174{bottom:542.293333pt;}
.y259{bottom:543.093333pt;}
.y1ef{bottom:543.391955pt;}
.ycb{bottom:544.053333pt;}
.yeb{bottom:544.080000pt;}
.y3e{bottom:544.853333pt;}
.y217{bottom:548.217044pt;}
.y8f{bottom:549.813333pt;}
.yb9{bottom:551.093333pt;}
.y12{bottom:552.693333pt;}
.y69{bottom:553.253333pt;}
.y189{bottom:553.394849pt;}
.y1b8{bottom:555.375021pt;}
.y1b0{bottom:556.871358pt;}
.y101{bottom:558.293333pt;}
.y22c{bottom:559.093333pt;}
.y173{bottom:560.693333pt;}
.y68{bottom:561.333333pt;}
.y14c{bottom:562.261370pt;}
.y3d{bottom:563.253333pt;}
.y14b{bottom:564.058243pt;}
.y8e{bottom:568.693333pt;}
.yb8{bottom:569.493333pt;}
.y11{bottom:571.093333pt;}
.y100{bottom:576.693333pt;}
.y216{bottom:577.850981pt;}
.y172{bottom:579.093333pt;}
.y3c{bottom:581.653333pt;}
.y22b{bottom:585.493333pt;}
.y8d{bottom:587.093333pt;}
.yb7{bottom:587.893333pt;}
.y67{bottom:589.173333pt;}
.y10{bottom:589.493333pt;}
.y1ae{bottom:592.715591pt;}
.y1ed{bottom:594.860143pt;}
.yff{bottom:595.093333pt;}
.y171{bottom:597.493333pt;}
.y3b{bottom:600.053333pt;}
.y22a{bottom:603.893333pt;}
.y8c{bottom:605.493333pt;}
.y66{bottom:607.573333pt;}
.yf{bottom:607.893333pt;}
.y200{bottom:611.381989pt;}
.yb6{bottom:614.293333pt;}
.y1ad{bottom:616.452085pt;}
.yfe{bottom:617.493333pt;}
.y1ee{bottom:618.185110pt;}
.y3a{bottom:618.453333pt;}
.y215{bottom:623.413429pt;}
.y8b{bottom:623.893333pt;}
.y65{bottom:625.973333pt;}
.ye{bottom:626.293333pt;}
.y1af{bottom:627.944905pt;}
.y1ce{bottom:630.199670pt;}
.y229{bottom:630.293333pt;}
.yb5{bottom:632.693333pt;}
.yfd{bottom:635.893333pt;}
.y8a{bottom:642.293333pt;}
.yd{bottom:644.693333pt;}
.y39{bottom:644.853333pt;}
.y64{bottom:647.173333pt;}
.y228{bottom:648.693333pt;}
.yb4{bottom:651.093333pt;}
.yfc{bottom:654.293333pt;}
.y63{bottom:655.253333pt;}
.y258{bottom:659.093333pt;}
.y89{bottom:660.693333pt;}
.y38{bottom:663.253333pt;}
.yb3{bottom:669.493333pt;}
.yc{bottom:671.013333pt;}
.yfb{bottom:672.693333pt;}
.y227{bottom:675.093333pt;}
.y243{bottom:677.493333pt;}
.y88{bottom:679.093333pt;}
.y37{bottom:681.653333pt;}
.y62{bottom:683.093333pt;}
.y1cd{bottom:687.624650pt;}
.y197{bottom:688.665440pt;}
.yfa{bottom:691.093333pt;}
.y14e{bottom:693.592785pt;}
.yb2{bottom:695.893333pt;}
.y87{bottom:697.493333pt;}
.y36{bottom:700.053333pt;}
.yb{bottom:704.773333pt;}
.y61{bottom:709.493333pt;}
.y20b{bottom:709.574155pt;}
.y242{bottom:714.293333pt;}
.y86{bottom:715.893333pt;}
.y35{bottom:718.453333pt;}
.y226{bottom:719.893333pt;}
.yb1{bottom:722.293333pt;}
.y60{bottom:727.893333pt;}
.ya{bottom:731.173333pt;}
.y25f{bottom:732.693333pt;}
.y85{bottom:734.293333pt;}
.y34{bottom:736.853333pt;}
.y225{bottom:738.293333pt;}
.y241{bottom:740.693333pt;}
.y5f{bottom:746.293333pt;}
.yb0{bottom:748.693333pt;}
.y9{bottom:750.213333pt;}
.y84{bottom:752.693333pt;}
.y33{bottom:755.253333pt;}
.y224{bottom:756.693333pt;}
.y240{bottom:759.013333pt;}
.y170{bottom:760.693333pt;}
.y5e{bottom:764.693333pt;}
.yaf{bottom:767.013333pt;}
.y83{bottom:771.013333pt;}
.y32{bottom:773.653333pt;}
.y223{bottom:775.013333pt;}
.y8{bottom:775.973333pt;}
.y23f{bottom:777.413333pt;}
.y16f{bottom:779.013333pt;}
.y5d{bottom:783.013333pt;}
.yae{bottom:785.413333pt;}
.y82{bottom:789.413333pt;}
.y31{bottom:792.053333pt;}
.y222{bottom:793.413333pt;}
.y16e{bottom:797.413333pt;}
.y5c{bottom:801.413333pt;}
.y7{bottom:802.373333pt;}
.yad{bottom:803.813333pt;}
.y30{bottom:810.453333pt;}
.y221{bottom:811.813333pt;}
.y6{bottom:813.413333pt;}
.y81{bottom:815.653333pt;}
.y16d{bottom:815.813333pt;}
.y5b{bottom:819.813333pt;}
.yac{bottom:822.213333pt;}
.y2f{bottom:829.093333pt;}
.y220{bottom:830.213333pt;}
.y5{bottom:831.813333pt;}
.y16c{bottom:834.213333pt;}
.y5a{bottom:838.213333pt;}
.yab{bottom:840.613333pt;}
.y2e{bottom:847.653333pt;}
.y21f{bottom:848.613333pt;}
.y4{bottom:850.213333pt;}
.y16b{bottom:852.613333pt;}
.y59{bottom:856.613333pt;}
.yaa{bottom:859.013333pt;}
.y2d{bottom:866.400000pt;}
.y21e{bottom:867.040000pt;}
.y16a{bottom:871.040000pt;}
.y1c2{bottom:871.679210pt;}
.y58{bottom:875.040000pt;}
.y3{bottom:884.160000pt;}
.y2c{bottom:884.960000pt;}
.ya9{bottom:885.280000pt;}
.y21d{bottom:885.440000pt;}
.y57{bottom:893.440000pt;}
.y2b{bottom:903.680000pt;}
.y21c{bottom:907.840000pt;}
.y56{bottom:911.840000pt;}
.y2{bottom:916.160000pt;}
.y2a{bottom:930.240000pt;}
.y1{bottom:932.160000pt;}
.h13{height:16.800000pt;}
.h12{height:16.880000pt;}
.h4e{height:17.007432pt;}
.he{height:18.000000pt;}
.h1b{height:18.400000pt;}
.h2a{height:18.510062pt;}
.h4f{height:20.703456pt;}
.h60{height:22.258561pt;}
.h2d{height:22.608079pt;}
.h52{height:23.044473pt;}
.h55{height:24.068707pt;}
.h3b{height:24.228798pt;}
.h49{height:24.511793pt;}
.h2c{height:24.917945pt;}
.h2b{height:24.925411pt;}
.h42{height:25.173278pt;}
.h5b{height:25.696358pt;}
.h45{height:25.842304pt;}
.h64{height:26.690655pt;}
.h61{height:27.095751pt;}
.h53{height:28.052456pt;}
.h3c{height:29.494156pt;}
.h46{height:31.458307pt;}
.h1e{height:33.481368pt;}
.h24{height:33.571044pt;}
.h1a{height:36.800000pt;}
.h4d{height:36.908911pt;}
.h16{height:37.986115pt;}
.h5{height:38.154375pt;}
.h22{height:40.757479pt;}
.h21{height:40.873512pt;}
.h28{height:40.983963pt;}
.h6{height:41.770312pt;}
.h59{height:42.661622pt;}
.h58{height:42.746945pt;}
.hf{height:42.859304pt;}
.h19{height:43.356719pt;}
.h65{height:43.858038pt;}
.h50{height:44.724667pt;}
.h1f{height:45.072075pt;}
.h20{height:45.092331pt;}
.h25{height:45.192795pt;}
.h26{height:45.206335pt;}
.h27{height:45.213105pt;}
.h47{height:45.437681pt;}
.h66{height:45.892606pt;}
.h43{height:45.935556pt;}
.h1c{height:46.000000pt;}
.h62{height:46.022106pt;}
.h40{height:46.027427pt;}
.h15{height:46.267881pt;}
.h5f{height:48.304712pt;}
.h4b{height:49.914098pt;}
.h56{height:50.010270pt;}
.h51{height:50.010273pt;}
.hb{height:50.560000pt;}
.h57{height:51.018703pt;}
.h37{height:51.059165pt;}
.h4c{height:51.104206pt;}
.h5d{height:51.313904pt;}
.h5e{height:52.461935pt;}
.h3e{height:53.162086pt;}
.h33{height:54.226511pt;}
.h32{height:54.334964pt;}
.h3f{height:54.358929pt;}
.h36{height:55.234774pt;}
.h31{height:55.409184pt;}
.h44{height:56.082021pt;}
.h7{height:57.375000pt;}
.h10{height:57.444844pt;}
.h11{height:57.473437pt;}
.hc{height:59.017500pt;}
.h4{height:62.812500pt;}
.h30{height:63.445017pt;}
.hd{height:64.292500pt;}
.h2{height:64.500000pt;}
.h2f{height:64.553892pt;}
.h8{height:67.594375pt;}
.h17{height:69.401821pt;}
.h18{height:69.494357pt;}
.h3{height:71.210313pt;}
.h9{height:71.886875pt;}
.h39{height:76.588748pt;}
.h34{height:81.140024pt;}
.h38{height:83.398967pt;}
.ha{height:95.132500pt;}
.h29{height:231.433254pt;}
.h54{height:300.923972pt;}
.h3a{height:302.935216pt;}
.h48{height:306.473541pt;}
.h41{height:314.744153pt;}
.h63{height:315.634622pt;}
.h5a{height:321.284277pt;}
.h14{height:400.880000pt;}
.h1d{height:418.592455pt;}
.h23{height:419.742300pt;}
.h35{height:456.440000pt;}
.h2e{height:766.640000pt;}
.h4a{height:772.893333pt;}
.h3d{height:780.373335pt;}
.h5c{height:802.800000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.520000pt;}
.w1d{width:42.413886pt;}
.w23{width:55.685350pt;}
.w4{width:56.640000pt;}
.w1e{width:57.688183pt;}
.w20{width:57.688185pt;}
.w1a{width:64.558209pt;}
.w19{width:64.692975pt;}
.w2{width:85.060000pt;}
.w10{width:93.520000pt;}
.wb{width:93.840000pt;}
.w6{width:95.120000pt;}
.w5{width:113.386667pt;}
.wd{width:118.960000pt;}
.we{width:119.120000pt;}
.wc{width:119.386667pt;}
.w7{width:120.320000pt;}
.w3{width:170.160000pt;}
.wf{width:189.065333pt;}
.w9{width:189.385333pt;}
.w13{width:328.395513pt;}
.w1f{width:426.924588pt;}
.w16{width:429.721750pt;}
.w1b{width:434.498604pt;}
.w18{width:446.402217pt;}
.wa{width:451.306667pt;}
.w21{width:455.746343pt;}
.w24{width:473.137555pt;}
.w22{width:497.396453pt;}
.w17{width:514.328466pt;}
.w1c{width:515.271201pt;}
.w11{width:593.711571pt;}
.w12{width:595.315937pt;}
.w14{width:595.321609pt;}
.w15{width:636.352214pt;}
.w8{width:640.600621pt;}
.w1{width:801.333333pt;}
.w0{width:801.360000pt;}
.x5e{left:-284.171445pt;}
.x5d{left:-266.792667pt;}
.x6d{left:-253.402084pt;}
.x7b{left:-244.604399pt;}
.x6c{left:-237.905036pt;}
.x7a{left:-229.645381pt;}
.x6b{left:-186.307926pt;}
.x6a{left:-174.914083pt;}
.x0{left:0.000000pt;}
.x1d{left:1.518667pt;}
.x23{left:3.200000pt;}
.x11{left:4.320000pt;}
.x17{left:7.760000pt;}
.x6f{left:9.240232pt;}
.x1a{left:10.240000pt;}
.x29{left:11.213699pt;}
.x27{left:12.398667pt;}
.x13{left:14.000000pt;}
.xb{left:15.198667pt;}
.x16{left:16.160000pt;}
.x22{left:18.238667pt;}
.x20{left:20.480000pt;}
.x37{left:21.438667pt;}
.xc{left:24.558667pt;}
.x18{left:26.720000pt;}
.x50{left:28.629313pt;}
.x21{left:29.760000pt;}
.x33{left:32.880000pt;}
.x1b{left:34.080000pt;}
.x1c{left:35.680000pt;}
.x3a{left:40.878667pt;}
.x24{left:43.840000pt;}
.x26{left:46.160000pt;}
.x25{left:47.280000pt;}
.x41{left:48.195460pt;}
.x38{left:49.440000pt;}
.x45{left:52.069459pt;}
.x46{left:53.190265pt;}
.xe{left:55.360000pt;}
.x14{left:56.720000pt;}
.xf{left:57.760000pt;}
.x67{left:58.959581pt;}
.x59{left:60.574849pt;}
.x39{left:61.625333pt;}
.x7d{left:64.202718pt;}
.x1e{left:68.080000pt;}
.x3f{left:69.899404pt;}
.x28{left:71.280000pt;}
.x56{left:72.386389pt;}
.x5b{left:73.677563pt;}
.x53{left:74.602106pt;}
.x1f{left:76.080000pt;}
.x58{left:77.497928pt;}
.x76{left:79.120120pt;}
.x3e{left:80.056248pt;}
.x7c{left:82.139332pt;}
.x4{left:94.560000pt;}
.x4e{left:96.699999pt;}
.x3d{left:98.164209pt;}
.x43{left:110.278219pt;}
.x82{left:113.520000pt;}
.x4c{left:115.443050pt;}
.x3c{left:117.199999pt;}
.x48{left:121.303266pt;}
.x1{left:152.986667pt;}
.x54{left:157.693332pt;}
.x77{left:165.866667pt;}
.x75{left:174.952916pt;}
.x32{left:176.960000pt;}
.xd{left:179.626667pt;}
.x57{left:180.692352pt;}
.x52{left:188.358691pt;}
.x6e{left:190.318321pt;}
.x5a{left:199.784370pt;}
.x2{left:204.426667pt;}
.x78{left:205.684569pt;}
.x55{left:207.955073pt;}
.x71{left:209.293752pt;}
.x68{left:211.492304pt;}
.x44{left:214.007291pt;}
.x47{left:227.977341pt;}
.x2b{left:237.275374pt;}
.x7{left:241.066667pt;}
.x2e{left:245.694676pt;}
.x4f{left:246.633955pt;}
.x6{left:247.626667pt;}
.x79{left:256.988770pt;}
.x2d{left:259.486082pt;}
.x49{left:263.135967pt;}
.x5c{left:268.384520pt;}
.x2c{left:277.983719pt;}
.x5f{left:279.009798pt;}
.x2f{left:280.805201pt;}
.x70{left:282.341929pt;}
.x31{left:283.946667pt;}
.x30{left:287.407470pt;}
.x4a{left:306.940813pt;}
.x9{left:312.986667pt;}
.x8{left:318.666667pt;}
.x2a{left:330.260143pt;}
.x4b{left:342.139469pt;}
.x10{left:349.786667pt;}
.x5{left:354.426667pt;}
.x73{left:358.448158pt;}
.x81{left:364.666667pt;}
.x72{left:370.093121pt;}
.x42{left:371.302799pt;}
.x34{left:377.786667pt;}
.x7f{left:381.211443pt;}
.x80{left:390.113805pt;}
.x62{left:391.117830pt;}
.x63{left:395.343284pt;}
.x66{left:397.383159pt;}
.x65{left:401.014583pt;}
.x7e{left:403.191514pt;}
.x61{left:404.377011pt;}
.x60{left:405.509029pt;}
.x12{left:406.426667pt;}
.x64{left:409.431865pt;}
.x3{left:414.906667pt;}
.x40{left:426.499440pt;}
.x35{left:497.173333pt;}
.x69{left:503.249082pt;}
.x15{left:519.813333pt;}
.x19{left:614.933333pt;}
.x36{left:616.133333pt;}
.x74{left:663.893333pt;}
.x51{left:672.053333pt;}
.x3b{left:712.533333pt;}
.x4d{left:733.093333pt;}
.xa{left:735.253333pt;}
}




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