
    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_450e71647b28cd3853284262.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a117544d5996ad43d41a6f8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.954000;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_8fed1599dda1657c9f78209b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.161133;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_1fc07093accb96e2c17d6460.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139160;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_eea49d69496ef9d4c4205bf8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.158691;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_bb8c103e86f8917b9df6509d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.014648;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_6c8978bf9d741d3b1109630c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.756000;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_07d2231c41c20790cb0a9d4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012207;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_df77ee5a2af46e57dc595554.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.158691;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_815430eccc36b5c22e3e6773.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_535edd9bca792163d9407b3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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_10e0749a582fab71aa66a4e4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_bfe91576dbc80a5de4aac1a9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3a6e5c74ef917ce883a96e0b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.862793;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_b68dc04a0d6e09a09c89e509.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_9bf26da33e648bf3566d0329.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f6b7f21dbad0acecaf168f0e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.862793;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:ff12;src:url('chunks/assets/font_b68dc04a0d6e09a09c89e509.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_bc79877c740c4cc17e9bb8bb.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_5bf39e2afaed7fb196318bef.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_fd0a739879854b5b16be5f1c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.862793;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:ff16;src:url('chunks/assets/font_799916cab7fd0a60beac3149.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.002930;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:ff17;src:url('chunks/assets/font_b68dc04a0d6e09a09c89e509.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_857104223ce3ec29427a0267.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_5bf39e2afaed7fb196318bef.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_f33aa6e29448aa13859d547f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.862793;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:ff1b;src:url('chunks/assets/font_2c74dde175316a84b1d1b21e.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_4118043d5a82389fdbc1ab0c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.862793;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:ff1d;src:url('chunks/assets/font_4b7e75183d2c6b68de5b8fb5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.014648;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:ff1e;src:url('chunks/assets/font_72d2e73391fa68b883c01b49.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.158691;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;}
.m2{transform:matrix(0.000000,-0.240215,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.240215,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.240215,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260184,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271728,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.271733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271733,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-24.913048px;}
.v2{vertical-align:-8.319339px;}
.v8{vertical-align:-1.773549px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.453762px;}
.v4{vertical-align:16.638678px;}
.v1{vertical-align:17.982000px;}
.v7{vertical-align:43.749829px;}
.v5{vertical-align:49.871065px;}
.ls30{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.327608px;}
.ls10{letter-spacing:-0.280807px;}
.ls29{letter-spacing:-0.275885px;}
.ls14{letter-spacing:-0.271979px;}
.lsb{letter-spacing:-0.269816px;}
.ls27{letter-spacing:-0.197061px;}
.ls17{letter-spacing:-0.194271px;}
.ls2a{letter-spacing:-0.157649px;}
.ls13{letter-spacing:-0.155417px;}
.ls28{letter-spacing:-0.118237px;}
.ls18{letter-spacing:-0.116563px;}
.ls16{letter-spacing:-0.077708px;}
.lsd{letter-spacing:-0.046801px;}
.ls21{letter-spacing:-0.046463px;}
.ls9{letter-spacing:-0.044969px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010200px;}
.ls2f{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.013032px;}
.ls3{letter-spacing:0.014400px;}
.ls32{letter-spacing:0.019800px;}
.ls19{letter-spacing:0.021000px;}
.ls2e{letter-spacing:0.022200px;}
.ls15{letter-spacing:0.038854px;}
.ls2b{letter-spacing:0.039412px;}
.ls26{letter-spacing:0.043616px;}
.ls1e{letter-spacing:0.080980px;}
.lse{letter-spacing:0.093602px;}
.ls1b{letter-spacing:0.121469px;}
.ls20{letter-spacing:0.139388px;}
.ls25{letter-spacing:0.139572px;}
.ls1d{letter-spacing:0.161959px;}
.lsa{letter-spacing:0.179878px;}
.ls22{letter-spacing:0.185851px;}
.ls33{letter-spacing:0.192000px;}
.ls1c{letter-spacing:0.242939px;}
.ls12{letter-spacing:0.257990px;}
.ls24{letter-spacing:0.261698px;}
.ls8{letter-spacing:0.269816px;}
.ls1f{letter-spacing:0.278777px;}
.lsf{letter-spacing:0.280807px;}
.ls4{letter-spacing:1.272600px;}
.ls1a{letter-spacing:1.758600px;}
.ls2d{letter-spacing:2.518800px;}
.ls5{letter-spacing:2.643000px;}
.ls2{letter-spacing:3.543000px;}
.ls11{letter-spacing:3.676200px;}
.ls31{letter-spacing:3.726000px;}
.ls23{letter-spacing:4.330200px;}
.ls2c{letter-spacing:10.951800px;}
.ls7{letter-spacing:17.754600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(156,154,154),0 0.015em rgb(156,154,154),0.015em 0 rgb(156,154,154),0 -0.015em  rgb(156,154,154);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(156,154,154);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.344000px;}
.ws0{word-spacing:-16.254000px;}
.wsfd{word-spacing:-14.448000px;}
.wsfc{word-spacing:-13.968000px;}
.ws9b{word-spacing:-11.981107px;}
.wscc{word-spacing:-11.801551px;}
.ws9a{word-spacing:-11.793902px;}
.ws99{word-spacing:-11.653499px;}
.ws96{word-spacing:-11.512166px;}
.ws9c{word-spacing:-11.419493px;}
.ws98{word-spacing:-11.372692px;}
.ws95{word-spacing:-10.972534px;}
.ws2{word-spacing:-10.896000px;}
.wsbb{word-spacing:-10.284409px;}
.wsde{word-spacing:-8.946569px;}
.wsd9{word-spacing:-8.907157px;}
.wsdb{word-spacing:-8.788921px;}
.wsab{word-spacing:-8.781049px;}
.wsdd{word-spacing:-8.749508px;}
.wsda{word-spacing:-8.710096px;}
.wsaf{word-spacing:-8.703341px;}
.wsb0{word-spacing:-8.664487px;}
.wsad{word-spacing:-8.625632px;}
.wsbc{word-spacing:-8.268617px;}
.wsdf{word-spacing:-7.398000px;}
.wse2{word-spacing:-6.210000px;}
.wse5{word-spacing:-5.022000px;}
.wseb{word-spacing:-4.698000px;}
.ws10d{word-spacing:-4.608000px;}
.wsc0{word-spacing:-4.590000px;}
.wsb3{word-spacing:-4.482000px;}
.ws8e{word-spacing:-4.158000px;}
.ws90{word-spacing:-3.672000px;}
.ws12{word-spacing:-3.510000px;}
.wse3{word-spacing:-3.402000px;}
.wsfb{word-spacing:-3.348000px;}
.ws48{word-spacing:-3.240000px;}
.ws108{word-spacing:-3.216000px;}
.ws119{word-spacing:-3.072000px;}
.ws33{word-spacing:-3.024000px;}
.wse{word-spacing:-2.970000px;}
.ws45{word-spacing:-2.862000px;}
.wsfe{word-spacing:-2.808000px;}
.ws5e{word-spacing:-2.700000px;}
.wsa1{word-spacing:-2.592000px;}
.wsb6{word-spacing:-2.538000px;}
.ws25{word-spacing:-2.430000px;}
.ws61{word-spacing:-2.376000px;}
.wsef{word-spacing:-2.322000px;}
.ws11d{word-spacing:-2.304000px;}
.ws2d{word-spacing:-2.214000px;}
.ws60{word-spacing:-2.106000px;}
.ws9e{word-spacing:-2.052000px;}
.wsb4{word-spacing:-1.998000px;}
.ws7b{word-spacing:-1.944000px;}
.ws11b{word-spacing:-1.824000px;}
.ws3d{word-spacing:-1.782000px;}
.ws8d{word-spacing:-1.674000px;}
.ws83{word-spacing:-1.620000px;}
.ws13{word-spacing:-1.566000px;}
.ws76{word-spacing:-1.458000px;}
.wsc4{word-spacing:-1.404000px;}
.ws14{word-spacing:-1.350000px;}
.ws11c{word-spacing:-1.344000px;}
.wsd5{word-spacing:-1.296000px;}
.ws54{word-spacing:-1.242000px;}
.ws22{word-spacing:-1.134000px;}
.ws11f{word-spacing:-1.104000px;}
.ws30{word-spacing:-1.080000px;}
.ws123{word-spacing:-1.056000px;}
.wsc1{word-spacing:-1.026000px;}
.ws7a{word-spacing:-0.972000px;}
.ws77{word-spacing:-0.918000px;}
.ws114{word-spacing:-0.864000px;}
.ws111{word-spacing:-0.828000px;}
.ws5f{word-spacing:-0.810000px;}
.ws110{word-spacing:-0.798000px;}
.ws113{word-spacing:-0.792000px;}
.ws112{word-spacing:-0.774000px;}
.ws3b{word-spacing:-0.756000px;}
.wsd6{word-spacing:-0.696942px;}
.wsa4{word-spacing:-0.674541px;}
.wse7{word-spacing:-0.654246px;}
.ws9f{word-spacing:-0.648000px;}
.wsc8{word-spacing:-0.607347px;}
.ws20{word-spacing:-0.594000px;}
.ws86{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.486000px;}
.wsc{word-spacing:-0.378000px;}
.ws49{word-spacing:-0.270000px;}
.wsa6{word-spacing:-0.269816px;}
.ws93{word-spacing:-0.224847px;}
.wsd2{word-spacing:-0.216000px;}
.ws43{word-spacing:-0.162000px;}
.wse9{word-spacing:-0.130849px;}
.wsb7{word-spacing:-0.128995px;}
.wsca{word-spacing:-0.121469px;}
.wsf{word-spacing:-0.108000px;}
.ws78{word-spacing:-0.054000px;}
.ws106{word-spacing:-0.012000px;}
.ws3{word-spacing:0.000000px;}
.wscb{word-spacing:0.040490px;}
.wsa5{word-spacing:0.044969px;}
.ws4b{word-spacing:0.054000px;}
.ws1a{word-spacing:0.108000px;}
.wsc9{word-spacing:0.121469px;}
.wse8{word-spacing:0.130849px;}
.ws115{word-spacing:0.144000px;}
.ws5c{word-spacing:0.162000px;}
.wsd7{word-spacing:0.185851px;}
.wsb9{word-spacing:0.194271px;}
.wsba{word-spacing:0.233125px;}
.wsa2{word-spacing:0.270000px;}
.wsb8{word-spacing:0.310834px;}
.wsea{word-spacing:0.315298px;}
.ws10{word-spacing:0.378000px;}
.ws63{word-spacing:0.432000px;}
.ws23{word-spacing:0.486000px;}
.ws10a{word-spacing:0.534000px;}
.ws8b{word-spacing:0.540000px;}
.wsbf{word-spacing:0.594000px;}
.ws24{word-spacing:0.648000px;}
.ws7c{word-spacing:0.702000px;}
.ws31{word-spacing:0.810000px;}
.wsb1{word-spacing:0.972000px;}
.ws7f{word-spacing:1.026000px;}
.wsf1{word-spacing:1.080000px;}
.ws7d{word-spacing:1.134000px;}
.wsb{word-spacing:1.188000px;}
.ws85{word-spacing:1.242000px;}
.wsa8{word-spacing:1.259143px;}
.wse1{word-spacing:1.458000px;}
.wsa7{word-spacing:1.483990px;}
.wse6{word-spacing:1.620000px;}
.ws8c{word-spacing:1.728000px;}
.ws32{word-spacing:1.782000px;}
.ws88{word-spacing:1.890000px;}
.ws117{word-spacing:1.920000px;}
.wsb5{word-spacing:1.944000px;}
.ws79{word-spacing:1.998000px;}
.ws1c{word-spacing:2.160000px;}
.wsc7{word-spacing:2.268000px;}
.ws21{word-spacing:2.322000px;}
.wsf8{word-spacing:2.376000px;}
.ws42{word-spacing:2.484000px;}
.ws2e{word-spacing:2.538000px;}
.ws81{word-spacing:2.592000px;}
.ws1b{word-spacing:2.646000px;}
.wsf2{word-spacing:2.754000px;}
.ws122{word-spacing:2.832000px;}
.ws58{word-spacing:2.862000px;}
.ws55{word-spacing:2.916000px;}
.ws62{word-spacing:2.970000px;}
.ws8a{word-spacing:3.078000px;}
.ws74{word-spacing:3.132000px;}
.ws39{word-spacing:3.186000px;}
.wsd4{word-spacing:3.240000px;}
.wsa0{word-spacing:3.294000px;}
.wsd0{word-spacing:3.348000px;}
.ws57{word-spacing:3.402000px;}
.ws4a{word-spacing:3.456000px;}
.ws116{word-spacing:3.504000px;}
.ws56{word-spacing:3.510000px;}
.wsf5{word-spacing:3.564000px;}
.ws41{word-spacing:3.618000px;}
.ws7e{word-spacing:3.672000px;}
.ws46{word-spacing:3.834000px;}
.ws11{word-spacing:3.942000px;}
.ws4d{word-spacing:3.996000px;}
.wsfa{word-spacing:4.050000px;}
.ws121{word-spacing:4.080000px;}
.ws28{word-spacing:4.104000px;}
.ws70{word-spacing:4.158000px;}
.ws3f{word-spacing:4.212000px;}
.wsd3{word-spacing:4.266000px;}
.ws26{word-spacing:4.320000px;}
.ws2f{word-spacing:4.374000px;}
.ws120{word-spacing:4.464000px;}
.ws5a{word-spacing:4.482000px;}
.ws3c{word-spacing:4.536000px;}
.ws4e{word-spacing:4.590000px;}
.ws109{word-spacing:4.752000px;}
.ws8f{word-spacing:4.968000px;}
.ws1e{word-spacing:5.022000px;}
.ws38{word-spacing:5.130000px;}
.ws1d{word-spacing:5.238000px;}
.ws50{word-spacing:5.508000px;}
.ws104{word-spacing:5.586000px;}
.ws102{word-spacing:5.616000px;}
.ws101{word-spacing:5.646000px;}
.ws103{word-spacing:5.652000px;}
.ws105{word-spacing:5.682000px;}
.ws66{word-spacing:5.778000px;}
.ws37{word-spacing:5.832000px;}
.ws6{word-spacing:5.886000px;}
.ws65{word-spacing:5.994000px;}
.ws126{word-spacing:6.000000px;}
.wsbe{word-spacing:6.102000px;}
.ws80{word-spacing:6.372000px;}
.ws27{word-spacing:6.426000px;}
.ws67{word-spacing:6.480000px;}
.ws11a{word-spacing:6.528000px;}
.ws6f{word-spacing:6.534000px;}
.ws73{word-spacing:6.642000px;}
.ws11e{word-spacing:6.672000px;}
.wse0{word-spacing:6.750000px;}
.wsee{word-spacing:6.804000px;}
.ws2a{word-spacing:6.858000px;}
.ws4{word-spacing:6.912000px;}
.ws29{word-spacing:7.182000px;}
.wsd1{word-spacing:7.236000px;}
.ws40{word-spacing:7.290000px;}
.ws6c{word-spacing:7.344000px;}
.ws19{word-spacing:7.452000px;}
.wsf4{word-spacing:7.506000px;}
.ws4c{word-spacing:7.614000px;}
.wse4{word-spacing:7.830000px;}
.ws9d{word-spacing:7.884000px;}
.ws107{word-spacing:7.920000px;}
.wsb2{word-spacing:8.046000px;}
.ws59{word-spacing:8.154000px;}
.wsc3{word-spacing:8.208000px;}
.ws82{word-spacing:8.316000px;}
.ws3a{word-spacing:8.370000px;}
.ws53{word-spacing:8.424000px;}
.ws36{word-spacing:8.478000px;}
.ws87{word-spacing:8.586000px;}
.wsa{word-spacing:8.640000px;}
.ws100{word-spacing:8.736000px;}
.ws8{word-spacing:8.748000px;}
.wsff{word-spacing:8.772000px;}
.ws44{word-spacing:8.802000px;}
.ws89{word-spacing:8.964000px;}
.ws34{word-spacing:9.018000px;}
.ws10b{word-spacing:9.120000px;}
.ws84{word-spacing:9.180000px;}
.ws52{word-spacing:9.288000px;}
.wsf0{word-spacing:9.450000px;}
.wsc2{word-spacing:9.504000px;}
.ws16{word-spacing:9.666000px;}
.ws3e{word-spacing:9.882000px;}
.ws118{word-spacing:9.888000px;}
.ws10f{word-spacing:10.128000px;}
.ws10e{word-spacing:10.224000px;}
.ws91{word-spacing:10.260000px;}
.wsf7{word-spacing:10.368000px;}
.ws64{word-spacing:10.746000px;}
.wsed{word-spacing:10.962000px;}
.ws68{word-spacing:11.070000px;}
.ws5b{word-spacing:11.178000px;}
.ws92{word-spacing:11.448000px;}
.ws69{word-spacing:11.556000px;}
.ws6b{word-spacing:11.772000px;}
.ws9{word-spacing:11.988000px;}
.ws10c{word-spacing:12.048000px;}
.ws5{word-spacing:12.096000px;}
.wsf9{word-spacing:12.204000px;}
.ws4f{word-spacing:12.366000px;}
.ws6a{word-spacing:12.420000px;}
.ws47{word-spacing:12.528000px;}
.ws97{word-spacing:12.739831px;}
.ws124{word-spacing:13.104000px;}
.ws72{word-spacing:13.608000px;}
.wsf3{word-spacing:13.662000px;}
.ws6d{word-spacing:14.202000px;}
.ws6e{word-spacing:14.310000px;}
.ws75{word-spacing:14.364000px;}
.wsec{word-spacing:14.472000px;}
.wsce{word-spacing:14.634000px;}
.ws71{word-spacing:15.066000px;}
.wsd{word-spacing:15.174000px;}
.ws35{word-spacing:15.390000px;}
.ws17{word-spacing:15.498000px;}
.ws125{word-spacing:15.600000px;}
.ws18{word-spacing:15.984000px;}
.ws51{word-spacing:16.416000px;}
.ws2b{word-spacing:16.686000px;}
.wsf6{word-spacing:17.388000px;}
.wscf{word-spacing:17.496000px;}
.ws1f{word-spacing:17.604000px;}
.wsa3{word-spacing:17.766000px;}
.wsc5{word-spacing:17.874000px;}
.ws5d{word-spacing:21.600000px;}
.ws2c{word-spacing:21.870000px;}
.wsc6{word-spacing:23.004000px;}
.ws7{word-spacing:24.300000px;}
.wsdc{word-spacing:41.323692px;}
.wsae{word-spacing:86.100907px;}
.wsbd{word-spacing:129.616056px;}
.ws94{word-spacing:135.762619px;}
.wsa9{word-spacing:144.366666px;}
.wsaa{word-spacing:144.848458px;}
.wsac{word-spacing:149.538160px;}
.wscd{word-spacing:155.161747px;}
.wsd8{word-spacing:204.234020px;}
._b{margin-left:-19.260000px;}
._c{margin-left:-14.262000px;}
._1a{margin-left:-12.126000px;}
._a{margin-left:-9.144000px;}
._8{margin-left:-7.051200px;}
._13{margin-left:-5.448600px;}
._3{margin-left:-4.303800px;}
._7{margin-left:-3.096000px;}
._e{margin-left:-2.066400px;}
._0{margin-left:-1.020000px;}
._1{width:1.194000px;}
._6{width:2.353800px;}
._14{width:3.388800px;}
._9{width:4.401000px;}
._2{width:5.972400px;}
._5{width:6.976800px;}
._4{width:8.002800px;}
._f{width:9.363600px;}
._18{width:11.373000px;}
._16{width:12.695400px;}
._d{width:14.196600px;}
._1b{width:16.464000px;}
._11{width:17.841600px;}
._10{width:21.832200px;}
._15{width:23.932800px;}
._12{width:27.361569px;}
._19{width:28.528431px;}
._17{width:394.236858px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:31.482000px;}
.fs10{font-size:36.586800px;}
.fsd{font-size:38.854200px;}
.fs16{font-size:39.412200px;}
.fse{font-size:40.489800px;}
.fs13{font-size:41.984400px;}
.fsb{font-size:42.998400px;}
.fs6{font-size:43.127400px;}
.fs14{font-size:43.616400px;}
.fs8{font-size:44.969400px;}
.fs3{font-size:45.000000px;}
.fs11{font-size:46.462800px;}
.fsa{font-size:46.801200px;}
.fs5{font-size:48.000000px;}
.fsf{font-size:48.782400px;}
.fs17{font-size:51.000000px;}
.fsc{font-size:51.805200px;}
.fs15{font-size:52.549800px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:54.180000px;}
.fs12{font-size:55.979400px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.y122{bottom:-36.059550px;}
.y1c0{bottom:-30.022050px;}
.y1e7{bottom:-27.769200px;}
.y164{bottom:-23.113500px;}
.y121{bottom:-20.757415px;}
.y1bf{bottom:-14.217753px;}
.y1e6{bottom:-12.926454px;}
.y190{bottom:-12.885645px;}
.y191{bottom:-12.872100px;}
.y163{bottom:-8.485570px;}
.y120{bottom:-7.750016px;}
.y18f{bottom:-3.370542px;}
.y1be{bottom:-3.298995px;}
.y1e5{bottom:-2.676600px;}
.y0{bottom:0.000000px;}
.y162{bottom:1.619054px;}
.y2c{bottom:2.587500px;}
.y11f{bottom:2.817793px;}
.y13e{bottom:7.325700px;}
.y12b{bottom:13.454864px;}
.y2a{bottom:14.143500px;}
.y13c{bottom:19.877400px;}
.y141{bottom:21.118950px;}
.y142{bottom:24.256800px;}
.y125{bottom:26.698352px;}
.y143{bottom:26.751450px;}
.y13d{bottom:28.015650px;}
.y13f{bottom:28.647750px;}
.y140{bottom:34.566150px;}
.y139{bottom:45.831150px;}
.y53{bottom:47.481450px;}
.y144{bottom:47.727450px;}
.y5{bottom:49.212300px;}
.y124{bottom:51.600158px;}
.y126{bottom:52.038609px;}
.y13a{bottom:55.240997px;}
.y127{bottom:77.378866px;}
.y197{bottom:78.649136px;}
.y131{bottom:81.055644px;}
.y52{bottom:83.622000px;}
.y261{bottom:83.622900px;}
.y1a2{bottom:84.899400px;}
.y28a{bottom:85.039350px;}
.y20{bottom:85.353900px;}
.y198{bottom:90.128245px;}
.y132{bottom:91.443576px;}
.y196{bottom:92.204546px;}
.y1cd{bottom:93.046950px;}
.y260{bottom:97.362900px;}
.y18b{bottom:97.792500px;}
.y289{bottom:100.339350px;}
.y1f{bottom:101.409000px;}
.y199{bottom:101.607353px;}
.y133{bottom:101.831507px;}
.y12f{bottom:102.404867px;}
.y128{bottom:102.719123px;}
.y15d{bottom:103.959900px;}
.y104{bottom:104.064900px;}
.y75{bottom:104.111550px;}
.y21c{bottom:104.118450px;}
.y11b{bottom:104.172150px;}
.y97{bottom:104.354550px;}
.yb7{bottom:104.464050px;}
.y51{bottom:104.868600px;}
.y1e3{bottom:105.109500px;}
.ye6{bottom:106.563900px;}
.y1ba{bottom:109.488000px;}
.y134{bottom:112.219438px;}
.y19a{bottom:113.086462px;}
.y23a{bottom:113.339100px;}
.y130{bottom:114.872633px;}
.y25f{bottom:115.356900px;}
.y1e{bottom:117.463950px;}
.y135{bottom:122.607370px;}
.y15c{bottom:123.247950px;}
.y103{bottom:124.507650px;}
.y19b{bottom:124.565570px;}
.y74{bottom:124.601100px;}
.y21b{bottom:124.614900px;}
.y11a{bottom:124.722450px;}
.y96{bottom:125.086950px;}
.yb6{bottom:125.306100px;}
.y50{bottom:126.115050px;}
.y195{bottom:126.532111px;}
.y1e2{bottom:126.596850px;}
.y129{bottom:128.059380px;}
.y25e{bottom:129.096900px;}
.ye5{bottom:129.505800px;}
.y136{bottom:132.995301px;}
.y1d{bottom:133.519050px;}
.y239{bottom:134.552100px;}
.y19c{bottom:136.044679px;}
.y123{bottom:136.479900px;}
.y12d{bottom:141.888000px;}
.y137{bottom:143.383233px;}
.y192{bottom:143.746200px;}
.y21a{bottom:145.111350px;}
.y95{bottom:145.819500px;}
.yb5{bottom:146.148150px;}
.y25d{bottom:147.084900px;}
.y4f{bottom:147.361650px;}
.y19d{bottom:147.523787px;}
.y1e1{bottom:148.084200px;}
.y1c{bottom:149.574000px;}
.y15b{bottom:151.039800px;}
.ye4{bottom:152.447700px;}
.y161{bottom:152.887426px;}
.y12a{bottom:153.399637px;}
.y102{bottom:153.454500px;}
.y73{bottom:153.594450px;}
.y138{bottom:153.771164px;}
.y119{bottom:153.776400px;}
.y12e{bottom:154.355766px;}
.y238{bottom:155.765250px;}
.y19e{bottom:159.002896px;}
.y25c{bottom:160.830900px;}
.y160{bottom:165.324713px;}
.y219{bottom:165.607800px;}
.y1b{bottom:165.628950px;}
.yb4{bottom:166.990200px;}
.y4e{bottom:168.608100px;}
.y1e0{bottom:169.571700px;}
.y15a{bottom:170.327700px;}
.y19f{bottom:170.482004px;}
.y12c{bottom:173.388535px;}
.y145{bottom:173.774400px;}
.y72{bottom:174.084000px;}
.y118{bottom:174.326700px;}
.y94{bottom:175.055850px;}
.ye3{bottom:175.389600px;}
.y15f{bottom:177.762000px;}
.y194{bottom:178.302433px;}
.y25b{bottom:178.818900px;}
.y1a{bottom:181.684050px;}
.y1a0{bottom:181.961113px;}
.y237{bottom:185.482200px;}
.y193{bottom:187.833294px;}
.y159{bottom:189.615600px;}
.y4d{bottom:189.854700px;}
.y1df{bottom:191.059050px;}
.y25a{bottom:192.564900px;}
.y1a1{bottom:193.440221px;}
.y71{bottom:194.573550px;}
.y218{bottom:194.608050px;}
.y117{bottom:194.876850px;}
.y11e{bottom:194.882100px;}
.yb3{bottom:196.336050px;}
.y1c6{bottom:197.152201px;}
.y19{bottom:197.739000px;}
.y18e{bottom:206.154051px;}
.y236{bottom:206.695350px;}
.ye2{bottom:206.835450px;}
.y158{bottom:208.903500px;}
.y1c5{bottom:209.810498px;}
.y259{bottom:210.560400px;}
.y101{bottom:211.348050px;}
.y1de{bottom:212.546400px;}
.y18{bottom:213.794100px;}
.y70{bottom:215.063100px;}
.y116{bottom:215.427000px;}
.y1c7{bottom:215.793275px;}
.yb2{bottom:217.178100px;}
.y1bd{bottom:217.817470px;}
.y18d{bottom:217.865725px;}
.y4c{bottom:219.605100px;}
.y93{bottom:221.300250px;}
.y217{bottom:223.608450px;}
.y258{bottom:224.300400px;}
.y157{bottom:228.191400px;}
.y18c{bottom:229.577400px;}
.ye1{bottom:229.777350px;}
.y1bc{bottom:231.256835px;}
.y100{bottom:231.790800px;}
.y1dd{bottom:234.033900px;}
.y1c8{bottom:234.434349px;}
.y6f{bottom:235.552500px;}
.y235{bottom:236.412300px;}
.yb1{bottom:238.020150px;}
.y257{bottom:238.040400px;}
.y17{bottom:238.353000px;}
.y4b{bottom:240.851550px;}
.y92{bottom:242.032650px;}
.y216{bottom:244.104900px;}
.y115{bottom:244.481100px;}
.y1bb{bottom:244.696200px;}
.y288{bottom:245.207400px;}
.y156{bottom:247.479300px;}
.y1c4{bottom:248.593588px;}
.yff{bottom:252.233700px;}
.ye0{bottom:252.719250px;}
.y1c9{bottom:253.075422px;}
.y1dc{bottom:255.521250px;}
.y256{bottom:256.028400px;}
.y6e{bottom:256.042050px;}
.y234{bottom:257.625450px;}
.y287{bottom:258.707400px;}
.yb0{bottom:258.862200px;}
.y4a{bottom:262.098150px;}
.y91{bottom:262.765200px;}
.y1c1{bottom:264.169800px;}
.y215{bottom:264.601350px;}
.y155{bottom:266.767200px;}
.y255{bottom:269.771400px;}
.y1ca{bottom:271.716496px;}
.y286{bottom:272.207400px;}
.yfe{bottom:272.676450px;}
.ydf{bottom:275.661150px;}
.y6d{bottom:276.531600px;}
.y1db{bottom:277.008600px;}
.yaf{bottom:279.704250px;}
.y11c{bottom:283.324200px;}
.y49{bottom:283.344600px;}
.y90{bottom:283.497600px;}
.y254{bottom:283.514400px;}
.y233{bottom:287.342400px;}
.y16{bottom:287.470950px;}
.y1c2{bottom:287.471142px;}
.y285{bottom:289.959450px;}
.y1cb{bottom:290.357569px;}
.yfd{bottom:293.119350px;}
.y214{bottom:293.601750px;}
.y154{bottom:294.559200px;}
.y11d{bottom:296.574000px;}
.y6c{bottom:297.021150px;}
.y253{bottom:297.258000px;}
.yae{bottom:300.546300px;}
.y13b{bottom:300.607500px;}
.y1c3{bottom:301.451947px;}
.y284{bottom:303.459450px;}
.y15{bottom:303.525900px;}
.y8f{bottom:304.230150px;}
.y48{bottom:304.591200px;}
.yc7{bottom:305.525100px;}
.y1da{bottom:307.000050px;}
.yde{bottom:307.107000px;}
.y232{bottom:308.555550px;}
.y1cc{bottom:308.998643px;}
.y153{bottom:313.847100px;}
.y252{bottom:315.246000px;}
.y18a{bottom:316.054800px;}
.y283{bottom:316.959450px;}
.y6b{bottom:317.510550px;}
.yad{bottom:321.388350px;}
.yfc{bottom:322.066050px;}
.y213{bottom:322.602150px;}
.y8e{bottom:324.962700px;}
.y47{bottom:325.837650px;}
.yc6{bottom:326.014500px;}
.y1d9{bottom:328.487400px;}
.y251{bottom:328.992000px;}
.y231{bottom:329.768550px;}
.ydd{bottom:330.048900px;}
.y282{bottom:334.711350px;}
.y189{bottom:336.605100px;}
.y6a{bottom:338.000100px;}
.y152{bottom:341.638950px;}
.yac{bottom:342.230400px;}
.yfb{bottom:342.508950px;}
.y1b9{bottom:343.346400px;}
.y8d{bottom:345.695100px;}
.yc5{bottom:346.504050px;}
.y250{bottom:346.980000px;}
.y46{bottom:347.084250px;}
.y281{bottom:348.211350px;}
.y212{bottom:351.602400px;}
.y14{bottom:352.643850px;}
.ydc{bottom:352.990800px;}
.y188{bottom:357.155250px;}
.y69{bottom:358.489650px;}
.y230{bottom:359.485500px;}
.y24f{bottom:360.717000px;}
.y151{bottom:360.926850px;}
.yfa{bottom:362.951700px;}
.y1b8{bottom:364.342950px;}
.y280{bottom:365.963400px;}
.y8c{bottom:366.427650px;}
.y45{bottom:368.330700px;}
.y13{bottom:368.698800px;}
.yab{bottom:371.576250px;}
.y211{bottom:372.098850px;}
.yc4{bottom:375.497550px;}
.ydb{bottom:375.932700px;}
.y1fa{bottom:376.866150px;}
.y27f{bottom:379.463400px;}
.y150{bottom:380.214750px;}
.y22f{bottom:380.698650px;}
.yf9{bottom:383.394600px;}
.y1b7{bottom:385.339500px;}
.y187{bottom:386.209350px;}
.y8b{bottom:387.160050px;}
.y68{bottom:387.483150px;}
.y1e4{bottom:391.710000px;}
.y210{bottom:391.845300px;}
.yaa{bottom:392.418300px;}
.y12{bottom:393.257700px;}
.yc3{bottom:395.987100px;}
.y24e{bottom:396.705000px;}
.y27e{bottom:397.215300px;}
.y44{bottom:398.081250px;}
.yda{bottom:398.874600px;}
.y14f{bottom:399.502650px;}
.y1f9{bottom:399.649955px;}
.yf8{bottom:403.837350px;}
.y1b6{bottom:406.336050px;}
.y186{bottom:406.759500px;}
.y8a{bottom:407.892600px;}
.y67{bottom:407.972700px;}
.y11{bottom:409.312800px;}
.y22e{bottom:410.415600px;}
.y20f{bottom:411.591750px;}
.y1f8{bottom:411.680529px;}
.y27d{bottom:414.967350px;}
.yc2{bottom:416.476500px;}
.ya9{bottom:421.764300px;}
.yd9{bottom:421.816500px;}
.yf7{bottom:424.280250px;}
.y1ed{bottom:424.519053px;}
.y10{bottom:425.367750px;}
.y14e{bottom:427.294500px;}
.y185{bottom:427.309650px;}
.y66{bottom:428.462100px;}
.y27c{bottom:428.467350px;}
.y20e{bottom:431.338200px;}
.y22d{bottom:431.628750px;}
.y1b5{bottom:435.836550px;}
.y24d{bottom:436.923000px;}
.yc1{bottom:436.966050px;}
.y89{bottom:437.128950px;}
.y1ec{bottom:437.879789px;}
.y1ee{bottom:439.357746px;}
.yf{bottom:441.422850px;}
.y27b{bottom:441.967350px;}
.ya8{bottom:442.606350px;}
.yf6{bottom:444.723000px;}
.yd8{bottom:444.758400px;}
.y14d{bottom:446.582400px;}
.y65{bottom:448.951650px;}
.y43{bottom:449.078100px;}
.y20d{bottom:451.084650px;}
.y22c{bottom:452.841900px;}
.y1ef{bottom:454.196440px;}
.y1eb{bottom:454.206293px;}
.y27a{bottom:455.467350px;}
.y184{bottom:456.363750px;}
.y1b4{bottom:456.833100px;}
.yc0{bottom:457.455600px;}
.ye{bottom:457.477800px;}
.y88{bottom:457.861500px;}
.y1e8{bottom:463.113450px;}
.ya7{bottom:463.448400px;}
.yf5{bottom:465.165900px;}
.y42{bottom:465.824700px;}
.y14c{bottom:465.870450px;}
.y24c{bottom:465.920400px;}
.y279{bottom:468.967350px;}
.y1f0{bottom:469.035133px;}
.y64{bottom:469.441200px;}
.y20c{bottom:470.831100px;}
.yd{bottom:473.532750px;}
.y22b{bottom:474.054900px;}
.yd7{bottom:476.204250px;}
.y183{bottom:476.913900px;}
.y1b3{bottom:477.829650px;}
.ybf{bottom:477.945150px;}
.y87{bottom:478.593900px;}
.y1ea{bottom:480.917911px;}
.y278{bottom:482.467350px;}
.y1f1{bottom:483.873826px;}
.y14b{bottom:485.158350px;}
.y24b{bottom:486.413400px;}
.yc{bottom:489.587850px;}
.y63{bottom:489.930750px;}
.y41{bottom:491.075100px;}
.ya6{bottom:492.794250px;}
.yf4{bottom:494.112600px;}
.y22a{bottom:495.267900px;}
.y182{bottom:497.464200px;}
.ybe{bottom:498.434550px;}
.y1f2{bottom:498.712520px;}
.y1b2{bottom:498.826200px;}
.y20b{bottom:499.081350px;}
.yd6{bottom:499.146150px;}
.y86{bottom:499.326450px;}
.y277{bottom:500.219250px;}
.y14a{bottom:504.446250px;}
.yb{bottom:505.642800px;}
.y114{bottom:505.968000px;}
.y24a{bottom:506.906400px;}
.y40{bottom:507.821700px;}
.y62{bottom:510.420300px;}
.y1f3{bottom:513.551213px;}
.ya5{bottom:513.636450px;}
.y276{bottom:513.719250px;}
.yf3{bottom:514.555500px;}
.y229{bottom:516.481050px;}
.y20a{bottom:518.827950px;}
.ybd{bottom:518.924100px;}
.y1b1{bottom:519.822750px;}
.y85{bottom:520.058850px;}
.ya{bottom:521.697900px;}
.yd5{bottom:522.088050px;}
.y3f{bottom:524.568150px;}
.y113{bottom:526.518150px;}
.y249{bottom:527.399400px;}
.y1f4{bottom:528.389906px;}
.y149{bottom:532.238100px;}
.ya4{bottom:534.478350px;}
.y9{bottom:537.752850px;}
.y209{bottom:538.574250px;}
.y61{bottom:539.413650px;}
.y84{bottom:540.791400px;}
.y3e{bottom:541.314750px;}
.y1f5{bottom:543.228600px;}
.yf2{bottom:543.502200px;}
.yd4{bottom:545.029950px;}
.y228{bottom:546.198150px;}
.y112{bottom:547.068450px;}
.y248{bottom:547.892400px;}
.y275{bottom:549.223200px;}
.y1b0{bottom:549.323250px;}
.y8{bottom:553.807800px;}
.ya3{bottom:555.320400px;}
.y3d{bottom:558.061200px;}
.y1f6{bottom:558.067293px;}
.y208{bottom:558.320700px;}
.y60{bottom:559.903200px;}
.y83{bottom:561.523800px;}
.y1e9{bottom:562.550431px;}
.yf1{bottom:563.945100px;}
.y227{bottom:567.411150px;}
.y181{bottom:567.618600px;}
.yd3{bottom:567.971850px;}
.y247{bottom:568.385400px;}
.y1af{bottom:570.319650px;}
.y1f7{bottom:572.905986px;}
.y3c{bottom:574.807650px;}
.y111{bottom:576.122550px;}
.y207{bottom:578.067150px;}
.y7{bottom:578.366850px;}
.y5f{bottom:580.392750px;}
.ya2{bottom:584.666400px;}
.y180{bottom:588.168750px;}
.y274{bottom:588.624750px;}
.y148{bottom:588.871800px;}
.y246{bottom:588.878400px;}
.y82{bottom:590.760300px;}
.yd2{bottom:590.913750px;}
.y1ae{bottom:591.316200px;}
.y3b{bottom:591.554250px;}
.yf0{bottom:592.891800px;}
.y110{bottom:596.672700px;}
.y226{bottom:597.128100px;}
.y206{bottom:597.813600px;}
.y1d8{bottom:598.409400px;}
.y5e{bottom:600.882150px;}
.y273{bottom:602.124750px;}
.y6{bottom:602.925750px;}
.ya1{bottom:605.508450px;}
.y3a{bottom:608.300700px;}
.y17f{bottom:608.718900px;}
.y147{bottom:609.209700px;}
.y81{bottom:611.492850px;}
.yd1{bottom:613.855650px;}
.y245{bottom:617.876400px;}
.y272{bottom:619.876800px;}
.y1d7{bottom:619.896750px;}
.y1ad{bottom:620.816700px;}
.y5d{bottom:621.371700px;}
.yef{bottom:621.838650px;}
.y39{bottom:625.047300px;}
.y10f{bottom:625.726800px;}
.y205{bottom:626.064000px;}
.ya0{bottom:626.350500px;}
.y225{bottom:626.845200px;}
.y80{bottom:632.225250px;}
.y271{bottom:633.376800px;}
.y17e{bottom:637.773000px;}
.y244{bottom:638.342550px;}
.y1d6{bottom:641.384250px;}
.y38{bottom:641.793750px;}
.y1ac{bottom:641.813250px;}
.y5c{bottom:641.861250px;}
.yee{bottom:642.281400px;}
.yd0{bottom:645.301500px;}
.y204{bottom:645.810450px;}
.y10e{bottom:646.276950px;}
.y9f{bottom:647.192550px;}
.y270{bottom:651.128700px;}
.y7f{bottom:652.957800px;}
.y224{bottom:656.562150px;}
.y177{bottom:657.495150px;}
.y5b{bottom:662.350650px;}
.yed{bottom:662.724300px;}
.y1ab{bottom:662.809800px;}
.y1d5{bottom:662.871600px;}
.y26f{bottom:664.628700px;}
.y28{bottom:665.252100px;}
.y203{bottom:665.556900px;}
.y10d{bottom:666.827100px;}
.y37{bottom:667.044300px;}
.y243{bottom:667.340550px;}
.y9e{bottom:668.034600px;}
.ycf{bottom:668.243400px;}
.ybc{bottom:670.854750px;}
.y15e{bottom:672.873000px;}
.y7e{bottom:673.690200px;}
.y223{bottom:677.775300px;}
.y26e{bottom:682.380600px;}
.y5a{bottom:682.840200px;}
.y1aa{bottom:683.806350px;}
.y1d4{bottom:684.358950px;}
.y174{bottom:684.969016px;}
.y202{bottom:685.303200px;}
.y27{bottom:686.252100px;}
.y10c{bottom:687.377250px;}
.y242{bottom:687.833550px;}
.y9d{bottom:688.876500px;}
.yce{bottom:691.185300px;}
.ybb{bottom:691.344150px;}
.yec{bottom:691.671000px;}
.y7d{bottom:694.422750px;}
.y26d{bottom:695.880600px;}
.y17d{bottom:695.881200px;}
.y176{bottom:696.819547px;}
.y173{bottom:696.829261px;}
.y222{bottom:698.988300px;}
.y1a9{bottom:704.802900px;}
.y201{bottom:705.049650px;}
.y1d3{bottom:705.846450px;}
.y26{bottom:707.252100px;}
.y10b{bottom:707.927550px;}
.y241{bottom:708.326550px;}
.y175{bottom:708.679792px;}
.y172{bottom:708.689505px;}
.y9c{bottom:709.718550px;}
.y59{bottom:711.833700px;}
.y26c{bottom:713.632650px;}
.ycd{bottom:714.127200px;}
.y7c{bottom:715.155150px;}
.y17c{bottom:716.431350px;}
.y36{bottom:717.545100px;}
.y169{bottom:721.326834px;}
.y200{bottom:724.796100px;}
.y1a8{bottom:725.799450px;}
.y26b{bottom:727.132650px;}
.y25{bottom:728.252100px;}
.y10a{bottom:728.477700px;}
.y221{bottom:728.705400px;}
.y240{bottom:728.819550px;}
.y9b{bottom:730.560600px;}
.y16a{bottom:732.264291px;}
.yba{bottom:732.323250px;}
.y168{bottom:733.439631px;}
.y35{bottom:734.291700px;}
.y1d2{bottom:735.837750px;}
.y7b{bottom:735.887700px;}
.y17b{bottom:736.981500px;}
.ycc{bottom:737.069100px;}
.y16b{bottom:743.201748px;}
.y1ff{bottom:744.542550px;}
.y26a{bottom:744.884700px;}
.y1a7{bottom:746.796000px;}
.y109{bottom:749.027850px;}
.y24{bottom:749.252100px;}
.y23f{bottom:749.312550px;}
.yeb{bottom:749.564550px;}
.y9a{bottom:751.402650px;}
.yb9{bottom:752.812800px;}
.y16c{bottom:754.139206px;}
.y7a{bottom:756.620250px;}
.y1d1{bottom:757.325100px;}
.y17a{bottom:757.531800px;}
.y58{bottom:757.835100px;}
.y269{bottom:758.384700px;}
.y220{bottom:758.422350px;}
.ycb{bottom:760.011000px;}
.y16d{bottom:765.076663px;}
.y108{bottom:769.578000px;}
.y23e{bottom:769.805550px;}
.yea{bottom:770.007450px;}
.y23{bottom:770.252100px;}
.y166{bottom:771.730445px;}
.y268{bottom:771.884550px;}
.y1fe{bottom:772.792950px;}
.y16e{bottom:776.014120px;}
.y1a6{bottom:776.296350px;}
.y79{bottom:777.352650px;}
.y179{bottom:778.081950px;}
.y57{bottom:778.324500px;}
.y21f{bottom:779.635500px;}
.y99{bottom:780.748650px;}
.yb8{bottom:781.806150px;}
.yca{bottom:782.952900px;}
.y34{bottom:784.792650px;}
.y16f{bottom:786.951578px;}
.y1d0{bottom:787.316400px;}
.y267{bottom:789.636600px;}
.y107{bottom:790.128150px;}
.y23d{bottom:790.298550px;}
.ye9{bottom:790.450200px;}
.y22{bottom:791.252100px;}
.y1fd{bottom:792.539400px;}
.y165{bottom:797.218800px;}
.y1a5{bottom:797.292900px;}
.y170{bottom:797.889035px;}
.y78{bottom:798.085200px;}
.y178{bottom:798.632100px;}
.y56{bottom:798.814050px;}
.y33{bottom:801.539100px;}
.y266{bottom:803.136600px;}
.yc9{bottom:805.894800px;}
.y167{bottom:806.291256px;}
.y1cf{bottom:808.803900px;}
.y171{bottom:808.826492px;}
.y21e{bottom:809.352600px;}
.ye8{bottom:810.892950px;}
.y21{bottom:812.252100px;}
.y1fc{bottom:812.285850px;}
.y265{bottom:816.636600px;}
.y1a4{bottom:818.289600px;}
.y77{bottom:818.817600px;}
.y106{bottom:819.182250px;}
.y23c{bottom:819.296550px;}
.y55{bottom:819.303600px;}
.y32{bottom:826.789650px;}
.y2e{bottom:829.316550px;}
.y264{bottom:830.136600px;}
.y21d{bottom:830.565600px;}
.ye7{bottom:831.335850px;}
.y1fb{bottom:832.032300px;}
.yc8{bottom:837.340650px;}
.y1ce{bottom:838.795200px;}
.y1a3{bottom:839.286000px;}
.y98{bottom:839.440500px;}
.y76{bottom:839.550150px;}
.y105{bottom:839.732400px;}
.y23b{bottom:839.789550px;}
.y54{bottom:839.793150px;}
.y146{bottom:839.944650px;}
.y3{bottom:841.596750px;}
.y31{bottom:843.536100px;}
.y2d{bottom:843.716550px;}
.y29{bottom:847.752000px;}
.y263{bottom:847.888500px;}
.y2b{bottom:859.308000px;}
.y30{bottom:860.282550px;}
.y262{bottom:861.388500px;}
.y2{bottom:862.596750px;}
.y1{bottom:883.596750px;}
.y2f{bottom:919.568700px;}
.y4{bottom:921.653850px;}
.h21{height:25.046237px;}
.h1b{height:26.598432px;}
.h2a{height:26.980422px;}
.h1e{height:26.986610px;}
.h1f{height:28.133294px;}
.h18{height:28.658602px;}
.h26{height:28.741274px;}
.h19{height:29.876330px;}
.h28{height:30.305731px;}
.h23{height:30.967638px;}
.h12{height:31.245828px;}
.hd{height:31.784894px;}
.h24{height:32.283479px;}
.h15{height:32.518607px;}
.h20{height:33.394983px;}
.h1a{height:35.464302px;}
.h29{height:35.974033px;}
.h13{height:37.090020px;}
.h2f{height:38.039062px;}
.h25{height:38.321835px;}
.hb{height:38.928000px;}
.h10{height:39.585938px;}
.h30{height:41.361000px;}
.h5{height:42.253418px;}
.h8{height:42.793945px;}
.h4{height:43.794000px;}
.h2c{height:44.015625px;}
.h2e{height:45.070312px;}
.h2d{height:45.082312px;}
.h3{height:48.660000px;}
.h6{height:49.517578px;}
.hf{height:50.572266px;}
.h7{height:50.704102px;}
.h2b{height:50.802502px;}
.h9{height:51.120000px;}
.h14{height:56.203845px;}
.ha{height:58.392000px;}
.h2{height:63.258000px;}
.h1c{height:70.348261px;}
.he{height:70.554000px;}
.hc{height:91.360500px;}
.h17{height:157.324500px;}
.h16{height:188.817000px;}
.h27{height:194.529000px;}
.h11{height:201.970500px;}
.h1d{height:203.032500px;}
.h22{height:212.599500px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w3{width:55.516500px;}
.w2{width:77.409900px;}
.w5{width:229.071000px;}
.w7{width:459.213000px;}
.w9{width:463.464000px;}
.w8{width:487.912500px;}
.w6{width:494.229000px;}
.w4{width:514.275000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x49{left:-5.587991px;}
.x50{left:-2.934241px;}
.x0{left:0.000000px;}
.x20{left:6.497266px;}
.x39{left:10.325885px;}
.x10{left:13.622400px;}
.x4e{left:15.735559px;}
.x2c{left:19.604112px;}
.x4d{left:20.776077px;}
.x47{left:33.513827px;}
.x29{left:42.536700px;}
.x13{left:54.000000px;}
.x17{left:55.275600px;}
.x12{left:57.873150px;}
.x37{left:59.664000px;}
.x4b{left:65.882250px;}
.x16{left:71.007900px;}
.x2d{left:73.335112px;}
.x1d{left:75.579000px;}
.x14{left:76.694400px;}
.xf{left:78.153600px;}
.x6{left:79.511850px;}
.x2e{left:81.657000px;}
.x2f{left:83.348550px;}
.x7{left:86.402400px;}
.x8{left:88.274550px;}
.x11{left:91.645500px;}
.x19{left:96.519750px;}
.x30{left:99.438300px;}
.xa{left:102.016200px;}
.x60{left:104.270442px;}
.x2a{left:106.888350px;}
.x3d{left:108.087658px;}
.x5f{left:109.265938px;}
.x18{left:111.618450px;}
.x1b{left:112.623450px;}
.x5e{left:114.261434px;}
.x31{left:115.527900px;}
.x3e{left:117.674932px;}
.x4c{left:123.057829px;}
.x3c{left:124.892100px;}
.x2b{left:125.936438px;}
.x53{left:128.431200px;}
.x32{left:131.617500px;}
.x15{left:142.345500px;}
.x62{left:144.845302px;}
.x61{left:149.357998px;}
.x69{left:152.500950px;}
.x33{left:153.785400px;}
.x59{left:161.477250px;}
.x21{left:163.398289px;}
.x3f{left:166.048411px;}
.x3b{left:167.162549px;}
.x4f{left:168.888900px;}
.x68{left:173.900700px;}
.x52{left:177.596969px;}
.x34{left:179.886600px;}
.x1{left:188.617050px;}
.x54{left:190.400174px;}
.x35{left:195.976350px;}
.x63{left:215.334021px;}
.x36{left:218.144100px;}
.x46{left:227.505150px;}
.x2{left:228.551700px;}
.x5a{left:230.616102px;}
.x40{left:236.986467px;}
.x1c{left:238.604550px;}
.x38{left:239.690100px;}
.x1e{left:245.721600px;}
.x55{left:249.703139px;}
.x26{left:275.709499px;}
.x25{left:281.583050px;}
.x24{left:287.456601px;}
.x42{left:291.683467px;}
.x41{left:293.995292px;}
.x4a{left:296.239950px;}
.x5b{left:299.754954px;}
.x3{left:310.431000px;}
.x56{left:314.327627px;}
.x27{left:318.953808px;}
.x22{left:332.280450px;}
.x4{left:340.649250px;}
.x43{left:350.518439px;}
.x28{left:356.008658px;}
.x64{left:365.937891px;}
.x5c{left:368.893806px;}
.x57{left:374.890124px;}
.xd{left:386.985600px;}
.xe{left:390.118350px;}
.x23{left:392.256188px;}
.xc{left:396.705600px;}
.x44{left:399.804992px;}
.x65{left:414.769606px;}
.x9{left:416.163450px;}
.xb{left:417.855600px;}
.x66{left:436.308374px;}
.x5d{left:440.535332px;}
.x45{left:460.592388px;}
.x48{left:461.939495px;}
.x58{left:463.667550px;}
.x3a{left:468.022354px;}
.x67{left:488.017180px;}
.x51{left:493.880864px;}
.x1f{left:505.947972px;}
.x5{left:569.559750px;}
.x1a{left:570.835350px;}
@media print{
.v3{vertical-align:-22.144931pt;}
.v2{vertical-align:-7.394968pt;}
.v8{vertical-align:-1.576488pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.847789pt;}
.v4{vertical-align:14.789936pt;}
.v1{vertical-align:15.984000pt;}
.v7{vertical-align:38.888737pt;}
.v5{vertical-align:44.329835pt;}
.ls30{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.291207pt;}
.ls10{letter-spacing:-0.249606pt;}
.ls29{letter-spacing:-0.245231pt;}
.ls14{letter-spacing:-0.241759pt;}
.lsb{letter-spacing:-0.239837pt;}
.ls27{letter-spacing:-0.175165pt;}
.ls17{letter-spacing:-0.172685pt;}
.ls2a{letter-spacing:-0.140132pt;}
.ls13{letter-spacing:-0.138148pt;}
.ls28{letter-spacing:-0.105099pt;}
.ls18{letter-spacing:-0.103611pt;}
.ls16{letter-spacing:-0.069074pt;}
.lsd{letter-spacing:-0.041601pt;}
.ls21{letter-spacing:-0.041300pt;}
.ls9{letter-spacing:-0.039973pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009067pt;}
.ls2f{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.011584pt;}
.ls3{letter-spacing:0.012800pt;}
.ls32{letter-spacing:0.017600pt;}
.ls19{letter-spacing:0.018667pt;}
.ls2e{letter-spacing:0.019733pt;}
.ls15{letter-spacing:0.034537pt;}
.ls2b{letter-spacing:0.035033pt;}
.ls26{letter-spacing:0.038770pt;}
.ls1e{letter-spacing:0.071982pt;}
.lse{letter-spacing:0.083202pt;}
.ls1b{letter-spacing:0.107973pt;}
.ls20{letter-spacing:0.123901pt;}
.ls25{letter-spacing:0.124064pt;}
.ls1d{letter-spacing:0.143964pt;}
.lsa{letter-spacing:0.159891pt;}
.ls22{letter-spacing:0.165201pt;}
.ls33{letter-spacing:0.170667pt;}
.ls1c{letter-spacing:0.215946pt;}
.ls12{letter-spacing:0.229325pt;}
.ls24{letter-spacing:0.232621pt;}
.ls8{letter-spacing:0.239837pt;}
.ls1f{letter-spacing:0.247802pt;}
.lsf{letter-spacing:0.249606pt;}
.ls4{letter-spacing:1.131200pt;}
.ls1a{letter-spacing:1.563200pt;}
.ls2d{letter-spacing:2.238933pt;}
.ls5{letter-spacing:2.349333pt;}
.ls2{letter-spacing:3.149333pt;}
.ls11{letter-spacing:3.267733pt;}
.ls31{letter-spacing:3.312000pt;}
.ls23{letter-spacing:3.849067pt;}
.ls2c{letter-spacing:9.734933pt;}
.ls7{letter-spacing:15.781867pt;}
.ws1{word-spacing:-14.528000pt;}
.ws0{word-spacing:-14.448000pt;}
.wsfd{word-spacing:-12.842667pt;}
.wsfc{word-spacing:-12.416000pt;}
.ws9b{word-spacing:-10.649873pt;}
.wscc{word-spacing:-10.490268pt;}
.ws9a{word-spacing:-10.483469pt;}
.ws99{word-spacing:-10.358666pt;}
.ws96{word-spacing:-10.233037pt;}
.ws9c{word-spacing:-10.150660pt;}
.ws98{word-spacing:-10.109059pt;}
.ws95{word-spacing:-9.753363pt;}
.ws2{word-spacing:-9.685333pt;}
.wsbb{word-spacing:-9.141697pt;}
.wsde{word-spacing:-7.952506pt;}
.wsd9{word-spacing:-7.917473pt;}
.wsdb{word-spacing:-7.812374pt;}
.wsab{word-spacing:-7.805377pt;}
.wsdd{word-spacing:-7.777341pt;}
.wsda{word-spacing:-7.742308pt;}
.wsaf{word-spacing:-7.736303pt;}
.wsb0{word-spacing:-7.701766pt;}
.wsad{word-spacing:-7.667229pt;}
.wsbc{word-spacing:-7.349882pt;}
.wsdf{word-spacing:-6.576000pt;}
.wse2{word-spacing:-5.520000pt;}
.wse5{word-spacing:-4.464000pt;}
.wseb{word-spacing:-4.176000pt;}
.ws10d{word-spacing:-4.096000pt;}
.wsc0{word-spacing:-4.080000pt;}
.wsb3{word-spacing:-3.984000pt;}
.ws8e{word-spacing:-3.696000pt;}
.ws90{word-spacing:-3.264000pt;}
.ws12{word-spacing:-3.120000pt;}
.wse3{word-spacing:-3.024000pt;}
.wsfb{word-spacing:-2.976000pt;}
.ws48{word-spacing:-2.880000pt;}
.ws108{word-spacing:-2.858667pt;}
.ws119{word-spacing:-2.730667pt;}
.ws33{word-spacing:-2.688000pt;}
.wse{word-spacing:-2.640000pt;}
.ws45{word-spacing:-2.544000pt;}
.wsfe{word-spacing:-2.496000pt;}
.ws5e{word-spacing:-2.400000pt;}
.wsa1{word-spacing:-2.304000pt;}
.wsb6{word-spacing:-2.256000pt;}
.ws25{word-spacing:-2.160000pt;}
.ws61{word-spacing:-2.112000pt;}
.wsef{word-spacing:-2.064000pt;}
.ws11d{word-spacing:-2.048000pt;}
.ws2d{word-spacing:-1.968000pt;}
.ws60{word-spacing:-1.872000pt;}
.ws9e{word-spacing:-1.824000pt;}
.wsb4{word-spacing:-1.776000pt;}
.ws7b{word-spacing:-1.728000pt;}
.ws11b{word-spacing:-1.621333pt;}
.ws3d{word-spacing:-1.584000pt;}
.ws8d{word-spacing:-1.488000pt;}
.ws83{word-spacing:-1.440000pt;}
.ws13{word-spacing:-1.392000pt;}
.ws76{word-spacing:-1.296000pt;}
.wsc4{word-spacing:-1.248000pt;}
.ws14{word-spacing:-1.200000pt;}
.ws11c{word-spacing:-1.194667pt;}
.wsd5{word-spacing:-1.152000pt;}
.ws54{word-spacing:-1.104000pt;}
.ws22{word-spacing:-1.008000pt;}
.ws11f{word-spacing:-0.981333pt;}
.ws30{word-spacing:-0.960000pt;}
.ws123{word-spacing:-0.938667pt;}
.wsc1{word-spacing:-0.912000pt;}
.ws7a{word-spacing:-0.864000pt;}
.ws77{word-spacing:-0.816000pt;}
.ws114{word-spacing:-0.768000pt;}
.ws111{word-spacing:-0.736000pt;}
.ws5f{word-spacing:-0.720000pt;}
.ws110{word-spacing:-0.709333pt;}
.ws113{word-spacing:-0.704000pt;}
.ws112{word-spacing:-0.688000pt;}
.ws3b{word-spacing:-0.672000pt;}
.wsd6{word-spacing:-0.619504pt;}
.wsa4{word-spacing:-0.599592pt;}
.wse7{word-spacing:-0.581552pt;}
.ws9f{word-spacing:-0.576000pt;}
.wsc8{word-spacing:-0.539864pt;}
.ws20{word-spacing:-0.528000pt;}
.ws86{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.432000pt;}
.wsc{word-spacing:-0.336000pt;}
.ws49{word-spacing:-0.240000pt;}
.wsa6{word-spacing:-0.239837pt;}
.ws93{word-spacing:-0.199864pt;}
.wsd2{word-spacing:-0.192000pt;}
.ws43{word-spacing:-0.144000pt;}
.wse9{word-spacing:-0.116310pt;}
.wsb7{word-spacing:-0.114662pt;}
.wsca{word-spacing:-0.107973pt;}
.wsf{word-spacing:-0.096000pt;}
.ws78{word-spacing:-0.048000pt;}
.ws106{word-spacing:-0.010667pt;}
.ws3{word-spacing:0.000000pt;}
.wscb{word-spacing:0.035991pt;}
.wsa5{word-spacing:0.039973pt;}
.ws4b{word-spacing:0.048000pt;}
.ws1a{word-spacing:0.096000pt;}
.wsc9{word-spacing:0.107973pt;}
.wse8{word-spacing:0.116310pt;}
.ws115{word-spacing:0.128000pt;}
.ws5c{word-spacing:0.144000pt;}
.wsd7{word-spacing:0.165201pt;}
.wsb9{word-spacing:0.172685pt;}
.wsba{word-spacing:0.207222pt;}
.wsa2{word-spacing:0.240000pt;}
.wsb8{word-spacing:0.276297pt;}
.wsea{word-spacing:0.280265pt;}
.ws10{word-spacing:0.336000pt;}
.ws63{word-spacing:0.384000pt;}
.ws23{word-spacing:0.432000pt;}
.ws10a{word-spacing:0.474667pt;}
.ws8b{word-spacing:0.480000pt;}
.wsbf{word-spacing:0.528000pt;}
.ws24{word-spacing:0.576000pt;}
.ws7c{word-spacing:0.624000pt;}
.ws31{word-spacing:0.720000pt;}
.wsb1{word-spacing:0.864000pt;}
.ws7f{word-spacing:0.912000pt;}
.wsf1{word-spacing:0.960000pt;}
.ws7d{word-spacing:1.008000pt;}
.wsb{word-spacing:1.056000pt;}
.ws85{word-spacing:1.104000pt;}
.wsa8{word-spacing:1.119238pt;}
.wse1{word-spacing:1.296000pt;}
.wsa7{word-spacing:1.319102pt;}
.wse6{word-spacing:1.440000pt;}
.ws8c{word-spacing:1.536000pt;}
.ws32{word-spacing:1.584000pt;}
.ws88{word-spacing:1.680000pt;}
.ws117{word-spacing:1.706667pt;}
.wsb5{word-spacing:1.728000pt;}
.ws79{word-spacing:1.776000pt;}
.ws1c{word-spacing:1.920000pt;}
.wsc7{word-spacing:2.016000pt;}
.ws21{word-spacing:2.064000pt;}
.wsf8{word-spacing:2.112000pt;}
.ws42{word-spacing:2.208000pt;}
.ws2e{word-spacing:2.256000pt;}
.ws81{word-spacing:2.304000pt;}
.ws1b{word-spacing:2.352000pt;}
.wsf2{word-spacing:2.448000pt;}
.ws122{word-spacing:2.517333pt;}
.ws58{word-spacing:2.544000pt;}
.ws55{word-spacing:2.592000pt;}
.ws62{word-spacing:2.640000pt;}
.ws8a{word-spacing:2.736000pt;}
.ws74{word-spacing:2.784000pt;}
.ws39{word-spacing:2.832000pt;}
.wsd4{word-spacing:2.880000pt;}
.wsa0{word-spacing:2.928000pt;}
.wsd0{word-spacing:2.976000pt;}
.ws57{word-spacing:3.024000pt;}
.ws4a{word-spacing:3.072000pt;}
.ws116{word-spacing:3.114667pt;}
.ws56{word-spacing:3.120000pt;}
.wsf5{word-spacing:3.168000pt;}
.ws41{word-spacing:3.216000pt;}
.ws7e{word-spacing:3.264000pt;}
.ws46{word-spacing:3.408000pt;}
.ws11{word-spacing:3.504000pt;}
.ws4d{word-spacing:3.552000pt;}
.wsfa{word-spacing:3.600000pt;}
.ws121{word-spacing:3.626667pt;}
.ws28{word-spacing:3.648000pt;}
.ws70{word-spacing:3.696000pt;}
.ws3f{word-spacing:3.744000pt;}
.wsd3{word-spacing:3.792000pt;}
.ws26{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.888000pt;}
.ws120{word-spacing:3.968000pt;}
.ws5a{word-spacing:3.984000pt;}
.ws3c{word-spacing:4.032000pt;}
.ws4e{word-spacing:4.080000pt;}
.ws109{word-spacing:4.224000pt;}
.ws8f{word-spacing:4.416000pt;}
.ws1e{word-spacing:4.464000pt;}
.ws38{word-spacing:4.560000pt;}
.ws1d{word-spacing:4.656000pt;}
.ws50{word-spacing:4.896000pt;}
.ws104{word-spacing:4.965333pt;}
.ws102{word-spacing:4.992000pt;}
.ws101{word-spacing:5.018667pt;}
.ws103{word-spacing:5.024000pt;}
.ws105{word-spacing:5.050667pt;}
.ws66{word-spacing:5.136000pt;}
.ws37{word-spacing:5.184000pt;}
.ws6{word-spacing:5.232000pt;}
.ws65{word-spacing:5.328000pt;}
.ws126{word-spacing:5.333333pt;}
.wsbe{word-spacing:5.424000pt;}
.ws80{word-spacing:5.664000pt;}
.ws27{word-spacing:5.712000pt;}
.ws67{word-spacing:5.760000pt;}
.ws11a{word-spacing:5.802667pt;}
.ws6f{word-spacing:5.808000pt;}
.ws73{word-spacing:5.904000pt;}
.ws11e{word-spacing:5.930667pt;}
.wse0{word-spacing:6.000000pt;}
.wsee{word-spacing:6.048000pt;}
.ws2a{word-spacing:6.096000pt;}
.ws4{word-spacing:6.144000pt;}
.ws29{word-spacing:6.384000pt;}
.wsd1{word-spacing:6.432000pt;}
.ws40{word-spacing:6.480000pt;}
.ws6c{word-spacing:6.528000pt;}
.ws19{word-spacing:6.624000pt;}
.wsf4{word-spacing:6.672000pt;}
.ws4c{word-spacing:6.768000pt;}
.wse4{word-spacing:6.960000pt;}
.ws9d{word-spacing:7.008000pt;}
.ws107{word-spacing:7.040000pt;}
.wsb2{word-spacing:7.152000pt;}
.ws59{word-spacing:7.248000pt;}
.wsc3{word-spacing:7.296000pt;}
.ws82{word-spacing:7.392000pt;}
.ws3a{word-spacing:7.440000pt;}
.ws53{word-spacing:7.488000pt;}
.ws36{word-spacing:7.536000pt;}
.ws87{word-spacing:7.632000pt;}
.wsa{word-spacing:7.680000pt;}
.ws100{word-spacing:7.765333pt;}
.ws8{word-spacing:7.776000pt;}
.wsff{word-spacing:7.797333pt;}
.ws44{word-spacing:7.824000pt;}
.ws89{word-spacing:7.968000pt;}
.ws34{word-spacing:8.016000pt;}
.ws10b{word-spacing:8.106667pt;}
.ws84{word-spacing:8.160000pt;}
.ws52{word-spacing:8.256000pt;}
.wsf0{word-spacing:8.400000pt;}
.wsc2{word-spacing:8.448000pt;}
.ws16{word-spacing:8.592000pt;}
.ws3e{word-spacing:8.784000pt;}
.ws118{word-spacing:8.789333pt;}
.ws10f{word-spacing:9.002667pt;}
.ws10e{word-spacing:9.088000pt;}
.ws91{word-spacing:9.120000pt;}
.wsf7{word-spacing:9.216000pt;}
.ws64{word-spacing:9.552000pt;}
.wsed{word-spacing:9.744000pt;}
.ws68{word-spacing:9.840000pt;}
.ws5b{word-spacing:9.936000pt;}
.ws92{word-spacing:10.176000pt;}
.ws69{word-spacing:10.272000pt;}
.ws6b{word-spacing:10.464000pt;}
.ws9{word-spacing:10.656000pt;}
.ws10c{word-spacing:10.709333pt;}
.ws5{word-spacing:10.752000pt;}
.wsf9{word-spacing:10.848000pt;}
.ws4f{word-spacing:10.992000pt;}
.ws6a{word-spacing:11.040000pt;}
.ws47{word-spacing:11.136000pt;}
.ws97{word-spacing:11.324294pt;}
.ws124{word-spacing:11.648000pt;}
.ws72{word-spacing:12.096000pt;}
.wsf3{word-spacing:12.144000pt;}
.ws6d{word-spacing:12.624000pt;}
.ws6e{word-spacing:12.720000pt;}
.ws75{word-spacing:12.768000pt;}
.wsec{word-spacing:12.864000pt;}
.wsce{word-spacing:13.008000pt;}
.ws71{word-spacing:13.392000pt;}
.wsd{word-spacing:13.488000pt;}
.ws35{word-spacing:13.680000pt;}
.ws17{word-spacing:13.776000pt;}
.ws125{word-spacing:13.866667pt;}
.ws18{word-spacing:14.208000pt;}
.ws51{word-spacing:14.592000pt;}
.ws2b{word-spacing:14.832000pt;}
.wsf6{word-spacing:15.456000pt;}
.wscf{word-spacing:15.552000pt;}
.ws1f{word-spacing:15.648000pt;}
.wsa3{word-spacing:15.792000pt;}
.wsc5{word-spacing:15.888000pt;}
.ws5d{word-spacing:19.200000pt;}
.ws2c{word-spacing:19.440000pt;}
.wsc6{word-spacing:20.448000pt;}
.ws7{word-spacing:21.600000pt;}
.wsdc{word-spacing:36.732170pt;}
.wsae{word-spacing:76.534140pt;}
.wsbd{word-spacing:115.214272pt;}
.ws94{word-spacing:120.677883pt;}
.wsa9{word-spacing:128.325925pt;}
.wsaa{word-spacing:128.754185pt;}
.wsac{word-spacing:132.922808pt;}
.wscd{word-spacing:137.921553pt;}
.wsd8{word-spacing:181.541351pt;}
._b{margin-left:-17.120000pt;}
._c{margin-left:-12.677333pt;}
._1a{margin-left:-10.778667pt;}
._a{margin-left:-8.128000pt;}
._8{margin-left:-6.267733pt;}
._13{margin-left:-4.843200pt;}
._3{margin-left:-3.825600pt;}
._7{margin-left:-2.752000pt;}
._e{margin-left:-1.836800pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.061333pt;}
._6{width:2.092267pt;}
._14{width:3.012267pt;}
._9{width:3.912000pt;}
._2{width:5.308800pt;}
._5{width:6.201600pt;}
._4{width:7.113600pt;}
._f{width:8.323200pt;}
._18{width:10.109333pt;}
._16{width:11.284800pt;}
._d{width:12.619200pt;}
._1b{width:14.634667pt;}
._11{width:15.859200pt;}
._10{width:19.406400pt;}
._15{width:21.273600pt;}
._12{width:24.321395pt;}
._19{width:25.358605pt;}
._17{width:350.432763pt;}
.fs7{font-size:27.984000pt;}
.fs10{font-size:32.521600pt;}
.fsd{font-size:34.537067pt;}
.fs16{font-size:35.033067pt;}
.fse{font-size:35.990933pt;}
.fs13{font-size:37.319467pt;}
.fsb{font-size:38.220800pt;}
.fs6{font-size:38.335467pt;}
.fs14{font-size:38.770133pt;}
.fs8{font-size:39.972800pt;}
.fs3{font-size:40.000000pt;}
.fs11{font-size:41.300267pt;}
.fsa{font-size:41.601067pt;}
.fs5{font-size:42.666667pt;}
.fsf{font-size:43.362133pt;}
.fs17{font-size:45.333333pt;}
.fsc{font-size:46.049067pt;}
.fs15{font-size:46.710933pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:48.160000pt;}
.fs12{font-size:49.759467pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.y122{bottom:-32.052933pt;}
.y1c0{bottom:-26.686267pt;}
.y1e7{bottom:-24.683733pt;}
.y164{bottom:-20.545333pt;}
.y121{bottom:-18.451036pt;}
.y1bf{bottom:-12.638003pt;}
.y1e6{bottom:-11.490181pt;}
.y190{bottom:-11.453907pt;}
.y191{bottom:-11.441867pt;}
.y163{bottom:-7.542729pt;}
.y120{bottom:-6.888903pt;}
.y18f{bottom:-2.996037pt;}
.y1be{bottom:-2.932440pt;}
.y1e5{bottom:-2.379200pt;}
.y0{bottom:0.000000pt;}
.y162{bottom:1.439159pt;}
.y2c{bottom:2.300000pt;}
.y11f{bottom:2.504705pt;}
.y13e{bottom:6.511733pt;}
.y12b{bottom:11.959879pt;}
.y2a{bottom:12.572000pt;}
.y13c{bottom:17.668800pt;}
.y141{bottom:18.772400pt;}
.y142{bottom:21.561600pt;}
.y125{bottom:23.731869pt;}
.y143{bottom:23.779067pt;}
.y13d{bottom:24.902800pt;}
.y13f{bottom:25.464667pt;}
.y140{bottom:30.725467pt;}
.y139{bottom:40.738800pt;}
.y53{bottom:42.205733pt;}
.y144{bottom:42.424400pt;}
.y5{bottom:43.744267pt;}
.y124{bottom:45.866807pt;}
.y126{bottom:46.256541pt;}
.y13a{bottom:49.103108pt;}
.y127{bottom:68.781214pt;}
.y197{bottom:69.910343pt;}
.y131{bottom:72.049461pt;}
.y52{bottom:74.330667pt;}
.y261{bottom:74.331467pt;}
.y1a2{bottom:75.466133pt;}
.y28a{bottom:75.590533pt;}
.y20{bottom:75.870133pt;}
.y198{bottom:80.113995pt;}
.y132{bottom:81.283178pt;}
.y196{bottom:81.959596pt;}
.y1cd{bottom:82.708400pt;}
.y260{bottom:86.544800pt;}
.y18b{bottom:86.926667pt;}
.y289{bottom:89.190533pt;}
.y1f{bottom:90.141333pt;}
.y199{bottom:90.317647pt;}
.y133{bottom:90.516895pt;}
.y12f{bottom:91.026548pt;}
.y128{bottom:91.305887pt;}
.y15d{bottom:92.408800pt;}
.y104{bottom:92.502133pt;}
.y75{bottom:92.543600pt;}
.y21c{bottom:92.549733pt;}
.y11b{bottom:92.597467pt;}
.y97{bottom:92.759600pt;}
.yb7{bottom:92.856933pt;}
.y51{bottom:93.216533pt;}
.y1e3{bottom:93.430667pt;}
.ye6{bottom:94.723467pt;}
.y1ba{bottom:97.322667pt;}
.y134{bottom:99.750612pt;}
.y19a{bottom:100.521299pt;}
.y23a{bottom:100.745867pt;}
.y130{bottom:102.109007pt;}
.y25f{bottom:102.539467pt;}
.y1e{bottom:104.412400pt;}
.y135{bottom:108.984329pt;}
.y15c{bottom:109.553733pt;}
.y103{bottom:110.673467pt;}
.y19b{bottom:110.724951pt;}
.y74{bottom:110.756533pt;}
.y21b{bottom:110.768800pt;}
.y11a{bottom:110.864400pt;}
.y96{bottom:111.188400pt;}
.yb6{bottom:111.383200pt;}
.y50{bottom:112.102267pt;}
.y195{bottom:112.472987pt;}
.y1e2{bottom:112.530533pt;}
.y129{bottom:113.830560pt;}
.y25e{bottom:114.752800pt;}
.ye5{bottom:115.116267pt;}
.y136{bottom:118.218045pt;}
.y1d{bottom:118.683600pt;}
.y239{bottom:119.601867pt;}
.y19c{bottom:120.928603pt;}
.y123{bottom:121.315467pt;}
.y12d{bottom:126.122667pt;}
.y137{bottom:127.451762pt;}
.y192{bottom:127.774400pt;}
.y21a{bottom:128.987867pt;}
.y95{bottom:129.617333pt;}
.yb5{bottom:129.909467pt;}
.y25d{bottom:130.742133pt;}
.y4f{bottom:130.988133pt;}
.y19d{bottom:131.132255pt;}
.y1e1{bottom:131.630400pt;}
.y1c{bottom:132.954667pt;}
.y15b{bottom:134.257600pt;}
.ye4{bottom:135.509067pt;}
.y161{bottom:135.899934pt;}
.y12a{bottom:136.355233pt;}
.y102{bottom:136.404000pt;}
.y73{bottom:136.528400pt;}
.y138{bottom:136.685479pt;}
.y119{bottom:136.690133pt;}
.y12e{bottom:137.205125pt;}
.y238{bottom:138.458000pt;}
.y19e{bottom:141.335907pt;}
.y25c{bottom:142.960800pt;}
.y160{bottom:146.955300pt;}
.y219{bottom:147.206933pt;}
.y1b{bottom:147.225733pt;}
.yb4{bottom:148.435733pt;}
.y4e{bottom:149.873867pt;}
.y1e0{bottom:150.730400pt;}
.y15a{bottom:151.402400pt;}
.y19f{bottom:151.539559pt;}
.y12c{bottom:154.123142pt;}
.y145{bottom:154.466133pt;}
.y72{bottom:154.741333pt;}
.y118{bottom:154.957067pt;}
.y94{bottom:155.605200pt;}
.ye3{bottom:155.901867pt;}
.y15f{bottom:158.010667pt;}
.y194{bottom:158.491051pt;}
.y25b{bottom:158.950133pt;}
.y1a{bottom:161.496933pt;}
.y1a0{bottom:161.743211pt;}
.y237{bottom:164.873067pt;}
.y193{bottom:166.962928pt;}
.y159{bottom:168.547200pt;}
.y4d{bottom:168.759733pt;}
.y1df{bottom:169.830267pt;}
.y25a{bottom:171.168800pt;}
.y1a1{bottom:171.946863pt;}
.y71{bottom:172.954267pt;}
.y218{bottom:172.984933pt;}
.y117{bottom:173.223867pt;}
.y11e{bottom:173.228533pt;}
.yb3{bottom:174.520933pt;}
.y1c6{bottom:175.246401pt;}
.y19{bottom:175.768000pt;}
.y18e{bottom:183.248045pt;}
.y236{bottom:183.729200pt;}
.ye2{bottom:183.853733pt;}
.y158{bottom:185.692000pt;}
.y1c5{bottom:186.498221pt;}
.y259{bottom:187.164800pt;}
.y101{bottom:187.864933pt;}
.y1de{bottom:188.930133pt;}
.y18{bottom:190.039200pt;}
.y70{bottom:191.167200pt;}
.y116{bottom:191.490667pt;}
.y1c7{bottom:191.816245pt;}
.yb2{bottom:193.047200pt;}
.y1bd{bottom:193.615529pt;}
.y18d{bottom:193.658423pt;}
.y4c{bottom:195.204533pt;}
.y93{bottom:196.711333pt;}
.y217{bottom:198.763067pt;}
.y258{bottom:199.378133pt;}
.y157{bottom:202.836800pt;}
.y18c{bottom:204.068800pt;}
.ye1{bottom:204.246533pt;}
.y1bc{bottom:205.561631pt;}
.y100{bottom:206.036267pt;}
.y1dd{bottom:208.030133pt;}
.y1c8{bottom:208.386088pt;}
.y6f{bottom:209.380000pt;}
.y235{bottom:210.144267pt;}
.yb1{bottom:211.573467pt;}
.y257{bottom:211.591467pt;}
.y17{bottom:211.869333pt;}
.y4b{bottom:214.090267pt;}
.y92{bottom:215.140133pt;}
.y216{bottom:216.982133pt;}
.y115{bottom:217.316533pt;}
.y1bb{bottom:217.507733pt;}
.y288{bottom:217.962133pt;}
.y156{bottom:219.981600pt;}
.y1c4{bottom:220.972078pt;}
.yff{bottom:224.207733pt;}
.ye0{bottom:224.639333pt;}
.y1c9{bottom:224.955931pt;}
.y1dc{bottom:227.130000pt;}
.y256{bottom:227.580800pt;}
.y6e{bottom:227.592933pt;}
.y234{bottom:229.000400pt;}
.y287{bottom:229.962133pt;}
.yb0{bottom:230.099733pt;}
.y4a{bottom:232.976133pt;}
.y91{bottom:233.569067pt;}
.y1c1{bottom:234.817600pt;}
.y215{bottom:235.201200pt;}
.y155{bottom:237.126400pt;}
.y255{bottom:239.796800pt;}
.y1ca{bottom:241.525774pt;}
.y286{bottom:241.962133pt;}
.yfe{bottom:242.379067pt;}
.ydf{bottom:245.032133pt;}
.y6d{bottom:245.805867pt;}
.y1db{bottom:246.229867pt;}
.yaf{bottom:248.626000pt;}
.y11c{bottom:251.843733pt;}
.y49{bottom:251.861867pt;}
.y90{bottom:251.997867pt;}
.y254{bottom:252.012800pt;}
.y233{bottom:255.415467pt;}
.y16{bottom:255.529733pt;}
.y1c2{bottom:255.529904pt;}
.y285{bottom:257.741733pt;}
.y1cb{bottom:258.095617pt;}
.yfd{bottom:260.550533pt;}
.y214{bottom:260.979333pt;}
.y154{bottom:261.830400pt;}
.y11d{bottom:263.621333pt;}
.y6c{bottom:264.018800pt;}
.y253{bottom:264.229333pt;}
.yae{bottom:267.152267pt;}
.y13b{bottom:267.206667pt;}
.y1c3{bottom:267.957286pt;}
.y284{bottom:269.741733pt;}
.y15{bottom:269.800800pt;}
.y8f{bottom:270.426800pt;}
.y48{bottom:270.747733pt;}
.yc7{bottom:271.577867pt;}
.y1da{bottom:272.888933pt;}
.yde{bottom:272.984000pt;}
.y232{bottom:274.271600pt;}
.y1cc{bottom:274.665461pt;}
.y153{bottom:278.975200pt;}
.y252{bottom:280.218667pt;}
.y18a{bottom:280.937600pt;}
.y283{bottom:281.741733pt;}
.y6b{bottom:282.231600pt;}
.yad{bottom:285.678533pt;}
.yfc{bottom:286.280933pt;}
.y213{bottom:286.757467pt;}
.y8e{bottom:288.855733pt;}
.y47{bottom:289.633467pt;}
.yc6{bottom:289.790667pt;}
.y1d9{bottom:291.988800pt;}
.y251{bottom:292.437333pt;}
.y231{bottom:293.127600pt;}
.ydd{bottom:293.376800pt;}
.y282{bottom:297.521200pt;}
.y189{bottom:299.204533pt;}
.y6a{bottom:300.444533pt;}
.y152{bottom:303.679067pt;}
.yac{bottom:304.204800pt;}
.yfb{bottom:304.452400pt;}
.y1b9{bottom:305.196800pt;}
.y8d{bottom:307.284533pt;}
.yc5{bottom:308.003600pt;}
.y250{bottom:308.426667pt;}
.y46{bottom:308.519333pt;}
.y281{bottom:309.521200pt;}
.y212{bottom:312.535467pt;}
.y14{bottom:313.461200pt;}
.ydc{bottom:313.769600pt;}
.y188{bottom:317.471333pt;}
.y69{bottom:318.657467pt;}
.y230{bottom:319.542667pt;}
.y24f{bottom:320.637333pt;}
.y151{bottom:320.823867pt;}
.yfa{bottom:322.623733pt;}
.y1b8{bottom:323.860400pt;}
.y280{bottom:325.300800pt;}
.y8c{bottom:325.713467pt;}
.y45{bottom:327.405067pt;}
.y13{bottom:327.732267pt;}
.yab{bottom:330.290000pt;}
.y211{bottom:330.754533pt;}
.yc4{bottom:333.775600pt;}
.ydb{bottom:334.162400pt;}
.y1fa{bottom:334.992133pt;}
.y27f{bottom:337.300800pt;}
.y150{bottom:337.968667pt;}
.y22f{bottom:338.398800pt;}
.yf9{bottom:340.795200pt;}
.y1b7{bottom:342.524000pt;}
.y187{bottom:343.297200pt;}
.y8b{bottom:344.142267pt;}
.y68{bottom:344.429467pt;}
.y1e4{bottom:348.186667pt;}
.y210{bottom:348.306933pt;}
.yaa{bottom:348.816267pt;}
.y12{bottom:349.562400pt;}
.yc3{bottom:351.988533pt;}
.y24e{bottom:352.626667pt;}
.y27e{bottom:353.080267pt;}
.y44{bottom:353.850000pt;}
.yda{bottom:354.555200pt;}
.y14f{bottom:355.113467pt;}
.y1f9{bottom:355.244404pt;}
.yf8{bottom:358.966533pt;}
.y1b6{bottom:361.187600pt;}
.y186{bottom:361.564000pt;}
.y8a{bottom:362.571200pt;}
.y67{bottom:362.642400pt;}
.y11{bottom:363.833600pt;}
.y22e{bottom:364.813867pt;}
.y20f{bottom:365.859333pt;}
.y1f8{bottom:365.938248pt;}
.y27d{bottom:368.859867pt;}
.yc2{bottom:370.201333pt;}
.ya9{bottom:374.901600pt;}
.yd9{bottom:374.948000pt;}
.yf7{bottom:377.138000pt;}
.y1ed{bottom:377.350269pt;}
.y10{bottom:378.104667pt;}
.y14e{bottom:379.817333pt;}
.y185{bottom:379.830800pt;}
.y66{bottom:380.855200pt;}
.y27c{bottom:380.859867pt;}
.y20e{bottom:383.411733pt;}
.y22d{bottom:383.670000pt;}
.y1b5{bottom:387.410267pt;}
.y24d{bottom:388.376000pt;}
.yc1{bottom:388.414267pt;}
.y89{bottom:388.559067pt;}
.y1ec{bottom:389.226479pt;}
.y1ee{bottom:390.540219pt;}
.yf{bottom:392.375867pt;}
.y27b{bottom:392.859867pt;}
.ya8{bottom:393.427867pt;}
.yf6{bottom:395.309333pt;}
.yd8{bottom:395.340800pt;}
.y14d{bottom:396.962133pt;}
.y65{bottom:399.068133pt;}
.y43{bottom:399.180533pt;}
.y20d{bottom:400.964133pt;}
.y22c{bottom:402.526133pt;}
.y1ef{bottom:403.730169pt;}
.y1eb{bottom:403.738927pt;}
.y27a{bottom:404.859867pt;}
.y184{bottom:405.656667pt;}
.y1b4{bottom:406.073867pt;}
.yc0{bottom:406.627200pt;}
.ye{bottom:406.646933pt;}
.y88{bottom:406.988000pt;}
.y1e8{bottom:411.656400pt;}
.ya7{bottom:411.954133pt;}
.yf5{bottom:413.480800pt;}
.y42{bottom:414.066400pt;}
.y14c{bottom:414.107067pt;}
.y24c{bottom:414.151467pt;}
.y279{bottom:416.859867pt;}
.y1f0{bottom:416.920118pt;}
.y64{bottom:417.281067pt;}
.y20c{bottom:418.516533pt;}
.yd{bottom:420.918000pt;}
.y22b{bottom:421.382133pt;}
.yd7{bottom:423.292667pt;}
.y183{bottom:423.923467pt;}
.y1b3{bottom:424.737467pt;}
.ybf{bottom:424.840133pt;}
.y87{bottom:425.416800pt;}
.y1ea{bottom:427.482588pt;}
.y278{bottom:428.859867pt;}
.y1f1{bottom:430.110068pt;}
.y14b{bottom:431.251867pt;}
.y24b{bottom:432.367467pt;}
.yc{bottom:435.189200pt;}
.y63{bottom:435.494000pt;}
.y41{bottom:436.511200pt;}
.ya6{bottom:438.039333pt;}
.yf4{bottom:439.211200pt;}
.y22a{bottom:440.238133pt;}
.y182{bottom:442.190400pt;}
.ybe{bottom:443.052933pt;}
.y1f2{bottom:443.300017pt;}
.y1b2{bottom:443.401067pt;}
.y20b{bottom:443.627867pt;}
.yd6{bottom:443.685467pt;}
.y86{bottom:443.845733pt;}
.y277{bottom:444.639333pt;}
.y14a{bottom:448.396667pt;}
.yb{bottom:449.460267pt;}
.y114{bottom:449.749333pt;}
.y24a{bottom:450.583467pt;}
.y40{bottom:451.397067pt;}
.y62{bottom:453.706933pt;}
.y1f3{bottom:456.489967pt;}
.ya5{bottom:456.565733pt;}
.y276{bottom:456.639333pt;}
.yf3{bottom:457.382667pt;}
.y229{bottom:459.094267pt;}
.y20a{bottom:461.180400pt;}
.ybd{bottom:461.265867pt;}
.y1b1{bottom:462.064667pt;}
.y85{bottom:462.274533pt;}
.ya{bottom:463.731467pt;}
.yd5{bottom:464.078267pt;}
.y3f{bottom:466.282800pt;}
.y113{bottom:468.016133pt;}
.y249{bottom:468.799467pt;}
.y1f4{bottom:469.679917pt;}
.y149{bottom:473.100533pt;}
.ya4{bottom:475.091867pt;}
.y9{bottom:478.002533pt;}
.y209{bottom:478.732667pt;}
.y61{bottom:479.478800pt;}
.y84{bottom:480.703467pt;}
.y3e{bottom:481.168667pt;}
.y1f5{bottom:482.869866pt;}
.yf2{bottom:483.113067pt;}
.yd4{bottom:484.471067pt;}
.y228{bottom:485.509467pt;}
.y112{bottom:486.283067pt;}
.y248{bottom:487.015467pt;}
.y275{bottom:488.198400pt;}
.y1b0{bottom:488.287333pt;}
.y8{bottom:492.273600pt;}
.ya3{bottom:493.618133pt;}
.y3d{bottom:496.054400pt;}
.y1f6{bottom:496.059816pt;}
.y208{bottom:496.285067pt;}
.y60{bottom:497.691733pt;}
.y83{bottom:499.132267pt;}
.y1e9{bottom:500.044827pt;}
.yf1{bottom:501.284533pt;}
.y227{bottom:504.365467pt;}
.y181{bottom:504.549867pt;}
.yd3{bottom:504.863867pt;}
.y247{bottom:505.231467pt;}
.y1af{bottom:506.950800pt;}
.y1f7{bottom:509.249765pt;}
.y3c{bottom:510.940133pt;}
.y111{bottom:512.108933pt;}
.y207{bottom:513.837467pt;}
.y7{bottom:514.103867pt;}
.y5f{bottom:515.904667pt;}
.ya2{bottom:519.703467pt;}
.y180{bottom:522.816667pt;}
.y274{bottom:523.222000pt;}
.y148{bottom:523.441600pt;}
.y246{bottom:523.447467pt;}
.y82{bottom:525.120267pt;}
.yd2{bottom:525.256667pt;}
.y1ae{bottom:525.614400pt;}
.y3b{bottom:525.826000pt;}
.yf0{bottom:527.014933pt;}
.y110{bottom:530.375733pt;}
.y226{bottom:530.780533pt;}
.y206{bottom:531.389867pt;}
.y1d8{bottom:531.919467pt;}
.y5e{bottom:534.117467pt;}
.y273{bottom:535.222000pt;}
.y6{bottom:535.934000pt;}
.ya1{bottom:538.229733pt;}
.y3a{bottom:540.711733pt;}
.y17f{bottom:541.083467pt;}
.y147{bottom:541.519733pt;}
.y81{bottom:543.549200pt;}
.yd1{bottom:545.649467pt;}
.y245{bottom:549.223467pt;}
.y272{bottom:551.001600pt;}
.y1d7{bottom:551.019333pt;}
.y1ad{bottom:551.837067pt;}
.y5d{bottom:552.330400pt;}
.yef{bottom:552.745467pt;}
.y39{bottom:555.597600pt;}
.y10f{bottom:556.201600pt;}
.y205{bottom:556.501333pt;}
.ya0{bottom:556.756000pt;}
.y225{bottom:557.195733pt;}
.y80{bottom:561.978000pt;}
.y271{bottom:563.001600pt;}
.y17e{bottom:566.909333pt;}
.y244{bottom:567.415600pt;}
.y1d6{bottom:570.119333pt;}
.y38{bottom:570.483333pt;}
.y1ac{bottom:570.500667pt;}
.y5c{bottom:570.543333pt;}
.yee{bottom:570.916800pt;}
.yd0{bottom:573.601333pt;}
.y204{bottom:574.053733pt;}
.y10e{bottom:574.468400pt;}
.y9f{bottom:575.282267pt;}
.y270{bottom:578.781067pt;}
.y7f{bottom:580.406933pt;}
.y224{bottom:583.610800pt;}
.y177{bottom:584.440133pt;}
.y5b{bottom:588.756133pt;}
.yed{bottom:589.088267pt;}
.y1ab{bottom:589.164267pt;}
.y1d5{bottom:589.219200pt;}
.y26f{bottom:590.781067pt;}
.y28{bottom:591.335200pt;}
.y203{bottom:591.606133pt;}
.y10d{bottom:592.735200pt;}
.y37{bottom:592.928267pt;}
.y243{bottom:593.191600pt;}
.y9e{bottom:593.808533pt;}
.ycf{bottom:593.994133pt;}
.ybc{bottom:596.315333pt;}
.y15e{bottom:598.109333pt;}
.y7e{bottom:598.835733pt;}
.y223{bottom:602.466933pt;}
.y26e{bottom:606.560533pt;}
.y5a{bottom:606.969067pt;}
.y1aa{bottom:607.827867pt;}
.y1d4{bottom:608.319067pt;}
.y174{bottom:608.861348pt;}
.y202{bottom:609.158400pt;}
.y27{bottom:610.001867pt;}
.y10c{bottom:611.002000pt;}
.y242{bottom:611.407600pt;}
.y9d{bottom:612.334667pt;}
.yce{bottom:614.386933pt;}
.ybb{bottom:614.528133pt;}
.yec{bottom:614.818667pt;}
.y7d{bottom:617.264667pt;}
.y26d{bottom:618.560533pt;}
.y17d{bottom:618.561067pt;}
.y176{bottom:619.395153pt;}
.y173{bottom:619.403787pt;}
.y222{bottom:621.322933pt;}
.y1a9{bottom:626.491467pt;}
.y201{bottom:626.710800pt;}
.y1d3{bottom:627.419067pt;}
.y26{bottom:628.668533pt;}
.y10b{bottom:629.268933pt;}
.y241{bottom:629.623600pt;}
.y175{bottom:629.937593pt;}
.y172{bottom:629.946227pt;}
.y9c{bottom:630.860933pt;}
.y59{bottom:632.741067pt;}
.y26c{bottom:634.340133pt;}
.ycd{bottom:634.779733pt;}
.y7c{bottom:635.693467pt;}
.y17c{bottom:636.827867pt;}
.y36{bottom:637.817867pt;}
.y169{bottom:641.179408pt;}
.y200{bottom:644.263200pt;}
.y1a8{bottom:645.155067pt;}
.y26b{bottom:646.340133pt;}
.y25{bottom:647.335200pt;}
.y10a{bottom:647.535733pt;}
.y221{bottom:647.738133pt;}
.y240{bottom:647.839600pt;}
.y9b{bottom:649.387200pt;}
.y16a{bottom:650.901592pt;}
.yba{bottom:650.954000pt;}
.y168{bottom:651.946338pt;}
.y35{bottom:652.703733pt;}
.y1d2{bottom:654.078000pt;}
.y7b{bottom:654.122400pt;}
.y17b{bottom:655.094667pt;}
.ycc{bottom:655.172533pt;}
.y16b{bottom:660.623776pt;}
.y1ff{bottom:661.815600pt;}
.y26a{bottom:662.119733pt;}
.y1a7{bottom:663.818667pt;}
.y109{bottom:665.802533pt;}
.y24{bottom:666.001867pt;}
.y23f{bottom:666.055600pt;}
.yeb{bottom:666.279600pt;}
.y9a{bottom:667.913467pt;}
.yb9{bottom:669.166933pt;}
.y16c{bottom:670.345961pt;}
.y7a{bottom:672.551333pt;}
.y1d1{bottom:673.177867pt;}
.y17a{bottom:673.361600pt;}
.y58{bottom:673.631200pt;}
.y269{bottom:674.119733pt;}
.y220{bottom:674.153200pt;}
.ycb{bottom:675.565333pt;}
.y16d{bottom:680.068145pt;}
.y108{bottom:684.069333pt;}
.y23e{bottom:684.271600pt;}
.yea{bottom:684.451067pt;}
.y23{bottom:684.668533pt;}
.y166{bottom:685.982618pt;}
.y268{bottom:686.119600pt;}
.y1fe{bottom:686.927067pt;}
.y16e{bottom:689.790329pt;}
.y1a6{bottom:690.041200pt;}
.y79{bottom:690.980133pt;}
.y179{bottom:691.628400pt;}
.y57{bottom:691.844000pt;}
.y21f{bottom:693.009333pt;}
.y99{bottom:693.998800pt;}
.yb8{bottom:694.938800pt;}
.yca{bottom:695.958133pt;}
.y34{bottom:697.593467pt;}
.y16f{bottom:699.512513pt;}
.y1d0{bottom:699.836800pt;}
.y267{bottom:701.899200pt;}
.y107{bottom:702.336133pt;}
.y23d{bottom:702.487600pt;}
.ye9{bottom:702.622400pt;}
.y22{bottom:703.335200pt;}
.y1fd{bottom:704.479467pt;}
.y165{bottom:708.638933pt;}
.y1a5{bottom:708.704800pt;}
.y170{bottom:709.234698pt;}
.y78{bottom:709.409067pt;}
.y178{bottom:709.895200pt;}
.y56{bottom:710.056933pt;}
.y33{bottom:712.479200pt;}
.y266{bottom:713.899200pt;}
.yc9{bottom:716.350933pt;}
.y167{bottom:716.703338pt;}
.y1cf{bottom:718.936800pt;}
.y171{bottom:718.956882pt;}
.y21e{bottom:719.424533pt;}
.ye8{bottom:720.793733pt;}
.y21{bottom:722.001867pt;}
.y1fc{bottom:722.031867pt;}
.y265{bottom:725.899200pt;}
.y1a4{bottom:727.368533pt;}
.y77{bottom:727.837867pt;}
.y106{bottom:728.162000pt;}
.y23c{bottom:728.263600pt;}
.y55{bottom:728.269867pt;}
.y32{bottom:734.924133pt;}
.y2e{bottom:737.170267pt;}
.y264{bottom:737.899200pt;}
.y21d{bottom:738.280533pt;}
.ye7{bottom:738.965200pt;}
.y1fb{bottom:739.584267pt;}
.yc8{bottom:744.302800pt;}
.y1ce{bottom:745.595733pt;}
.y1a3{bottom:746.032000pt;}
.y98{bottom:746.169333pt;}
.y76{bottom:746.266800pt;}
.y105{bottom:746.428800pt;}
.y23b{bottom:746.479600pt;}
.y54{bottom:746.482800pt;}
.y146{bottom:746.617467pt;}
.y3{bottom:748.086000pt;}
.y31{bottom:749.809867pt;}
.y2d{bottom:749.970267pt;}
.y29{bottom:753.557333pt;}
.y263{bottom:753.678667pt;}
.y2b{bottom:763.829333pt;}
.y30{bottom:764.695600pt;}
.y262{bottom:765.678667pt;}
.y2{bottom:766.752667pt;}
.y1{bottom:785.419333pt;}
.y2f{bottom:817.394400pt;}
.y4{bottom:819.247867pt;}
.h21{height:22.263322pt;}
.h1b{height:23.643051pt;}
.h2a{height:23.982597pt;}
.h1e{height:23.988098pt;}
.h1f{height:25.007372pt;}
.h18{height:25.474312pt;}
.h26{height:25.547799pt;}
.h19{height:26.556737pt;}
.h28{height:26.938428pt;}
.h23{height:27.526789pt;}
.h12{height:27.774070pt;}
.hd{height:28.253239pt;}
.h24{height:28.696426pt;}
.h15{height:28.905429pt;}
.h20{height:29.684429pt;}
.h1a{height:31.523824pt;}
.h29{height:31.976918pt;}
.h13{height:32.968906pt;}
.h2f{height:33.812500pt;}
.h25{height:34.063854pt;}
.hb{height:34.602667pt;}
.h10{height:35.187500pt;}
.h30{height:36.765333pt;}
.h5{height:37.558594pt;}
.h8{height:38.039062pt;}
.h4{height:38.928000pt;}
.h2c{height:39.125000pt;}
.h2e{height:40.062500pt;}
.h2d{height:40.073167pt;}
.h3{height:43.253333pt;}
.h6{height:44.015625pt;}
.hf{height:44.953125pt;}
.h7{height:45.070312pt;}
.h2b{height:45.157779pt;}
.h9{height:45.440000pt;}
.h14{height:49.958974pt;}
.ha{height:51.904000pt;}
.h2{height:56.229333pt;}
.h1c{height:62.531788pt;}
.he{height:62.714667pt;}
.hc{height:81.209333pt;}
.h17{height:139.844000pt;}
.h16{height:167.837333pt;}
.h27{height:172.914667pt;}
.h11{height:179.529333pt;}
.h1d{height:180.473333pt;}
.h22{height:188.977333pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w3{width:49.348000pt;}
.w2{width:68.808800pt;}
.w5{width:203.618667pt;}
.w7{width:408.189333pt;}
.w9{width:411.968000pt;}
.w8{width:433.700000pt;}
.w6{width:439.314667pt;}
.w4{width:457.133333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x49{left:-4.967103pt;}
.x50{left:-2.608214pt;}
.x0{left:0.000000pt;}
.x20{left:5.775348pt;}
.x39{left:9.178564pt;}
.x10{left:12.108800pt;}
.x4e{left:13.987163pt;}
.x2c{left:17.425877pt;}
.x4d{left:18.467624pt;}
.x47{left:29.790069pt;}
.x29{left:37.810400pt;}
.x13{left:48.000000pt;}
.x17{left:49.133867pt;}
.x12{left:51.442800pt;}
.x37{left:53.034667pt;}
.x4b{left:58.562000pt;}
.x16{left:63.118133pt;}
.x2d{left:65.186767pt;}
.x1d{left:67.181333pt;}
.x14{left:68.172800pt;}
.xf{left:69.469867pt;}
.x6{left:70.677200pt;}
.x2e{left:72.584000pt;}
.x2f{left:74.087600pt;}
.x7{left:76.802133pt;}
.x8{left:78.466267pt;}
.x11{left:81.462667pt;}
.x19{left:85.795333pt;}
.x30{left:88.389600pt;}
.xa{left:90.681067pt;}
.x60{left:92.684837pt;}
.x2a{left:95.011867pt;}
.x3d{left:96.077919pt;}
.x5f{left:97.125278pt;}
.x18{left:99.216400pt;}
.x1b{left:100.109733pt;}
.x5e{left:101.565719pt;}
.x31{left:102.691467pt;}
.x3e{left:104.599940pt;}
.x4c{left:109.384737pt;}
.x3c{left:111.015200pt;}
.x2b{left:111.943501pt;}
.x53{left:114.161067pt;}
.x32{left:116.993333pt;}
.x15{left:126.529333pt;}
.x62{left:128.751379pt;}
.x61{left:132.762665pt;}
.x69{left:135.556400pt;}
.x33{left:136.698133pt;}
.x59{left:143.535333pt;}
.x21{left:145.242924pt;}
.x3f{left:147.598588pt;}
.x3b{left:148.588932pt;}
.x4f{left:150.123467pt;}
.x68{left:154.578400pt;}
.x52{left:157.863972pt;}
.x34{left:159.899200pt;}
.x1{left:167.659600pt;}
.x54{left:169.244599pt;}
.x35{left:174.201200pt;}
.x63{left:191.408019pt;}
.x36{left:193.905867pt;}
.x46{left:202.226800pt;}
.x2{left:203.157067pt;}
.x5a{left:204.992091pt;}
.x40{left:210.654637pt;}
.x1c{left:212.092933pt;}
.x38{left:213.057867pt;}
.x1e{left:218.419200pt;}
.x55{left:221.958346pt;}
.x26{left:245.075111pt;}
.x25{left:250.296045pt;}
.x24{left:255.516978pt;}
.x42{left:259.274193pt;}
.x41{left:261.329148pt;}
.x4a{left:263.324400pt;}
.x5b{left:266.448848pt;}
.x3{left:275.938667pt;}
.x56{left:279.402335pt;}
.x27{left:283.514496pt;}
.x22{left:295.360400pt;}
.x4{left:302.799333pt;}
.x43{left:311.571946pt;}
.x28{left:316.452141pt;}
.x64{left:325.278125pt;}
.x5c{left:327.905605pt;}
.x57{left:333.235666pt;}
.xd{left:343.987200pt;}
.xe{left:346.771867pt;}
.x23{left:348.672167pt;}
.xc{left:352.627200pt;}
.x44{left:355.382215pt;}
.x65{left:368.684095pt;}
.x9{left:369.923067pt;}
.xb{left:371.427200pt;}
.x66{left:387.829665pt;}
.x5d{left:391.586962pt;}
.x45{left:409.415456pt;}
.x48{left:410.612885pt;}
.x58{left:412.148933pt;}
.x3a{left:416.019870pt;}
.x67{left:433.793049pt;}
.x51{left:439.005212pt;}
.x1f{left:449.731531pt;}
.x5{left:506.275333pt;}
.x1a{left:507.409200pt;}
}




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