
    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_b7c95737805202e4e0e57b46.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_4a9b2a89f33f54f9e3989e66.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_65222b829222f1732bebdc93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_8f01b84a472dae4cdf7e8f9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_44c4ee83dee0fe891ec7078a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191406;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_c24fa690a1791b3d8e42145e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_53e4a58875b55d81d06d34e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_31660d3836556f3228865fa0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_b22b7dc78f21db20f13976b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_2527d8e3c2c6d66769d78801.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.190918;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_d17382dfaf46c3db25abbb77.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.384000;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_23ed2bba681b9babfd5f7720.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_efb739c1d2e75472c9c2271b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;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_3ede6674534e48ada9b9d187.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.450000;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_e88b97b53afc8a38b817ee1e.woff2')format("woff");}.fff{font-family:fff;line-height:1.199000;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_2a04109d2550042da411aec6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.879000;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_dce3f09531ecb27974d0a4d9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.392000;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_4155f8be9fb9cdfc3f65c3db.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.733000;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_4bbc12aeb3d916b65a8e4a3e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;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_1adaedcade5c294ab057dd6e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.856000;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_9efb21ef73adde6247c9f557.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.733000;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_54d8b784861cd03eb62476fd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.939000;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_245ad2c5fc3f08621ea261a4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.729000;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_ddbf739ba637432d96b473fe.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939000;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_8100523ffdc62ba1e0fe6301.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.939000;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_4a387ed55e45d260f30e533c.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.md{transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.278567,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.278567,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.278567,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.278573,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.278573,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.278573,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.224027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224027,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.224358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224358,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.224363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224363,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,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);}
.mf{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v5{vertical-align:-18.900879px;}
.v4{vertical-align:-17.849991px;}
.v9{vertical-align:-3.601668px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.699707px;}
.v3{vertical-align:18.689927px;}
.v2{vertical-align:21.000000px;}
.v8{vertical-align:22.512000px;}
.v7{vertical-align:45.000000px;}
.ls38{letter-spacing:-5.166000px;}
.ls7b{letter-spacing:-5.124000px;}
.ls6a{letter-spacing:-1.829502px;}
.ls5c{letter-spacing:-1.823623px;}
.ls76{letter-spacing:-1.782888px;}
.ls5f{letter-spacing:-1.734665px;}
.ls3c{letter-spacing:-1.722000px;}
.ls3d{letter-spacing:-1.344000px;}
.ls5d{letter-spacing:-1.289879px;}
.ls6b{letter-spacing:-1.249416px;}
.ls69{letter-spacing:-1.160172px;}
.ls75{letter-spacing:-1.114305px;}
.ls2f{letter-spacing:-1.080000px;}
.ls77{letter-spacing:-1.069733px;}
.ls5b{letter-spacing:-1.067486px;}
.ls44{letter-spacing:-1.050000px;}
.ls3a{letter-spacing:-1.008000px;}
.ls2c{letter-spacing:-0.864000px;}
.ls5e{letter-spacing:-0.800615px;}
.ls3e{letter-spacing:-0.798000px;}
.ls16{letter-spacing:-0.756000px;}
.ls40{letter-spacing:-0.714000px;}
.ls6c{letter-spacing:-0.713952px;}
.ls43{letter-spacing:-0.702000px;}
.ls3b{letter-spacing:-0.630000px;}
.ls1f{letter-spacing:-0.486000px;}
.ls62{letter-spacing:-0.444540px;}
.ls26{letter-spacing:-0.432000px;}
.ls2e{letter-spacing:-0.378000px;}
.ls8e{letter-spacing:-0.360000px;}
.ls39{letter-spacing:-0.336000px;}
.ls2d{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.270000px;}
.ls90{letter-spacing:-0.225000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.210000px;}
.ls30{letter-spacing:-0.175500px;}
.ls2b{letter-spacing:-0.162000px;}
.ls4e{letter-spacing:-0.157837px;}
.ls91{letter-spacing:-0.135000px;}
.ls6f{letter-spacing:-0.133895px;}
.ls51{letter-spacing:-0.132307px;}
.ls37{letter-spacing:-0.126000px;}
.ls23{letter-spacing:-0.108000px;}
.ls4f{letter-spacing:-0.094432px;}
.ls92{letter-spacing:-0.090000px;}
.ls63{letter-spacing:-0.088908px;}
.ls52{letter-spacing:-0.088205px;}
.ls8a{letter-spacing:-0.070200px;}
.ls11{letter-spacing:-0.054000px;}
.ls7a{letter-spacing:-0.044576px;}
.ls27{letter-spacing:-0.035100px;}
.lsf{letter-spacing:0.000000px;}
.lse{letter-spacing:0.005401px;}
.ls3{letter-spacing:0.013132px;}
.ls4{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013772px;}
.ls1{letter-spacing:0.027058px;}
.ls46{letter-spacing:0.029987px;}
.ls45{letter-spacing:0.035100px;}
.ls78{letter-spacing:0.044572px;}
.ls6d{letter-spacing:0.044622px;}
.ls8f{letter-spacing:0.045000px;}
.ls15{letter-spacing:0.054000px;}
.ls7c{letter-spacing:0.087600px;}
.ls61{letter-spacing:0.088908px;}
.ls86{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.092981px;}
.ls7d{letter-spacing:0.103721px;}
.ls4d{letter-spacing:0.105224px;}
.ls13{letter-spacing:0.108000px;}
.ls5a{letter-spacing:0.121426px;}
.ls73{letter-spacing:0.121682px;}
.ls84{letter-spacing:0.135000px;}
.ls20{letter-spacing:0.140400px;}
.ls21{letter-spacing:0.157950px;}
.ls8{letter-spacing:0.159019px;}
.ls58{letter-spacing:0.161902px;}
.ls12{letter-spacing:0.162000px;}
.ls68{letter-spacing:0.162422px;}
.ls9{letter-spacing:0.175500px;}
.ls85{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.191508px;}
.ls81{letter-spacing:0.202500px;}
.ls66{letter-spacing:0.203028px;}
.ls5{letter-spacing:0.216000px;}
.ls89{letter-spacing:0.225000px;}
.ls47{letter-spacing:0.239385px;}
.ls80{letter-spacing:0.247500px;}
.ls3f{letter-spacing:0.252000px;}
.ls7e{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.280800px;}
.ls54{letter-spacing:0.311350px;}
.ls8d{letter-spacing:0.315000px;}
.ls1b{letter-spacing:0.315900px;}
.ls17{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.351000px;}
.ls87{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.378000px;}
.ls8c{letter-spacing:0.405000px;}
.lsc{letter-spacing:0.421200px;}
.ls1a{letter-spacing:0.432000px;}
.ls82{letter-spacing:0.450000px;}
.ls6{letter-spacing:0.457208px;}
.ls28{letter-spacing:0.486000px;}
.ls8b{letter-spacing:0.495000px;}
.ls19{letter-spacing:0.540000px;}
.ls74{letter-spacing:0.567848px;}
.ls67{letter-spacing:0.568478px;}
.ls60{letter-spacing:0.578222px;}
.ls79{letter-spacing:0.579439px;}
.ls25{letter-spacing:0.594000px;}
.ls6e{letter-spacing:0.624708px;}
.ls59{letter-spacing:0.647606px;}
.ls18{letter-spacing:0.648000px;}
.ls4b{letter-spacing:0.670278px;}
.ls7{letter-spacing:0.702000px;}
.lsb{letter-spacing:0.756000px;}
.ls22{letter-spacing:0.864000px;}
.ls7f{letter-spacing:1.116000px;}
.ls83{letter-spacing:1.485000px;}
.ls88{letter-spacing:1.507479px;}
.ls0{letter-spacing:3.000000px;}
.lsd{letter-spacing:9.945000px;}
.ls29{letter-spacing:12.266444px;}
.ls2a{letter-spacing:24.262702px;}
.ls42{letter-spacing:55.521453px;}
.ls41{letter-spacing:55.521517px;}
.ls31{letter-spacing:55.521608px;}
.ls33{letter-spacing:55.521636px;}
.ls32{letter-spacing:55.522172px;}
.ls50{letter-spacing:78.259100px;}
.ls53{letter-spacing:103.374167px;}
.ls65{letter-spacing:103.666097px;}
.ls57{letter-spacing:114.423956px;}
.ls55{letter-spacing:114.792031px;}
.ls71{letter-spacing:115.597708px;}
.ls72{letter-spacing:116.043875px;}
.ls56{letter-spacing:126.080871px;}
.ls64{letter-spacing:126.486444px;}
.ls70{letter-spacing:127.238600px;}
.ls4a{letter-spacing:156.653540px;}
.ls49{letter-spacing:169.867592px;}
.ls48{letter-spacing:196.774465px;}
.ls35{letter-spacing:224.447994px;}
.ls34{letter-spacing:425.081991px;}
.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;}
}
.ws89{word-spacing:-196.822342px;}
.ws8a{word-spacing:-169.915469px;}
.ws8c{word-spacing:-156.701417px;}
.wsaa{word-spacing:-138.514447px;}
.wsa5{word-spacing:-137.774801px;}
.wsac{word-spacing:-127.319721px;}
.wsab{word-spacing:-126.873555px;}
.ws9f{word-spacing:-126.121346px;}
.wsa6{word-spacing:-126.080388px;}
.wsa0{word-spacing:-114.464431px;}
.wsbb{word-spacing:-103.666097px;}
.ws90{word-spacing:-89.887343px;}
.ws23{word-spacing:-54.000000px;}
.ws0{word-spacing:-48.000000px;}
.ws93{word-spacing:-22.149040px;}
.ws8e{word-spacing:-19.934149px;}
.ws1{word-spacing:-15.000000px;}
.ws8d{word-spacing:-14.468354px;}
.wsca{word-spacing:-13.860000px;}
.ws3e{word-spacing:-13.596000px;}
.ws92{word-spacing:-13.289478px;}
.ws40{word-spacing:-12.528000px;}
.ws97{word-spacing:-12.312000px;}
.ws1f{word-spacing:-12.258000px;}
.wscf{word-spacing:-12.150000px;}
.ws5{word-spacing:-12.096000px;}
.ws2a{word-spacing:-11.988000px;}
.ws2e{word-spacing:-11.934000px;}
.ws22{word-spacing:-11.718000px;}
.ws7b{word-spacing:-11.664000px;}
.ws16{word-spacing:-11.502000px;}
.wsa1{word-spacing:-11.297564px;}
.wsad{word-spacing:-11.276767px;}
.wsa7{word-spacing:-11.244744px;}
.wscc{word-spacing:-10.440000px;}
.wscb{word-spacing:-10.417500px;}
.wsd5{word-spacing:-10.395000px;}
.ws8{word-spacing:-10.200000px;}
.ws88{word-spacing:-9.990000px;}
.ws1e{word-spacing:-9.600000px;}
.wscd{word-spacing:-9.585000px;}
.ws75{word-spacing:-9.534000px;}
.ws79{word-spacing:-9.114000px;}
.ws53{word-spacing:-8.988000px;}
.ws78{word-spacing:-8.736000px;}
.ws6{word-spacing:-8.388900px;}
.ws2d{word-spacing:-8.318700px;}
.ws21{word-spacing:-8.248500px;}
.ws20{word-spacing:-8.143200px;}
.ws2c{word-spacing:-8.108100px;}
.ws2{word-spacing:-8.034000px;}
.ws4{word-spacing:-7.967700px;}
.ws2f{word-spacing:-7.932600px;}
.wsc9{word-spacing:-7.897500px;}
.ws3f{word-spacing:-7.792200px;}
.ws7{word-spacing:-6.630000px;}
.wsdb{word-spacing:-6.075000px;}
.wse1{word-spacing:-5.805000px;}
.ws50{word-spacing:-5.508000px;}
.wsc8{word-spacing:-4.284000px;}
.ws45{word-spacing:-2.160000px;}
.wsd{word-spacing:-1.242000px;}
.wsc{word-spacing:-1.188000px;}
.ws49{word-spacing:-1.080000px;}
.wsd4{word-spacing:-1.035000px;}
.wsf{word-spacing:-1.026000px;}
.wsd6{word-spacing:-0.990000px;}
.ws48{word-spacing:-0.972000px;}
.ws3a{word-spacing:-0.810000px;}
.wsd0{word-spacing:-0.756000px;}
.ws15{word-spacing:-0.702000px;}
.ws9a{word-spacing:-0.670278px;}
.ws17{word-spacing:-0.648000px;}
.wsb5{word-spacing:-0.647606px;}
.wsc2{word-spacing:-0.624708px;}
.ws14{word-spacing:-0.594000px;}
.wsc6{word-spacing:-0.579439px;}
.wsb8{word-spacing:-0.578222px;}
.wsbd{word-spacing:-0.568478px;}
.wsc4{word-spacing:-0.567848px;}
.wsb{word-spacing:-0.540000px;}
.wsd3{word-spacing:-0.450000px;}
.ws36{word-spacing:-0.432000px;}
.ws4d{word-spacing:-0.378000px;}
.wse0{word-spacing:-0.360000px;}
.wsda{word-spacing:-0.315000px;}
.ws24{word-spacing:-0.280800px;}
.ws26{word-spacing:-0.270000px;}
.wse3{word-spacing:-0.264000px;}
.ws99{word-spacing:-0.239385px;}
.wsd7{word-spacing:-0.225000px;}
.wsa{word-spacing:-0.216000px;}
.wsbc{word-spacing:-0.203028px;}
.ws9b{word-spacing:-0.191508px;}
.wsd8{word-spacing:-0.180000px;}
.wsbe{word-spacing:-0.162422px;}
.ws32{word-spacing:-0.162000px;}
.wsb4{word-spacing:-0.161902px;}
.ws31{word-spacing:-0.140400px;}
.wsc3{word-spacing:-0.121682px;}
.wsb6{word-spacing:-0.121426px;}
.wsdd{word-spacing:-0.090000px;}
.wsb9{word-spacing:-0.088908px;}
.ws42{word-spacing:-0.054037px;}
.ws25{word-spacing:-0.054000px;}
.wsc1{word-spacing:-0.044622px;}
.wsc5{word-spacing:-0.044572px;}
.ws3{word-spacing:-0.039000px;}
.ws9{word-spacing:0.000000px;}
.wse{word-spacing:0.054000px;}
.wsce{word-spacing:0.070200px;}
.ws9e{word-spacing:0.088205px;}
.wse2{word-spacing:0.090000px;}
.ws9c{word-spacing:0.094432px;}
.ws4c{word-spacing:0.108000px;}
.ws9d{word-spacing:0.132307px;}
.wsde{word-spacing:0.135000px;}
.ws3d{word-spacing:0.162000px;}
.wsdf{word-spacing:0.180000px;}
.ws29{word-spacing:0.216000px;}
.ws2b{word-spacing:0.270000px;}
.ws30{word-spacing:0.324000px;}
.wsc7{word-spacing:0.378000px;}
.wsba{word-spacing:0.444540px;}
.ws96{word-spacing:0.486000px;}
.ws35{word-spacing:0.540000px;}
.ws13{word-spacing:0.594000px;}
.ws95{word-spacing:0.648000px;}
.ws98{word-spacing:0.702000px;}
.wsc0{word-spacing:0.713952px;}
.wsa3{word-spacing:0.756136px;}
.ws34{word-spacing:0.810000px;}
.ws33{word-spacing:0.864000px;}
.wsdc{word-spacing:0.945000px;}
.ws1a{word-spacing:0.972000px;}
.wsd2{word-spacing:0.990000px;}
.wsaf{word-spacing:1.025161px;}
.ws11{word-spacing:1.026000px;}
.wsd1{word-spacing:1.035000px;}
.ws4e{word-spacing:1.134000px;}
.ws19{word-spacing:1.188000px;}
.wsd9{word-spacing:1.215000px;}
.ws12{word-spacing:1.242000px;}
.wsbf{word-spacing:1.249416px;}
.wsb7{word-spacing:1.289879px;}
.ws1b{word-spacing:1.296000px;}
.ws44{word-spacing:1.350000px;}
.ws51{word-spacing:1.404000px;}
.ws27{word-spacing:1.458000px;}
.ws39{word-spacing:1.512000px;}
.ws10{word-spacing:1.674000px;}
.wsa4{word-spacing:1.690187px;}
.ws4f{word-spacing:1.728000px;}
.wsb0{word-spacing:1.738316px;}
.ws47{word-spacing:1.782000px;}
.wsa9{word-spacing:1.784880px;}
.ws18{word-spacing:1.890000px;}
.ws94{word-spacing:1.998000px;}
.ws4a{word-spacing:2.052000px;}
.ws38{word-spacing:2.160000px;}
.ws3b{word-spacing:2.538000px;}
.ws4b{word-spacing:2.754000px;}
.wse6{word-spacing:3.024000px;}
.wse7{word-spacing:3.132000px;}
.wse4{word-spacing:3.186000px;}
.wse5{word-spacing:3.348000px;}
.ws3c{word-spacing:4.212000px;}
.wsae{word-spacing:4.590937px;}
.ws46{word-spacing:4.644000px;}
.wsa2{word-spacing:4.670253px;}
.wsa8{word-spacing:4.685310px;}
.ws7a{word-spacing:5.166000px;}
.wsea{word-spacing:5.670000px;}
.wseb{word-spacing:6.264000px;}
.wse8{word-spacing:6.480000px;}
.wse9{word-spacing:6.750000px;}
.ws1c{word-spacing:8.160000px;}
.ws37{word-spacing:11.124000px;}
.ws1d{word-spacing:11.271000px;}
.ws41{word-spacing:12.158370px;}
.ws28{word-spacing:15.282000px;}
.ws43{word-spacing:20.966433px;}
.ws55{word-spacing:64.847995px;}
.ws7d{word-spacing:92.152191px;}
.ws52{word-spacing:104.999995px;}
.ws84{word-spacing:137.638191px;}
.ws8b{word-spacing:156.126893px;}
.ws6a{word-spacing:158.003994px;}
.ws82{word-spacing:161.662191px;}
.ws76{word-spacing:167.122191px;}
.ws67{word-spacing:173.333994px;}
.ws57{word-spacing:178.924191px;}
.ws71{word-spacing:179.298000px;}
.ws5b{word-spacing:182.662191px;}
.ws58{word-spacing:194.333994px;}
.ws91{word-spacing:204.471826px;}
.ws86{word-spacing:214.666191px;}
.ws8f{word-spacing:253.774375px;}
.wsb2{word-spacing:262.247995px;}
.ws54{word-spacing:262.499981px;}
.ws80{word-spacing:268.884000px;}
.ws5d{word-spacing:269.976000px;}
.ws74{word-spacing:271.320000px;}
.ws6e{word-spacing:274.302000px;}
.ws73{word-spacing:274.385991px;}
.ws85{word-spacing:275.310000px;}
.ws60{word-spacing:276.738000px;}
.ws87{word-spacing:276.742200px;}
.ws63{word-spacing:278.880000px;}
.ws83{word-spacing:281.484000px;}
.ws65{word-spacing:282.072000px;}
.ws70{word-spacing:282.618000px;}
.ws59{word-spacing:283.080000px;}
.ws62{word-spacing:283.206000px;}
.ws61{word-spacing:283.710000px;}
.ws7f{word-spacing:284.802000px;}
.ws69{word-spacing:288.078000px;}
.ws7e{word-spacing:289.170000px;}
.ws6b{word-spacing:290.472000px;}
.ws68{word-spacing:291.353991px;}
.ws6d{word-spacing:291.774000px;}
.ws5c{word-spacing:292.660200px;}
.ws5e{word-spacing:293.958000px;}
.ws7c{word-spacing:294.251991px;}
.ws6c{word-spacing:298.368000px;}
.ws64{word-spacing:300.636000px;}
.ws5f{word-spacing:304.798200px;}
.ws72{word-spacing:306.940200px;}
.ws6f{word-spacing:307.356000px;}
.ws56{word-spacing:334.026000px;}
.ws5a{word-spacing:338.813991px;}
.ws77{word-spacing:365.189991px;}
.ws66{word-spacing:380.225991px;}
.ws81{word-spacing:754.277994px;}
.wsb1{word-spacing:758.393967px;}
.wsb3{word-spacing:804.089967px;}
._3a{margin-left:-1108.638575px;}
._37{margin-left:-196.104187px;}
._38{margin-left:-169.628207px;}
._39{margin-left:-156.414155px;}
._3f{margin-left:-126.670752px;}
._3c{margin-left:-125.554700px;}
._3e{margin-left:-114.912205px;}
._3d{margin-left:-113.776349px;}
._13{margin-left:-20.952007px;}
._7{margin-left:-14.909407px;}
._12{margin-left:-13.561151px;}
._9{margin-left:-11.353340px;}
._5{margin-left:-10.053664px;}
._15{margin-left:-7.558879px;}
._6{margin-left:-5.934600px;}
._4{margin-left:-4.644000px;}
._2{margin-left:-3.495628px;}
._0{margin-left:-1.876800px;}
._3{width:1.036821px;}
._8{width:2.905115px;}
._19{width:4.425016px;}
._b{width:5.865000px;}
._a{width:8.195700px;}
._17{width:9.412182px;}
._c{width:11.546400px;}
._d{width:12.581700px;}
._11{width:14.238526px;}
._10{width:15.271207px;}
._f{width:16.554628px;}
._e{width:17.911159px;}
._18{width:30.641477px;}
._33{width:37.828791px;}
._14{width:47.648346px;}
._16{width:55.019979px;}
._1f{width:74.381995px;}
._1b{width:91.014000px;}
._42{width:102.647973px;}
._20{width:106.218000px;}
._45{width:165.130795px;}
._2f{width:170.897991px;}
._22{width:183.960000px;}
._1d{width:188.832000px;}
._40{width:197.247567px;}
._1a{width:212.520000px;}
._25{width:269.303991px;}
._23{width:276.579628px;}
._35{width:278.979600px;}
._29{width:283.767600px;}
._30{width:285.418791px;}
._1e{width:287.224800px;}
._31{width:289.408800px;}
._32{width:290.836800px;}
._24{width:293.104800px;}
._27{width:298.774779px;}
._2c{width:302.106000px;}
._21{width:303.996000px;}
._41{width:311.792352px;}
._1{width:317.860800px;}
._26{width:340.956000px;}
._36{width:370.482000px;}
._2a{width:374.975991px;}
._34{width:397.991981px;}
._2e{width:405.928446px;}
._1c{width:407.567981px;}
._28{width:425.119770px;}
._2d{width:426.693591px;}
._2b{width:427.727981px;}
._43{width:584.093967px;}
._3b{width:599.748064px;}
._44{width:719.417967px;}
._46{width:817.823967px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsc{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs11{font-size:35.412000px;}
.fs3{font-size:39.000000px;}
.fsf{font-size:39.458399px;}
.fs18{font-size:40.475400px;}
.fs20{font-size:40.560599px;}
.fs1c{font-size:40.605600px;}
.fsb{font-size:42.000000px;}
.fs15{font-size:44.102400px;}
.fs1a{font-size:44.454000px;}
.fs19{font-size:44.478599px;}
.fs21{font-size:44.572200px;}
.fs22{font-size:44.575799px;}
.fs1d{font-size:44.621999px;}
.fs1e{font-size:44.631600px;}
.fs23{font-size:45.000000px;}
.fs10{font-size:47.215799px;}
.fsd{font-size:47.876999px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs14{font-size:51.452400px;}
.fse{font-size:52.612198px;}
.fs13{font-size:53.902800px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:54.037199px;}
.fs16{font-size:58.803000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs1f{font-size:72.000000px;}
.fs1b{font-size:72.002998px;}
.fs12{font-size:88.204199px;}
.fs17{font-size:98.004600px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:3.199200px;}
.y33{bottom:3.199350px;}
.ycf{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y19a{bottom:4.196411px;}
.ycc{bottom:4.755157px;}
.yce{bottom:15.703308px;}
.y193{bottom:25.689880px;}
.y32{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y89{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y31{bottom:68.037452px;}
.yca{bottom:68.302506px;}
.y87{bottom:69.086244px;}
.y3e{bottom:71.875652px;}
.y154{bottom:72.630152px;}
.y1a0{bottom:82.763100px;}
.y30{bottom:83.037452px;}
.yc9{bottom:83.301006px;}
.y86{bottom:84.084744px;}
.y3d{bottom:86.874152px;}
.y153{bottom:87.628652px;}
.y1e7{bottom:92.148898px;}
.y10b{bottom:93.056835px;}
.y19f{bottom:97.761600px;}
.y2f{bottom:98.037452px;}
.yc8{bottom:98.299506px;}
.y85{bottom:99.089244px;}
.y3c{bottom:101.872652px;}
.y152{bottom:102.627152px;}
.y1e6{bottom:104.895148px;}
.y10a{bottom:110.591835px;}
.y2e{bottom:113.037452px;}
.yc7{bottom:113.298006px;}
.y84{bottom:114.087744px;}
.y3b{bottom:116.871152px;}
.y151{bottom:117.625652px;}
.y1e5{bottom:117.641398px;}
.y2d{bottom:128.037452px;}
.y109{bottom:128.126835px;}
.yc6{bottom:128.296506px;}
.y83{bottom:129.086244px;}
.y1e4{bottom:130.387648px;}
.y1a6{bottom:130.418100px;}
.y3a{bottom:131.872652px;}
.y150{bottom:132.624152px;}
.y1e3{bottom:143.133898px;}
.yc5{bottom:143.295006px;}
.y82{bottom:144.084744px;}
.y108{bottom:145.661835px;}
.y39{bottom:146.871152px;}
.y2c{bottom:147.493950px;}
.y14f{bottom:147.622652px;}
.y1a5{bottom:147.953100px;}
.y10f{bottom:151.270352px;}
.y1e2{bottom:155.880148px;}
.yc4{bottom:158.293506px;}
.y81{bottom:159.083244px;}
.y38{bottom:161.874152px;}
.y14e{bottom:162.621152px;}
.y107{bottom:163.196835px;}
.y1a4{bottom:165.488100px;}
.y10e{bottom:166.270352px;}
.y1e1{bottom:168.626398px;}
.y106{bottom:168.814335px;}
.yc3{bottom:173.292006px;}
.y37{bottom:176.872652px;}
.y14d{bottom:177.621152px;}
.y10d{bottom:181.270352px;}
.y1e0{bottom:181.372648px;}
.y1a3{bottom:183.023100px;}
.yc2{bottom:188.290506px;}
.y36{bottom:191.871152px;}
.y105{bottom:191.977335px;}
.y80{bottom:192.087744px;}
.y14c{bottom:192.622652px;}
.y1df{bottom:194.118898px;}
.y10c{bottom:196.268852px;}
.y1a2{bottom:200.558100px;}
.y19c{bottom:201.971420px;}
.yc1{bottom:203.289006px;}
.y1de{bottom:206.865148px;}
.y35{bottom:206.869652px;}
.y7f{bottom:207.086244px;}
.y14b{bottom:207.621152px;}
.y104{bottom:209.512335px;}
.y2a{bottom:210.075305px;}
.y1a1{bottom:218.093100px;}
.yc0{bottom:218.287506px;}
.y1dd{bottom:219.611398px;}
.y7e{bottom:222.084744px;}
.y14a{bottom:222.619652px;}
.y29{bottom:225.073805px;}
.y103{bottom:227.047335px;}
.y140{bottom:229.696358px;}
.y1dc{bottom:232.357648px;}
.ybf{bottom:233.286006px;}
.y13f{bottom:235.313858px;}
.y7d{bottom:237.087744px;}
.y149{bottom:237.619652px;}
.y28{bottom:240.072305px;}
.y102{bottom:244.582335px;}
.y1db{bottom:245.103898px;}
.ybe{bottom:248.284506px;}
.y7c{bottom:252.086244px;}
.y188{bottom:254.550888px;}
.y27{bottom:255.070805px;}
.y1da{bottom:257.850148px;}
.y13e{bottom:258.476858px;}
.y101{bottom:262.117335px;}
.ybd{bottom:263.283006px;}
.y47{bottom:265.543631px;}
.y7b{bottom:267.084744px;}
.y26{bottom:270.073805px;}
.y1d9{bottom:270.596398px;}
.y148{bottom:270.628652px;}
.y13d{bottom:276.011858px;}
.ybc{bottom:278.281506px;}
.y100{bottom:279.652335px;}
.y46{bottom:280.542131px;}
.y7a{bottom:282.083244px;}
.y1d8{bottom:283.342648px;}
.y25{bottom:285.072305px;}
.y147{bottom:285.627152px;}
.ybb{bottom:293.308484px;}
.y157{bottom:293.530334px;}
.y13c{bottom:293.546858px;}
.y45{bottom:295.540631px;}
.y1d7{bottom:296.088898px;}
.yff{bottom:297.187335px;}
.y13b{bottom:299.164358px;}
.y24{bottom:300.070805px;}
.y146{bottom:300.625652px;}
.yba{bottom:308.306984px;}
.y1d6{bottom:308.835148px;}
.y44{bottom:310.539131px;}
.yfe{bottom:314.722335px;}
.y23{bottom:315.073805px;}
.y79{bottom:315.102767px;}
.y145{bottom:315.624152px;}
.y1d5{bottom:321.581398px;}
.y13a{bottom:322.327358px;}
.yb9{bottom:323.305484px;}
.y43{bottom:325.537631px;}
.y22{bottom:330.072305px;}
.y78{bottom:330.101267px;}
.y144{bottom:330.622652px;}
.yfd{bottom:332.257335px;}
.y1d4{bottom:334.327648px;}
.yb8{bottom:338.303984px;}
.y139{bottom:339.862358px;}
.y42{bottom:340.536131px;}
.y21{bottom:345.070805px;}
.y77{bottom:345.099767px;}
.y143{bottom:345.621152px;}
.y1d3{bottom:347.073898px;}
.yfc{bottom:349.792335px;}
.yb7{bottom:353.302484px;}
.y41{bottom:355.534631px;}
.y138{bottom:357.352948px;}
.y1d2{bottom:359.820148px;}
.y20{bottom:360.073805px;}
.y76{bottom:360.098267px;}
.y142{bottom:360.621152px;}
.yfb{bottom:367.327335px;}
.yb6{bottom:368.300984px;}
.y40{bottom:370.533131px;}
.y19e{bottom:371.869069px;}
.y1d1{bottom:372.566398px;}
.y137{bottom:374.887948px;}
.y1f{bottom:375.072305px;}
.y75{bottom:375.096767px;}
.y141{bottom:375.619652px;}
.yb5{bottom:383.299484px;}
.yfa{bottom:384.799948px;}
.y1d0{bottom:385.312648px;}
.y3f{bottom:385.531631px;}
.y19d{bottom:386.867569px;}
.y1e{bottom:390.070805px;}
.y74{bottom:390.095267px;}
.y136{bottom:392.422948px;}
.y1cf{bottom:398.058898px;}
.yb4{bottom:398.297984px;}
.yf9{bottom:402.334948px;}
.y73{bottom:405.093767px;}
.y1d{bottom:405.121815px;}
.y135{bottom:409.957948px;}
.y1ce{bottom:410.805148px;}
.yb3{bottom:413.296484px;}
.y185{bottom:413.689499px;}
.yf8{bottom:419.869948px;}
.y72{bottom:420.092267px;}
.y1c{bottom:420.120315px;}
.y1cd{bottom:423.551398px;}
.y134{bottom:427.492948px;}
.yb2{bottom:428.294984px;}
.y17b{bottom:429.215860px;}
.y71{bottom:435.090767px;}
.y1cc{bottom:436.297648px;}
.yf7{bottom:437.404948px;}
.y133{bottom:438.738448px;}
.y192{bottom:439.379379px;}
.yb1{bottom:443.293484px;}
.y17a{bottom:444.214360px;}
.y1cb{bottom:449.043898px;}
.y70{bottom:450.089267px;}
.y194{bottom:450.990921px;}
.yf6{bottom:454.939948px;}
.yb0{bottom:458.291984px;}
.y179{bottom:459.221860px;}
.y1ca{bottom:461.790148px;}
.y6f{bottom:465.087767px;}
.y1b{bottom:465.264315px;}
.y132{bottom:467.518948px;}
.yf5{bottom:472.474948px;}
.yaf{bottom:473.290484px;}
.y178{bottom:474.220360px;}
.y1c9{bottom:474.536398px;}
.y19b{bottom:478.730392px;}
.y20a{bottom:479.912244px;}
.y6e{bottom:480.086267px;}
.y1a{bottom:481.761315px;}
.y195{bottom:482.952673px;}
.y131{bottom:485.053948px;}
.y1c8{bottom:487.282648px;}
.yae{bottom:488.288984px;}
.y177{bottom:489.218860px;}
.yf4{bottom:490.009948px;}
.y130{bottom:490.671448px;}
.y6d{bottom:495.084767px;}
.y19{bottom:498.258315px;}
.y1c7{bottom:500.028898px;}
.y164{bottom:500.423676px;}
.yad{bottom:503.287484px;}
.y176{bottom:504.217360px;}
.yf3{bottom:507.544948px;}
.y209{bottom:509.909243px;}
.y6c{bottom:510.083267px;}
.y166{bottom:510.763184px;}
.y1c6{bottom:512.775148px;}
.y12f{bottom:513.834448px;}
.y18{bottom:514.755315px;}
.y196{bottom:514.944846px;}
.yac{bottom:518.285984px;}
.y175{bottom:519.215860px;}
.y208{bottom:524.907743px;}
.yf2{bottom:525.079948px;}
.y1c5{bottom:525.521398px;}
.y17{bottom:531.252315px;}
.y12e{bottom:531.369448px;}
.yab{bottom:533.284484px;}
.y174{bottom:534.214360px;}
.y1c4{bottom:538.267648px;}
.y207{bottom:539.906243px;}
.yf1{bottom:542.614948px;}
.y6b{bottom:543.095267px;}
.y197{bottom:546.937019px;}
.y16{bottom:547.749315px;}
.yaa{bottom:548.282984px;}
.y12d{bottom:548.904448px;}
.y173{bottom:549.212860px;}
.y1c3{bottom:551.013898px;}
.y206{bottom:554.904743px;}
.y6a{bottom:558.093767px;}
.yf0{bottom:560.149948px;}
.ya9{bottom:563.281484px;}
.y1c2{bottom:563.760148px;}
.y15{bottom:564.246315px;}
.y12c{bottom:566.439448px;}
.y205{bottom:569.903243px;}
.y69{bottom:573.092267px;}
.y156{bottom:576.035980px;}
.y1c1{bottom:576.506398px;}
.yef{bottom:577.684948px;}
.ya8{bottom:578.282984px;}
.y198{bottom:578.929191px;}
.y14{bottom:580.743315px;}
.y12b{bottom:583.974448px;}
.y204{bottom:584.901743px;}
.y68{bottom:588.090767px;}
.y1c0{bottom:589.252648px;}
.ya7{bottom:593.281484px;}
.yee{bottom:595.219948px;}
.y13{bottom:597.240315px;}
.y203{bottom:599.900243px;}
.y12a{bottom:601.509448px;}
.y1bf{bottom:601.998898px;}
.y67{bottom:603.089267px;}
.ya6{bottom:608.299529px;}
.y199{bottom:610.890944px;}
.yed{bottom:612.754948px;}
.y12{bottom:613.737315px;}
.y1be{bottom:614.745148px;}
.y202{bottom:614.898743px;}
.y66{bottom:618.087767px;}
.y129{bottom:619.044448px;}
.ya5{bottom:623.298029px;}
.y1bd{bottom:627.491398px;}
.y11{bottom:630.234315px;}
.yec{bottom:630.289948px;}
.y65{bottom:633.086267px;}
.y128{bottom:636.579448px;}
.y201{bottom:637.388380px;}
.ya4{bottom:638.296529px;}
.y1bc{bottom:640.237648px;}
.y18f{bottom:646.689880px;}
.y10{bottom:646.731315px;}
.yeb{bottom:647.824948px;}
.y64{bottom:648.084767px;}
.y200{bottom:652.386880px;}
.y1bb{bottom:652.983898px;}
.ya3{bottom:653.295029px;}
.y127{bottom:654.114448px;}
.y63{bottom:663.083267px;}
.yf{bottom:663.228315px;}
.yea{bottom:665.359948px;}
.y1ba{bottom:665.730148px;}
.y187{bottom:668.240387px;}
.ya2{bottom:668.293529px;}
.y186{bottom:668.661301px;}
.y126{bottom:671.649448px;}
.y1ff{bottom:674.891380px;}
.y1b9{bottom:678.480148px;}
.ye{bottom:679.725315px;}
.y189{bottom:679.824921px;}
.ye9{bottom:682.894948px;}
.ya1{bottom:683.292029px;}
.y125{bottom:689.184448px;}
.y62{bottom:696.083267px;}
.yd{bottom:696.222315px;}
.y1fe{bottom:697.395880px;}
.ya0{bottom:698.290529px;}
.ye8{bottom:700.429948px;}
.y124{bottom:706.719448px;}
.y61{bottom:711.083267px;}
.y18a{bottom:711.842436px;}
.yc{bottom:712.719315px;}
.y9f{bottom:713.289029px;}
.y190{bottom:717.309906px;}
.ye7{bottom:717.964948px;}
.y1fd{bottom:719.900380px;}
.y123{bottom:724.254448px;}
.y1b8{bottom:727.980148px;}
.y9e{bottom:728.287529px;}
.y1fc{bottom:734.898880px;}
.ye6{bottom:735.499948px;}
.y122{bottom:741.789448px;}
.yb{bottom:742.719315px;}
.y9d{bottom:743.286029px;}
.y18b{bottom:743.859952px;}
.y60{bottom:744.104221px;}
.y1fb{bottom:749.898880px;}
.ye5{bottom:753.034948px;}
.y9c{bottom:758.284529px;}
.y5f{bottom:759.102721px;}
.y121{bottom:759.324448px;}
.ya{bottom:760.719269px;}
.ye4{bottom:770.569948px;}
.y1b7{bottom:772.984694px;}
.y9b{bottom:773.283029px;}
.y5e{bottom:774.101221px;}
.y18c{bottom:775.877467px;}
.y120{bottom:776.859448px;}
.y9{bottom:778.719269px;}
.y1fa{bottom:779.898926px;}
.y1b6{bottom:787.983194px;}
.ye3{bottom:788.104948px;}
.y9a{bottom:788.281529px;}
.y165{bottom:788.444824px;}
.y5d{bottom:789.099721px;}
.y11f{bottom:794.394448px;}
.y1f9{bottom:794.898926px;}
.y1b5{bottom:802.981694px;}
.y99{bottom:803.280029px;}
.y5c{bottom:804.098221px;}
.ye2{bottom:805.639948px;}
.y18d{bottom:807.894983px;}
.y8{bottom:811.701269px;}
.y11e{bottom:811.929448px;}
.y1b4{bottom:817.996694px;}
.y98{bottom:818.280029px;}
.y5b{bottom:819.096721px;}
.ye1{bottom:823.174948px;}
.y1f8{bottom:826.373284px;}
.y15f{bottom:827.864868px;}
.y15d{bottom:827.870462px;}
.y11d{bottom:829.464448px;}
.y171{bottom:831.589112px;}
.y1b3{bottom:832.995194px;}
.y5a{bottom:834.095221px;}
.y15e{bottom:834.185852px;}
.y18e{bottom:839.912499px;}
.ye0{bottom:840.709948px;}
.y1f7{bottom:841.371784px;}
.y11c{bottom:846.999448px;}
.y15c{bottom:847.586884px;}
.y1b2{bottom:847.993694px;}
.y59{bottom:849.093721px;}
.y191{bottom:850.848907px;}
.y97{bottom:851.286194px;}
.y1f6{bottom:856.370284px;}
.y7{bottom:856.707269px;}
.ydf{bottom:858.244948px;}
.y170{bottom:862.361560px;}
.y1b1{bottom:862.992194px;}
.y58{bottom:864.092221px;}
.y11b{bottom:864.534448px;}
.y96{bottom:866.284694px;}
.y155{bottom:869.566315px;}
.y1f5{bottom:871.368784px;}
.yde{bottom:875.779948px;}
.y1b0{bottom:877.990694px;}
.y183{bottom:878.898926px;}
.y57{bottom:879.090721px;}
.y95{bottom:881.283194px;}
.y11a{bottom:882.069448px;}
.y158{bottom:883.237244px;}
.y1f4{bottom:886.367284px;}
.y1af{bottom:892.989194px;}
.ydd{bottom:893.314948px;}
.y56{bottom:894.089221px;}
.y16f{bottom:895.195797px;}
.y119{bottom:899.604448px;}
.y17c{bottom:900.360900px;}
.y1f3{bottom:901.365784px;}
.y6{bottom:901.713269px;}
.ycb{bottom:903.780029px;}
.y1ae{bottom:907.987694px;}
.ycd{bottom:908.535187px;}
.y55{bottom:909.087721px;}
.ydc{bottom:910.849948px;}
.y17d{bottom:911.916870px;}
.y16e{bottom:913.641626px;}
.y1f2{bottom:916.365784px;}
.y118{bottom:917.139448px;}
.y160{bottom:922.439667px;}
.y1ad{bottom:922.986194px;}
.y54{bottom:924.086221px;}
.y172{bottom:928.178833px;}
.ydb{bottom:928.384948px;}
.y117{bottom:934.674448px;}
.y94{bottom:934.986194px;}
.y159{bottom:935.842096px;}
.y1ac{bottom:937.984694px;}
.y53{bottom:939.084721px;}
.y17e{bottom:943.841842px;}
.yda{bottom:945.919948px;}
.y1f1{bottom:946.371784px;}
.y5{bottom:946.719269px;}
.y161{bottom:949.127204px;}
.y184{bottom:949.287415px;}
.y93{bottom:949.984694px;}
.y16d{bottom:950.566360px;}
.y116{bottom:952.209448px;}
.y1ab{bottom:952.983194px;}
.y52{bottom:954.086221px;}
.y2b{bottom:954.366760px;}
.y1f0{bottom:961.370284px;}
.yd9{bottom:963.454948px;}
.y92{bottom:964.983194px;}
.y1aa{bottom:967.981694px;}
.y51{bottom:969.084721px;}
.y115{bottom:969.744448px;}
.y16c{bottom:970.070647px;}
.y162{bottom:974.382750px;}
.y17f{bottom:975.746576px;}
.y1ef{bottom:976.368784px;}
.y163{bottom:979.918304px;}
.y91{bottom:979.981694px;}
.yd8{bottom:980.989948px;}
.y1a9{bottom:982.981694px;}
.y50{bottom:984.084721px;}
.y114{bottom:987.279448px;}
.y15a{bottom:988.470885px;}
.y16b{bottom:989.552882px;}
.y1ee{bottom:991.367284px;}
.y90{bottom:994.980194px;}
.y1a8{bottom:997.989194px;}
.yd7{bottom:998.524948px;}
.y4f{bottom:999.086221px;}
.y16a{bottom:999.817716px;}
.y113{bottom:1004.814448px;}
.y1ed{bottom:1006.365784px;}
.y180{bottom:1007.671548px;}
.y169{bottom:1010.060498px;}
.y1a7{bottom:1012.987694px;}
.y4e{bottom:1014.084721px;}
.yd6{bottom:1016.059948px;}
.y1ec{bottom:1021.365784px;}
.y112{bottom:1022.349448px;}
.y168{bottom:1022.728912px;}
.y8f{bottom:1027.986194px;}
.y4d{bottom:1029.087721px;}
.yd5{bottom:1033.594948px;}
.y181{bottom:1039.576282px;}
.y111{bottom:1039.884448px;}
.y15b{bottom:1041.075738px;}
.y8e{bottom:1042.984694px;}
.y4c{bottom:1044.086221px;}
.y110{bottom:1045.501948px;}
.yd4{bottom:1051.129948px;}
.y1eb{bottom:1051.377034px;}
.y8d{bottom:1057.983194px;}
.y4b{bottom:1059.084721px;}
.y1ea{bottom:1064.123284px;}
.y167{bottom:1068.422699px;}
.yd3{bottom:1068.664948px;}
.yd0{bottom:1068.665131px;}
.yd1{bottom:1068.669631px;}
.y182{bottom:1071.501253px;}
.y8c{bottom:1072.981694px;}
.y4a{bottom:1074.084721px;}
.y1e9{bottom:1076.869534px;}
.yd2{bottom:1086.198486px;}
.y8b{bottom:1087.980194px;}
.y49{bottom:1089.083221px;}
.y1e8{bottom:1089.615784px;}
.y48{bottom:1140.640320px;}
.y8a{bottom:1140.746521px;}
.y34{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h26{height:2.161488px;}
.h23{height:16.200000px;}
.h25{height:24.911149px;}
.h3a{height:25.779936px;}
.h38{height:28.725714px;}
.h41{height:29.142288px;}
.h4a{height:29.568677px;}
.h46{height:29.601482px;}
.h3e{height:30.474758px;}
.h12{height:30.684677px;}
.h43{height:32.406966px;}
.h42{height:32.424898px;}
.h4b{height:32.493134px;}
.h4c{height:32.495757px;}
.h47{height:32.529437px;}
.h48{height:32.536436px;}
.h39{height:34.373102px;}
.h35{height:34.471439px;}
.h2{height:34.523438px;}
.h50{height:35.411133px;}
.h3d{height:35.553608px;}
.h27{height:36.312998px;}
.h3c{height:37.246835px;}
.h24{height:37.826039px;}
.h37{height:38.301680px;}
.h9{height:38.838867px;}
.h2f{height:41.538000px;}
.h2b{height:42.084000px;}
.h29{height:43.008000px;}
.h2c{height:43.257551px;}
.h2a{height:43.344000px;}
.h52{height:44.505000px;}
.h53{height:45.090000px;}
.h3{height:45.679688px;}
.h51{height:46.080000px;}
.h1c{height:47.469727px;}
.h13{height:48.510668px;}
.h14{height:48.534668px;}
.h8{height:49.050476px;}
.h7{height:49.183594px;}
.h15{height:49.373525px;}
.h54{height:50.439000px;}
.ha{height:51.416016px;}
.h49{height:52.488000px;}
.h45{height:52.490186px;}
.hb{height:53.406000px;}
.h22{height:53.499955px;}
.h20{height:53.535863px;}
.h4f{height:53.547680px;}
.h4d{height:53.577680px;}
.h10{height:53.589863px;}
.hd{height:53.595863px;}
.h16{height:53.595909px;}
.h1d{height:53.595955px;}
.h1a{height:53.596779px;}
.h33{height:53.601863px;}
.h17{height:53.601909px;}
.h1f{height:53.601932px;}
.h21{height:53.602046px;}
.h1b{height:53.602779px;}
.h32{height:53.607314px;}
.h4e{height:53.607680px;}
.h34{height:53.607909px;}
.h19{height:53.608779px;}
.hc{height:53.897963px;}
.h1e{height:54.084000px;}
.hf{height:54.090000px;}
.he{height:54.108000px;}
.h40{height:55.260000px;}
.h18{height:55.296000px;}
.h4{height:57.099609px;}
.h3b{height:60.949101px;}
.h2d{height:64.050000px;}
.h2e{height:65.520000px;}
.h3f{height:68.407211px;}
.h11{height:77.677734px;}
.h30{height:86.520000px;}
.h31{height:87.990000px;}
.h28{height:88.008000px;}
.h5{height:112.201172px;}
.h6{height:148.535156px;}
.h36{height:521.758484px;}
.h44{height:684.105011px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w4{width:255.120003px;}
.w2{width:331.905006px;}
.w3{width:539.995514px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb{left:-1.475418px;}
.x0{left:0.000000px;}
.x33{left:3.676048px;}
.x8{left:7.228350px;}
.xd{left:39.079033px;}
.x3{left:61.653603px;}
.xf{left:64.539757px;}
.x16{left:66.472200px;}
.x3c{left:98.231712px;}
.x7{left:141.395702px;}
.x11{left:176.792519px;}
.x3d{left:192.657303px;}
.x13{left:193.829247px;}
.x34{left:203.886749px;}
.x17{left:221.625000px;}
.x5{left:233.858253px;}
.x36{left:234.887260px;}
.x38{left:238.137772px;}
.x32{left:245.913139px;}
.x2c{left:247.285057px;}
.x6{left:251.860817px;}
.x30{left:254.710470px;}
.x3b{left:256.315889px;}
.x2f{left:260.353775px;}
.x3a{left:261.994877px;}
.x26{left:264.785248px;}
.x2e{left:265.906059px;}
.x39{left:267.582596px;}
.x2d{left:274.139259px;}
.x37{left:275.814308px;}
.x28{left:290.039406px;}
.x40{left:302.498703px;}
.x15{left:315.963890px;}
.x31{left:329.590210px;}
.x27{left:332.695656px;}
.xa{left:366.606010px;}
.xc{left:389.835434px;}
.x2b{left:405.243759px;}
.xe{left:411.881378px;}
.x29{left:433.445250px;}
.x2a{left:435.914984px;}
.x10{left:442.971771px;}
.x35{left:474.983231px;}
.x1b{left:480.935257px;}
.x23{left:506.034760px;}
.x25{left:517.380753px;}
.x24{left:522.701937px;}
.x1e{left:528.826720px;}
.x1d{left:534.854591px;}
.x1c{left:540.753754px;}
.x1a{left:549.476257px;}
.x12{left:551.836029px;}
.x14{left:566.631454px;}
.x4{left:586.814117px;}
.x19{left:602.646907px;}
.x3e{left:621.729286px;}
.x1f{left:626.558258px;}
.x20{left:642.505394px;}
.x21{left:665.172729px;}
.x22{left:670.121246px;}
.x18{left:714.253647px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x3f{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v5{vertical-align:-16.800781pt;}
.v4{vertical-align:-15.866659pt;}
.v9{vertical-align:-3.201483pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.066406pt;}
.v3{vertical-align:16.613268pt;}
.v2{vertical-align:18.666667pt;}
.v8{vertical-align:20.010667pt;}
.v7{vertical-align:40.000000pt;}
.ls38{letter-spacing:-4.592000pt;}
.ls7b{letter-spacing:-4.554667pt;}
.ls6a{letter-spacing:-1.626224pt;}
.ls5c{letter-spacing:-1.620998pt;}
.ls76{letter-spacing:-1.584789pt;}
.ls5f{letter-spacing:-1.541925pt;}
.ls3c{letter-spacing:-1.530667pt;}
.ls3d{letter-spacing:-1.194667pt;}
.ls5d{letter-spacing:-1.146559pt;}
.ls6b{letter-spacing:-1.110592pt;}
.ls69{letter-spacing:-1.031264pt;}
.ls75{letter-spacing:-0.990493pt;}
.ls2f{letter-spacing:-0.960000pt;}
.ls77{letter-spacing:-0.950874pt;}
.ls5b{letter-spacing:-0.948877pt;}
.ls44{letter-spacing:-0.933333pt;}
.ls3a{letter-spacing:-0.896000pt;}
.ls2c{letter-spacing:-0.768000pt;}
.ls5e{letter-spacing:-0.711658pt;}
.ls3e{letter-spacing:-0.709333pt;}
.ls16{letter-spacing:-0.672000pt;}
.ls40{letter-spacing:-0.634667pt;}
.ls6c{letter-spacing:-0.634624pt;}
.ls43{letter-spacing:-0.624000pt;}
.ls3b{letter-spacing:-0.560000pt;}
.ls1f{letter-spacing:-0.432000pt;}
.ls62{letter-spacing:-0.395147pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls2e{letter-spacing:-0.336000pt;}
.ls8e{letter-spacing:-0.320000pt;}
.ls39{letter-spacing:-0.298667pt;}
.ls2d{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls90{letter-spacing:-0.200000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.186667pt;}
.ls30{letter-spacing:-0.156000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls4e{letter-spacing:-0.140299pt;}
.ls91{letter-spacing:-0.120000pt;}
.ls6f{letter-spacing:-0.119018pt;}
.ls51{letter-spacing:-0.117606pt;}
.ls37{letter-spacing:-0.112000pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls4f{letter-spacing:-0.083939pt;}
.ls92{letter-spacing:-0.080000pt;}
.ls63{letter-spacing:-0.079029pt;}
.ls52{letter-spacing:-0.078404pt;}
.ls8a{letter-spacing:-0.062400pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls7a{letter-spacing:-0.039623pt;}
.ls27{letter-spacing:-0.031200pt;}
.lsf{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.004801pt;}
.ls3{letter-spacing:0.011673pt;}
.ls4{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012242pt;}
.ls1{letter-spacing:0.024051pt;}
.ls46{letter-spacing:0.026655pt;}
.ls45{letter-spacing:0.031200pt;}
.ls78{letter-spacing:0.039620pt;}
.ls6d{letter-spacing:0.039664pt;}
.ls8f{letter-spacing:0.040000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls7c{letter-spacing:0.077866pt;}
.ls61{letter-spacing:0.079029pt;}
.ls86{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.082649pt;}
.ls7d{letter-spacing:0.092197pt;}
.ls4d{letter-spacing:0.093533pt;}
.ls13{letter-spacing:0.096000pt;}
.ls5a{letter-spacing:0.107934pt;}
.ls73{letter-spacing:0.108162pt;}
.ls84{letter-spacing:0.120000pt;}
.ls20{letter-spacing:0.124800pt;}
.ls21{letter-spacing:0.140400pt;}
.ls8{letter-spacing:0.141350pt;}
.ls58{letter-spacing:0.143913pt;}
.ls12{letter-spacing:0.144000pt;}
.ls68{letter-spacing:0.144375pt;}
.ls9{letter-spacing:0.156000pt;}
.ls85{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.170229pt;}
.ls81{letter-spacing:0.180000pt;}
.ls66{letter-spacing:0.180469pt;}
.ls5{letter-spacing:0.192000pt;}
.ls89{letter-spacing:0.200000pt;}
.ls47{letter-spacing:0.212787pt;}
.ls80{letter-spacing:0.220000pt;}
.ls3f{letter-spacing:0.224000pt;}
.ls7e{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.249600pt;}
.ls54{letter-spacing:0.276756pt;}
.ls8d{letter-spacing:0.280000pt;}
.ls1b{letter-spacing:0.280800pt;}
.ls17{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.312000pt;}
.ls87{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls8c{letter-spacing:0.360000pt;}
.lsc{letter-spacing:0.374400pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls82{letter-spacing:0.400000pt;}
.ls6{letter-spacing:0.406408pt;}
.ls28{letter-spacing:0.432000pt;}
.ls8b{letter-spacing:0.440000pt;}
.ls19{letter-spacing:0.480000pt;}
.ls74{letter-spacing:0.504754pt;}
.ls67{letter-spacing:0.505314pt;}
.ls60{letter-spacing:0.513975pt;}
.ls79{letter-spacing:0.515057pt;}
.ls25{letter-spacing:0.528000pt;}
.ls6e{letter-spacing:0.555296pt;}
.ls59{letter-spacing:0.575650pt;}
.ls18{letter-spacing:0.576000pt;}
.ls4b{letter-spacing:0.595803pt;}
.ls7{letter-spacing:0.624000pt;}
.lsb{letter-spacing:0.672000pt;}
.ls22{letter-spacing:0.768000pt;}
.ls7f{letter-spacing:0.992000pt;}
.ls83{letter-spacing:1.320000pt;}
.ls88{letter-spacing:1.339981pt;}
.ls0{letter-spacing:2.666667pt;}
.lsd{letter-spacing:8.840000pt;}
.ls29{letter-spacing:10.903506pt;}
.ls2a{letter-spacing:21.566847pt;}
.ls42{letter-spacing:49.352403pt;}
.ls41{letter-spacing:49.352459pt;}
.ls31{letter-spacing:49.352541pt;}
.ls33{letter-spacing:49.352566pt;}
.ls32{letter-spacing:49.353042pt;}
.ls50{letter-spacing:69.563645pt;}
.ls53{letter-spacing:91.888149pt;}
.ls65{letter-spacing:92.147642pt;}
.ls57{letter-spacing:101.710183pt;}
.ls55{letter-spacing:102.037361pt;}
.ls71{letter-spacing:102.753518pt;}
.ls72{letter-spacing:103.150111pt;}
.ls56{letter-spacing:112.071885pt;}
.ls64{letter-spacing:112.432395pt;}
.ls70{letter-spacing:113.100978pt;}
.ls4a{letter-spacing:139.247591pt;}
.ls49{letter-spacing:150.993415pt;}
.ls48{letter-spacing:174.910636pt;}
.ls35{letter-spacing:199.509328pt;}
.ls34{letter-spacing:377.850659pt;}
.ws89{word-spacing:-174.953193pt;}
.ws8a{word-spacing:-151.035973pt;}
.ws8c{word-spacing:-139.290149pt;}
.wsaa{word-spacing:-123.123953pt;}
.wsa5{word-spacing:-122.466490pt;}
.wsac{word-spacing:-113.173086pt;}
.wsab{word-spacing:-112.776493pt;}
.ws9f{word-spacing:-112.107863pt;}
.wsa6{word-spacing:-112.071456pt;}
.wsa0{word-spacing:-101.746161pt;}
.wsbb{word-spacing:-92.147642pt;}
.ws90{word-spacing:-79.899860pt;}
.ws23{word-spacing:-48.000000pt;}
.ws0{word-spacing:-42.666667pt;}
.ws93{word-spacing:-19.688035pt;}
.ws8e{word-spacing:-17.719243pt;}
.ws1{word-spacing:-13.333333pt;}
.ws8d{word-spacing:-12.860759pt;}
.wsca{word-spacing:-12.320000pt;}
.ws3e{word-spacing:-12.085333pt;}
.ws92{word-spacing:-11.812869pt;}
.ws40{word-spacing:-11.136000pt;}
.ws97{word-spacing:-10.944000pt;}
.ws1f{word-spacing:-10.896000pt;}
.wscf{word-spacing:-10.800000pt;}
.ws5{word-spacing:-10.752000pt;}
.ws2a{word-spacing:-10.656000pt;}
.ws2e{word-spacing:-10.608000pt;}
.ws22{word-spacing:-10.416000pt;}
.ws7b{word-spacing:-10.368000pt;}
.ws16{word-spacing:-10.224000pt;}
.wsa1{word-spacing:-10.042279pt;}
.wsad{word-spacing:-10.023793pt;}
.wsa7{word-spacing:-9.995328pt;}
.wscc{word-spacing:-9.280000pt;}
.wscb{word-spacing:-9.260000pt;}
.wsd5{word-spacing:-9.240000pt;}
.ws8{word-spacing:-9.066667pt;}
.ws88{word-spacing:-8.880000pt;}
.ws1e{word-spacing:-8.533333pt;}
.wscd{word-spacing:-8.520000pt;}
.ws75{word-spacing:-8.474667pt;}
.ws79{word-spacing:-8.101333pt;}
.ws53{word-spacing:-7.989333pt;}
.ws78{word-spacing:-7.765333pt;}
.ws6{word-spacing:-7.456800pt;}
.ws2d{word-spacing:-7.394400pt;}
.ws21{word-spacing:-7.332000pt;}
.ws20{word-spacing:-7.238400pt;}
.ws2c{word-spacing:-7.207200pt;}
.ws2{word-spacing:-7.141333pt;}
.ws4{word-spacing:-7.082400pt;}
.ws2f{word-spacing:-7.051200pt;}
.wsc9{word-spacing:-7.020000pt;}
.ws3f{word-spacing:-6.926400pt;}
.ws7{word-spacing:-5.893333pt;}
.wsdb{word-spacing:-5.400000pt;}
.wse1{word-spacing:-5.160000pt;}
.ws50{word-spacing:-4.896000pt;}
.wsc8{word-spacing:-3.808000pt;}
.ws45{word-spacing:-1.920000pt;}
.wsd{word-spacing:-1.104000pt;}
.wsc{word-spacing:-1.056000pt;}
.ws49{word-spacing:-0.960000pt;}
.wsd4{word-spacing:-0.920000pt;}
.wsf{word-spacing:-0.912000pt;}
.wsd6{word-spacing:-0.880000pt;}
.ws48{word-spacing:-0.864000pt;}
.ws3a{word-spacing:-0.720000pt;}
.wsd0{word-spacing:-0.672000pt;}
.ws15{word-spacing:-0.624000pt;}
.ws9a{word-spacing:-0.595803pt;}
.ws17{word-spacing:-0.576000pt;}
.wsb5{word-spacing:-0.575650pt;}
.wsc2{word-spacing:-0.555296pt;}
.ws14{word-spacing:-0.528000pt;}
.wsc6{word-spacing:-0.515057pt;}
.wsb8{word-spacing:-0.513975pt;}
.wsbd{word-spacing:-0.505314pt;}
.wsc4{word-spacing:-0.504754pt;}
.wsb{word-spacing:-0.480000pt;}
.wsd3{word-spacing:-0.400000pt;}
.ws36{word-spacing:-0.384000pt;}
.ws4d{word-spacing:-0.336000pt;}
.wse0{word-spacing:-0.320000pt;}
.wsda{word-spacing:-0.280000pt;}
.ws24{word-spacing:-0.249600pt;}
.ws26{word-spacing:-0.240000pt;}
.wse3{word-spacing:-0.234667pt;}
.ws99{word-spacing:-0.212787pt;}
.wsd7{word-spacing:-0.200000pt;}
.wsa{word-spacing:-0.192000pt;}
.wsbc{word-spacing:-0.180469pt;}
.ws9b{word-spacing:-0.170229pt;}
.wsd8{word-spacing:-0.160000pt;}
.wsbe{word-spacing:-0.144375pt;}
.ws32{word-spacing:-0.144000pt;}
.wsb4{word-spacing:-0.143913pt;}
.ws31{word-spacing:-0.124800pt;}
.wsc3{word-spacing:-0.108162pt;}
.wsb6{word-spacing:-0.107934pt;}
.wsdd{word-spacing:-0.080000pt;}
.wsb9{word-spacing:-0.079029pt;}
.ws42{word-spacing:-0.048033pt;}
.ws25{word-spacing:-0.048000pt;}
.wsc1{word-spacing:-0.039664pt;}
.wsc5{word-spacing:-0.039620pt;}
.ws3{word-spacing:-0.034667pt;}
.ws9{word-spacing:0.000000pt;}
.wse{word-spacing:0.048000pt;}
.wsce{word-spacing:0.062400pt;}
.ws9e{word-spacing:0.078404pt;}
.wse2{word-spacing:0.080000pt;}
.ws9c{word-spacing:0.083939pt;}
.ws4c{word-spacing:0.096000pt;}
.ws9d{word-spacing:0.117606pt;}
.wsde{word-spacing:0.120000pt;}
.ws3d{word-spacing:0.144000pt;}
.wsdf{word-spacing:0.160000pt;}
.ws29{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.240000pt;}
.ws30{word-spacing:0.288000pt;}
.wsc7{word-spacing:0.336000pt;}
.wsba{word-spacing:0.395147pt;}
.ws96{word-spacing:0.432000pt;}
.ws35{word-spacing:0.480000pt;}
.ws13{word-spacing:0.528000pt;}
.ws95{word-spacing:0.576000pt;}
.ws98{word-spacing:0.624000pt;}
.wsc0{word-spacing:0.634624pt;}
.wsa3{word-spacing:0.672121pt;}
.ws34{word-spacing:0.720000pt;}
.ws33{word-spacing:0.768000pt;}
.wsdc{word-spacing:0.840000pt;}
.ws1a{word-spacing:0.864000pt;}
.wsd2{word-spacing:0.880000pt;}
.wsaf{word-spacing:0.911254pt;}
.ws11{word-spacing:0.912000pt;}
.wsd1{word-spacing:0.920000pt;}
.ws4e{word-spacing:1.008000pt;}
.ws19{word-spacing:1.056000pt;}
.wsd9{word-spacing:1.080000pt;}
.ws12{word-spacing:1.104000pt;}
.wsbf{word-spacing:1.110592pt;}
.wsb7{word-spacing:1.146559pt;}
.ws1b{word-spacing:1.152000pt;}
.ws44{word-spacing:1.200000pt;}
.ws51{word-spacing:1.248000pt;}
.ws27{word-spacing:1.296000pt;}
.ws39{word-spacing:1.344000pt;}
.ws10{word-spacing:1.488000pt;}
.wsa4{word-spacing:1.502388pt;}
.ws4f{word-spacing:1.536000pt;}
.wsb0{word-spacing:1.545170pt;}
.ws47{word-spacing:1.584000pt;}
.wsa9{word-spacing:1.586560pt;}
.ws18{word-spacing:1.680000pt;}
.ws94{word-spacing:1.776000pt;}
.ws4a{word-spacing:1.824000pt;}
.ws38{word-spacing:1.920000pt;}
.ws3b{word-spacing:2.256000pt;}
.ws4b{word-spacing:2.448000pt;}
.wse6{word-spacing:2.688000pt;}
.wse7{word-spacing:2.784000pt;}
.wse4{word-spacing:2.832000pt;}
.wse5{word-spacing:2.976000pt;}
.ws3c{word-spacing:3.744000pt;}
.wsae{word-spacing:4.080833pt;}
.ws46{word-spacing:4.128000pt;}
.wsa2{word-spacing:4.151336pt;}
.wsa8{word-spacing:4.164720pt;}
.ws7a{word-spacing:4.592000pt;}
.wsea{word-spacing:5.040000pt;}
.wseb{word-spacing:5.568000pt;}
.wse8{word-spacing:5.760000pt;}
.wse9{word-spacing:6.000000pt;}
.ws1c{word-spacing:7.253333pt;}
.ws37{word-spacing:9.888000pt;}
.ws1d{word-spacing:10.018667pt;}
.ws41{word-spacing:10.807440pt;}
.ws28{word-spacing:13.584000pt;}
.ws43{word-spacing:18.636830pt;}
.ws55{word-spacing:57.642662pt;}
.ws7d{word-spacing:81.913059pt;}
.ws52{word-spacing:93.333329pt;}
.ws84{word-spacing:122.345059pt;}
.ws8b{word-spacing:138.779461pt;}
.ws6a{word-spacing:140.447995pt;}
.ws82{word-spacing:143.699726pt;}
.ws76{word-spacing:148.553059pt;}
.ws67{word-spacing:154.074662pt;}
.ws57{word-spacing:159.043726pt;}
.ws71{word-spacing:159.376000pt;}
.ws5b{word-spacing:162.366392pt;}
.ws58{word-spacing:172.741328pt;}
.ws91{word-spacing:181.752734pt;}
.ws86{word-spacing:190.814392pt;}
.ws8f{word-spacing:225.577223pt;}
.wsb2{word-spacing:233.109329pt;}
.ws54{word-spacing:233.333317pt;}
.ws80{word-spacing:239.008000pt;}
.ws5d{word-spacing:239.978667pt;}
.ws74{word-spacing:241.173333pt;}
.ws6e{word-spacing:243.824000pt;}
.ws73{word-spacing:243.898659pt;}
.ws85{word-spacing:244.720000pt;}
.ws60{word-spacing:245.989333pt;}
.ws87{word-spacing:245.993067pt;}
.ws63{word-spacing:247.893333pt;}
.ws83{word-spacing:250.208000pt;}
.ws65{word-spacing:250.730667pt;}
.ws70{word-spacing:251.216000pt;}
.ws59{word-spacing:251.626667pt;}
.ws62{word-spacing:251.738667pt;}
.ws61{word-spacing:252.186667pt;}
.ws7f{word-spacing:253.157333pt;}
.ws69{word-spacing:256.069333pt;}
.ws7e{word-spacing:257.040000pt;}
.ws6b{word-spacing:258.197333pt;}
.ws68{word-spacing:258.981326pt;}
.ws6d{word-spacing:259.354667pt;}
.ws5c{word-spacing:260.142400pt;}
.ws5e{word-spacing:261.296000pt;}
.ws7c{word-spacing:261.557326pt;}
.ws6c{word-spacing:265.216000pt;}
.ws64{word-spacing:267.232000pt;}
.ws5f{word-spacing:270.931733pt;}
.ws72{word-spacing:272.835733pt;}
.ws6f{word-spacing:273.205333pt;}
.ws56{word-spacing:296.912000pt;}
.ws5a{word-spacing:301.167992pt;}
.ws77{word-spacing:324.613326pt;}
.ws66{word-spacing:337.978659pt;}
.ws81{word-spacing:670.469328pt;}
.wsb1{word-spacing:674.127970pt;}
.wsb3{word-spacing:714.746637pt;}
._3a{margin-left:-985.456511pt;}
._37{margin-left:-174.314833pt;}
._38{margin-left:-150.780629pt;}
._39{margin-left:-139.034805pt;}
._3f{margin-left:-112.596224pt;}
._3c{margin-left:-111.604178pt;}
._3e{margin-left:-102.144182pt;}
._3d{margin-left:-101.134533pt;}
._13{margin-left:-18.624006pt;}
._7{margin-left:-13.252806pt;}
._12{margin-left:-12.054357pt;}
._9{margin-left:-10.091858pt;}
._5{margin-left:-8.936591pt;}
._15{margin-left:-6.719004pt;}
._6{margin-left:-5.275200pt;}
._4{margin-left:-4.128000pt;}
._2{margin-left:-3.107225pt;}
._0{margin-left:-1.668267pt;}
._3{width:0.921619pt;}
._8{width:2.582324pt;}
._19{width:3.933347pt;}
._b{width:5.213333pt;}
._a{width:7.285067pt;}
._17{width:8.366384pt;}
._c{width:10.263467pt;}
._d{width:11.183734pt;}
._11{width:12.656467pt;}
._10{width:13.574406pt;}
._f{width:14.715225pt;}
._e{width:15.921031pt;}
._18{width:27.236868pt;}
._33{width:33.625592pt;}
._14{width:42.354085pt;}
._16{width:48.906648pt;}
._1f{width:66.117329pt;}
._1b{width:80.901333pt;}
._42{width:91.242643pt;}
._20{width:94.416000pt;}
._45{width:146.782929pt;}
._2f{width:151.909326pt;}
._22{width:163.520000pt;}
._1d{width:167.850667pt;}
._40{width:175.331170pt;}
._1a{width:188.906667pt;}
._25{width:239.381326pt;}
._23{width:245.848558pt;}
._35{width:247.981867pt;}
._29{width:252.237867pt;}
._30{width:253.705592pt;}
._1e{width:255.310933pt;}
._31{width:257.252267pt;}
._32{width:258.521600pt;}
._24{width:260.537600pt;}
._27{width:265.577581pt;}
._2c{width:268.538667pt;}
._21{width:270.218667pt;}
._41{width:277.148758pt;}
._1{width:282.542933pt;}
._26{width:303.072000pt;}
._36{width:329.317333pt;}
._2a{width:333.311992pt;}
._34{width:353.770650pt;}
._2e{width:360.825285pt;}
._1c{width:362.282650pt;}
._28{width:377.884240pt;}
._2d{width:379.283192pt;}
._2b{width:380.202650pt;}
._43{width:519.194637pt;}
._3b{width:533.109390pt;}
._44{width:639.482637pt;}
._46{width:726.954637pt;}
.fsc{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs11{font-size:31.477333pt;}
.fs3{font-size:34.666667pt;}
.fsf{font-size:35.074132pt;}
.fs18{font-size:35.978133pt;}
.fs20{font-size:36.053866pt;}
.fs1c{font-size:36.093867pt;}
.fsb{font-size:37.333333pt;}
.fs15{font-size:39.202133pt;}
.fs1a{font-size:39.514667pt;}
.fs19{font-size:39.536532pt;}
.fs21{font-size:39.619733pt;}
.fs22{font-size:39.622932pt;}
.fs1d{font-size:39.663999pt;}
.fs1e{font-size:39.672533pt;}
.fs23{font-size:40.000000pt;}
.fs10{font-size:41.969599pt;}
.fsd{font-size:42.557332pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs14{font-size:45.735467pt;}
.fse{font-size:46.766398pt;}
.fs13{font-size:47.913600pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.033066pt;}
.fs16{font-size:52.269333pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs1f{font-size:64.000000pt;}
.fs1b{font-size:64.002665pt;}
.fs12{font-size:78.403732pt;}
.fs17{font-size:87.115200pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:2.843733pt;}
.y33{bottom:2.843867pt;}
.ycf{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y19a{bottom:3.730143pt;}
.ycc{bottom:4.226807pt;}
.yce{bottom:13.958496pt;}
.y193{bottom:22.835449pt;}
.y32{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y89{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y31{bottom:60.477735pt;}
.yca{bottom:60.713339pt;}
.y87{bottom:61.409995pt;}
.y3e{bottom:63.889468pt;}
.y154{bottom:64.560135pt;}
.y1a0{bottom:73.567200pt;}
.y30{bottom:73.811069pt;}
.yc9{bottom:74.045339pt;}
.y86{bottom:74.741995pt;}
.y3d{bottom:77.221468pt;}
.y153{bottom:77.892135pt;}
.y1e7{bottom:81.910132pt;}
.y10b{bottom:82.717187pt;}
.y19f{bottom:86.899200pt;}
.y2f{bottom:87.144402pt;}
.yc8{bottom:87.377339pt;}
.y85{bottom:88.079328pt;}
.y3c{bottom:90.553468pt;}
.y152{bottom:91.224135pt;}
.y1e6{bottom:93.240132pt;}
.y10a{bottom:98.303854pt;}
.y2e{bottom:100.477735pt;}
.yc7{bottom:100.709339pt;}
.y84{bottom:101.411328pt;}
.y3b{bottom:103.885468pt;}
.y151{bottom:104.556135pt;}
.y1e5{bottom:104.570132pt;}
.y2d{bottom:113.811069pt;}
.y109{bottom:113.890520pt;}
.yc6{bottom:114.041339pt;}
.y83{bottom:114.743328pt;}
.y1e4{bottom:115.900132pt;}
.y1a6{bottom:115.927200pt;}
.y3a{bottom:117.220135pt;}
.y150{bottom:117.888135pt;}
.y1e3{bottom:127.230132pt;}
.yc5{bottom:127.373339pt;}
.y82{bottom:128.075328pt;}
.y108{bottom:129.477187pt;}
.y39{bottom:130.552135pt;}
.y2c{bottom:131.105733pt;}
.y14f{bottom:131.220135pt;}
.y1a5{bottom:131.513867pt;}
.y10f{bottom:134.462535pt;}
.y1e2{bottom:138.560132pt;}
.yc4{bottom:140.705339pt;}
.y81{bottom:141.407328pt;}
.y38{bottom:143.888135pt;}
.y14e{bottom:144.552135pt;}
.y107{bottom:145.063854pt;}
.y1a4{bottom:147.100533pt;}
.y10e{bottom:147.795869pt;}
.y1e1{bottom:149.890132pt;}
.y106{bottom:150.057187pt;}
.yc3{bottom:154.037339pt;}
.y37{bottom:157.220135pt;}
.y14d{bottom:157.885468pt;}
.y10d{bottom:161.129202pt;}
.y1e0{bottom:161.220132pt;}
.y1a3{bottom:162.687200pt;}
.yc2{bottom:167.369339pt;}
.y36{bottom:170.552135pt;}
.y105{bottom:170.646520pt;}
.y80{bottom:170.744662pt;}
.y14c{bottom:171.220135pt;}
.y1df{bottom:172.550132pt;}
.y10c{bottom:174.461202pt;}
.y1a2{bottom:178.273867pt;}
.y19c{bottom:179.530151pt;}
.yc1{bottom:180.701339pt;}
.y1de{bottom:183.880132pt;}
.y35{bottom:183.884135pt;}
.y7f{bottom:184.076662pt;}
.y14b{bottom:184.552135pt;}
.y104{bottom:186.233187pt;}
.y2a{bottom:186.733605pt;}
.y1a1{bottom:193.860533pt;}
.yc0{bottom:194.033339pt;}
.y1dd{bottom:195.210132pt;}
.y7e{bottom:197.408662pt;}
.y14a{bottom:197.884135pt;}
.y29{bottom:200.065605pt;}
.y103{bottom:201.819854pt;}
.y140{bottom:204.174541pt;}
.y1dc{bottom:206.540132pt;}
.ybf{bottom:207.365339pt;}
.y13f{bottom:209.167874pt;}
.y7d{bottom:210.744662pt;}
.y149{bottom:211.217468pt;}
.y28{bottom:213.397605pt;}
.y102{bottom:217.406520pt;}
.y1db{bottom:217.870132pt;}
.ybe{bottom:220.697339pt;}
.y7c{bottom:224.076662pt;}
.y188{bottom:226.267456pt;}
.y27{bottom:226.729605pt;}
.y1da{bottom:229.200132pt;}
.y13e{bottom:229.757207pt;}
.y101{bottom:232.993187pt;}
.ybd{bottom:234.029339pt;}
.y47{bottom:236.038784pt;}
.y7b{bottom:237.408662pt;}
.y26{bottom:240.065605pt;}
.y1d9{bottom:240.530132pt;}
.y148{bottom:240.558802pt;}
.y13d{bottom:245.343874pt;}
.ybc{bottom:247.361339pt;}
.y100{bottom:248.579854pt;}
.y46{bottom:249.370784pt;}
.y7a{bottom:250.740662pt;}
.y1d8{bottom:251.860132pt;}
.y25{bottom:253.397605pt;}
.y147{bottom:253.890802pt;}
.ybb{bottom:260.718652pt;}
.y157{bottom:260.915853pt;}
.y13c{bottom:260.930541pt;}
.y45{bottom:262.702784pt;}
.y1d7{bottom:263.190132pt;}
.yff{bottom:264.166520pt;}
.y13b{bottom:265.923874pt;}
.y24{bottom:266.729605pt;}
.y146{bottom:267.222802pt;}
.yba{bottom:274.050652pt;}
.y1d6{bottom:274.520132pt;}
.y44{bottom:276.034784pt;}
.yfe{bottom:279.753187pt;}
.y23{bottom:280.065605pt;}
.y79{bottom:280.091349pt;}
.y145{bottom:280.554802pt;}
.y1d5{bottom:285.850132pt;}
.y13a{bottom:286.513207pt;}
.yb9{bottom:287.382652pt;}
.y43{bottom:289.366784pt;}
.y22{bottom:293.397605pt;}
.y78{bottom:293.423349pt;}
.y144{bottom:293.886802pt;}
.yfd{bottom:295.339854pt;}
.y1d4{bottom:297.180132pt;}
.yb8{bottom:300.714652pt;}
.y139{bottom:302.099874pt;}
.y42{bottom:302.698784pt;}
.y21{bottom:306.729605pt;}
.y77{bottom:306.755349pt;}
.y143{bottom:307.218802pt;}
.y1d3{bottom:308.510132pt;}
.yfc{bottom:310.926520pt;}
.yb7{bottom:314.046652pt;}
.y41{bottom:316.030784pt;}
.y138{bottom:317.647064pt;}
.y1d2{bottom:319.840132pt;}
.y20{bottom:320.065605pt;}
.y76{bottom:320.087349pt;}
.y142{bottom:320.552135pt;}
.yfb{bottom:326.513187pt;}
.yb6{bottom:327.378652pt;}
.y40{bottom:329.362784pt;}
.y19e{bottom:330.550284pt;}
.y1d1{bottom:331.170132pt;}
.y137{bottom:333.233731pt;}
.y1f{bottom:333.397605pt;}
.y75{bottom:333.419349pt;}
.y141{bottom:333.884135pt;}
.yb5{bottom:340.710652pt;}
.yfa{bottom:342.044398pt;}
.y1d0{bottom:342.500132pt;}
.y3f{bottom:342.694784pt;}
.y19d{bottom:343.882284pt;}
.y1e{bottom:346.729605pt;}
.y74{bottom:346.751349pt;}
.y136{bottom:348.820398pt;}
.y1cf{bottom:353.830132pt;}
.yb4{bottom:354.042652pt;}
.yf9{bottom:357.631064pt;}
.y73{bottom:360.083349pt;}
.y1d{bottom:360.108280pt;}
.y135{bottom:364.407064pt;}
.y1ce{bottom:365.160132pt;}
.yb3{bottom:367.374652pt;}
.y185{bottom:367.723999pt;}
.yf8{bottom:373.217731pt;}
.y72{bottom:373.415349pt;}
.y1c{bottom:373.440280pt;}
.y1cd{bottom:376.490132pt;}
.y134{bottom:379.993731pt;}
.yb2{bottom:380.706652pt;}
.y17b{bottom:381.525209pt;}
.y71{bottom:386.747349pt;}
.y1cc{bottom:387.820132pt;}
.yf7{bottom:388.804398pt;}
.y133{bottom:389.989731pt;}
.y192{bottom:390.559448pt;}
.yb1{bottom:394.038652pt;}
.y17a{bottom:394.857209pt;}
.y1cb{bottom:399.150132pt;}
.y70{bottom:400.079349pt;}
.y194{bottom:400.880819pt;}
.yf6{bottom:404.391064pt;}
.yb0{bottom:407.370652pt;}
.y179{bottom:408.197209pt;}
.y1ca{bottom:410.480132pt;}
.y6f{bottom:413.411349pt;}
.y1b{bottom:413.568280pt;}
.y132{bottom:415.572398pt;}
.yf5{bottom:419.977731pt;}
.yaf{bottom:420.702652pt;}
.y178{bottom:421.529209pt;}
.y1c9{bottom:421.810132pt;}
.y19b{bottom:425.538127pt;}
.y20a{bottom:426.588662pt;}
.y6e{bottom:426.743349pt;}
.y1a{bottom:428.232280pt;}
.y195{bottom:429.291265pt;}
.y131{bottom:431.159064pt;}
.y1c8{bottom:433.140132pt;}
.yae{bottom:434.034652pt;}
.y177{bottom:434.861209pt;}
.yf4{bottom:435.564398pt;}
.y130{bottom:436.152398pt;}
.y6d{bottom:440.075349pt;}
.y19{bottom:442.896280pt;}
.y1c7{bottom:444.470132pt;}
.y164{bottom:444.821045pt;}
.yad{bottom:447.366652pt;}
.y176{bottom:448.193209pt;}
.yf3{bottom:451.151064pt;}
.y209{bottom:453.252660pt;}
.y6c{bottom:453.407349pt;}
.y166{bottom:454.011719pt;}
.y1c6{bottom:455.800132pt;}
.y12f{bottom:456.741731pt;}
.y18{bottom:457.560280pt;}
.y196{bottom:457.728752pt;}
.yac{bottom:460.698652pt;}
.y175{bottom:461.525209pt;}
.y208{bottom:466.584660pt;}
.yf2{bottom:466.737731pt;}
.y1c5{bottom:467.130132pt;}
.y17{bottom:472.224280pt;}
.y12e{bottom:472.328398pt;}
.yab{bottom:474.030652pt;}
.y174{bottom:474.857209pt;}
.y1c4{bottom:478.460132pt;}
.y207{bottom:479.916660pt;}
.yf1{bottom:482.324398pt;}
.y6b{bottom:482.751349pt;}
.y197{bottom:486.166239pt;}
.y16{bottom:486.888280pt;}
.yaa{bottom:487.362652pt;}
.y12d{bottom:487.915064pt;}
.y173{bottom:488.189209pt;}
.y1c3{bottom:489.790132pt;}
.y206{bottom:493.248660pt;}
.y6a{bottom:496.083349pt;}
.yf0{bottom:497.911064pt;}
.ya9{bottom:500.694652pt;}
.y1c2{bottom:501.120132pt;}
.y15{bottom:501.552280pt;}
.y12c{bottom:503.501731pt;}
.y205{bottom:506.580660pt;}
.y69{bottom:509.415349pt;}
.y156{bottom:512.031982pt;}
.y1c1{bottom:512.450132pt;}
.yef{bottom:513.497731pt;}
.ya8{bottom:514.029319pt;}
.y198{bottom:514.603726pt;}
.y14{bottom:516.216280pt;}
.y12b{bottom:519.088398pt;}
.y204{bottom:519.912660pt;}
.y68{bottom:522.747349pt;}
.y1c0{bottom:523.780132pt;}
.ya7{bottom:527.361319pt;}
.yee{bottom:529.084398pt;}
.y13{bottom:530.880280pt;}
.y203{bottom:533.244660pt;}
.y12a{bottom:534.675064pt;}
.y1bf{bottom:535.110132pt;}
.y67{bottom:536.079349pt;}
.ya6{bottom:540.710693pt;}
.y199{bottom:543.014172pt;}
.yed{bottom:544.671064pt;}
.y12{bottom:545.544280pt;}
.y1be{bottom:546.440132pt;}
.y202{bottom:546.576660pt;}
.y66{bottom:549.411349pt;}
.y129{bottom:550.261731pt;}
.ya5{bottom:554.042693pt;}
.y1bd{bottom:557.770132pt;}
.y11{bottom:560.208280pt;}
.yec{bottom:560.257731pt;}
.y65{bottom:562.743349pt;}
.y128{bottom:565.848398pt;}
.y201{bottom:566.567449pt;}
.ya4{bottom:567.374693pt;}
.y1bc{bottom:569.100132pt;}
.y18f{bottom:574.835449pt;}
.y10{bottom:574.872280pt;}
.yeb{bottom:575.844398pt;}
.y64{bottom:576.075349pt;}
.y200{bottom:579.899449pt;}
.y1bb{bottom:580.430132pt;}
.ya3{bottom:580.706693pt;}
.y127{bottom:581.435064pt;}
.y63{bottom:589.407349pt;}
.yf{bottom:589.536280pt;}
.yea{bottom:591.431064pt;}
.y1ba{bottom:591.760132pt;}
.y187{bottom:593.991455pt;}
.ya2{bottom:594.038693pt;}
.y186{bottom:594.365601pt;}
.y126{bottom:597.021731pt;}
.y1ff{bottom:599.903449pt;}
.y1b9{bottom:603.093465pt;}
.ye{bottom:604.200280pt;}
.y189{bottom:604.288818pt;}
.ye9{bottom:607.017731pt;}
.ya1{bottom:607.370693pt;}
.y125{bottom:612.608398pt;}
.y62{bottom:618.740682pt;}
.yd{bottom:618.864280pt;}
.y1fe{bottom:619.907449pt;}
.ya0{bottom:620.702693pt;}
.ye8{bottom:622.604398pt;}
.y124{bottom:628.195064pt;}
.y61{bottom:632.074015pt;}
.y18a{bottom:632.748832pt;}
.yc{bottom:633.528280pt;}
.y9f{bottom:634.034693pt;}
.y190{bottom:637.608805pt;}
.ye7{bottom:638.191064pt;}
.y1fd{bottom:639.911449pt;}
.y123{bottom:643.781731pt;}
.y1b8{bottom:647.093465pt;}
.y9e{bottom:647.366693pt;}
.y1fc{bottom:653.243449pt;}
.ye6{bottom:653.777731pt;}
.y122{bottom:659.368398pt;}
.yb{bottom:660.194946pt;}
.y9d{bottom:660.698693pt;}
.y18b{bottom:661.208846pt;}
.y60{bottom:661.425975pt;}
.y1fb{bottom:666.576782pt;}
.ye5{bottom:669.364398pt;}
.y9c{bottom:674.030693pt;}
.y5f{bottom:674.757975pt;}
.y121{bottom:674.955064pt;}
.ya{bottom:676.194906pt;}
.ye4{bottom:684.951064pt;}
.y1b7{bottom:687.097506pt;}
.y9b{bottom:687.362693pt;}
.y5e{bottom:688.089975pt;}
.y18c{bottom:689.668860pt;}
.y120{bottom:690.541731pt;}
.y9{bottom:692.194906pt;}
.y1fa{bottom:693.243490pt;}
.y1b6{bottom:700.429506pt;}
.ye3{bottom:700.537731pt;}
.y9a{bottom:700.694693pt;}
.y165{bottom:700.839844pt;}
.y5d{bottom:701.421975pt;}
.y11f{bottom:706.128398pt;}
.y1f9{bottom:706.576823pt;}
.y1b5{bottom:713.761506pt;}
.y99{bottom:714.026693pt;}
.y5c{bottom:714.753975pt;}
.ye2{bottom:716.124398pt;}
.y18d{bottom:718.128874pt;}
.y8{bottom:721.512239pt;}
.y11e{bottom:721.715064pt;}
.y1b4{bottom:727.108173pt;}
.y98{bottom:727.360026pt;}
.y5b{bottom:728.085975pt;}
.ye1{bottom:731.711064pt;}
.y1f8{bottom:734.554030pt;}
.y15f{bottom:735.879883pt;}
.y15d{bottom:735.884855pt;}
.y11d{bottom:737.301731pt;}
.y171{bottom:739.190322pt;}
.y1b3{bottom:740.440173pt;}
.y5a{bottom:741.417975pt;}
.y15e{bottom:741.498535pt;}
.y18e{bottom:746.588888pt;}
.ye0{bottom:747.297731pt;}
.y1f7{bottom:747.886030pt;}
.y11c{bottom:752.888398pt;}
.y15c{bottom:753.410563pt;}
.y1b2{bottom:753.772173pt;}
.y59{bottom:754.749975pt;}
.y191{bottom:756.310140pt;}
.y97{bottom:756.698839pt;}
.y1f6{bottom:761.218030pt;}
.y7{bottom:761.517572pt;}
.ydf{bottom:762.884398pt;}
.y170{bottom:766.543609pt;}
.y1b1{bottom:767.104173pt;}
.y58{bottom:768.081975pt;}
.y11b{bottom:768.475064pt;}
.y96{bottom:770.030839pt;}
.y155{bottom:772.947835pt;}
.y1f5{bottom:774.550030pt;}
.yde{bottom:778.471064pt;}
.y1b0{bottom:780.436173pt;}
.y183{bottom:781.243490pt;}
.y57{bottom:781.413975pt;}
.y95{bottom:783.362839pt;}
.y11a{bottom:784.061731pt;}
.y158{bottom:785.099772pt;}
.y1f4{bottom:787.882030pt;}
.y1af{bottom:793.768173pt;}
.ydd{bottom:794.057731pt;}
.y56{bottom:794.745975pt;}
.y16f{bottom:795.729597pt;}
.y119{bottom:799.648398pt;}
.y17c{bottom:800.320800pt;}
.y1f3{bottom:801.214030pt;}
.y6{bottom:801.522906pt;}
.ycb{bottom:803.360026pt;}
.y1ae{bottom:807.100173pt;}
.ycd{bottom:807.586833pt;}
.y55{bottom:808.077975pt;}
.ydc{bottom:809.644398pt;}
.y17d{bottom:810.592773pt;}
.y16e{bottom:812.125890pt;}
.y1f2{bottom:814.547363pt;}
.y118{bottom:815.235064pt;}
.y160{bottom:819.946370pt;}
.y1ad{bottom:820.432173pt;}
.y54{bottom:821.409975pt;}
.y172{bottom:825.047852pt;}
.ydb{bottom:825.231064pt;}
.y117{bottom:830.821731pt;}
.y94{bottom:831.098839pt;}
.y159{bottom:831.859641pt;}
.y1ac{bottom:833.764173pt;}
.y53{bottom:834.741975pt;}
.y17e{bottom:838.970526pt;}
.yda{bottom:840.817731pt;}
.y1f1{bottom:841.219363pt;}
.y5{bottom:841.528239pt;}
.y161{bottom:843.668626pt;}
.y184{bottom:843.811035pt;}
.y93{bottom:844.430839pt;}
.y16d{bottom:844.947876pt;}
.y116{bottom:846.408398pt;}
.y1ab{bottom:847.096173pt;}
.y52{bottom:848.076641pt;}
.y2b{bottom:848.326009pt;}
.y1f0{bottom:854.551363pt;}
.yd9{bottom:856.404398pt;}
.y92{bottom:857.762839pt;}
.y1aa{bottom:860.428173pt;}
.y51{bottom:861.408641pt;}
.y115{bottom:861.995064pt;}
.y16c{bottom:862.285019pt;}
.y162{bottom:866.118000pt;}
.y17f{bottom:867.330290pt;}
.y1ef{bottom:867.883363pt;}
.y163{bottom:871.038493pt;}
.y91{bottom:871.094839pt;}
.yd8{bottom:871.991064pt;}
.y1a9{bottom:873.761506pt;}
.y50{bottom:874.741975pt;}
.y114{bottom:877.581731pt;}
.y15a{bottom:878.640787pt;}
.y16b{bottom:879.602562pt;}
.y1ee{bottom:881.215363pt;}
.y90{bottom:884.426839pt;}
.y1a8{bottom:887.101506pt;}
.yd7{bottom:887.577731pt;}
.y4f{bottom:888.076641pt;}
.y16a{bottom:888.726858pt;}
.y113{bottom:893.168398pt;}
.y1ed{bottom:894.547363pt;}
.y180{bottom:895.708042pt;}
.y169{bottom:897.831554pt;}
.y1a7{bottom:900.433506pt;}
.y4e{bottom:901.408641pt;}
.yd6{bottom:903.164398pt;}
.y1ec{bottom:907.880697pt;}
.y112{bottom:908.755064pt;}
.y168{bottom:909.092367pt;}
.y8f{bottom:913.765506pt;}
.y4d{bottom:914.744641pt;}
.yd5{bottom:918.751064pt;}
.y181{bottom:924.067806pt;}
.y111{bottom:924.341731pt;}
.y15b{bottom:925.400656pt;}
.y8e{bottom:927.097506pt;}
.y4c{bottom:928.076641pt;}
.y110{bottom:929.335064pt;}
.yd4{bottom:934.337731pt;}
.y1eb{bottom:934.557363pt;}
.y8d{bottom:940.429506pt;}
.y4b{bottom:941.408641pt;}
.y1ea{bottom:945.887363pt;}
.y167{bottom:949.709066pt;}
.yd3{bottom:949.924398pt;}
.yd0{bottom:949.924561pt;}
.yd1{bottom:949.928561pt;}
.y182{bottom:952.445559pt;}
.y8c{bottom:953.761506pt;}
.y4a{bottom:954.741975pt;}
.y1e9{bottom:957.217363pt;}
.yd2{bottom:965.509766pt;}
.y8b{bottom:967.093506pt;}
.y49{bottom:968.073975pt;}
.y1e8{bottom:968.547363pt;}
.y48{bottom:1013.902507pt;}
.y8a{bottom:1013.996908pt;}
.y34{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h26{height:1.921323pt;}
.h23{height:14.400000pt;}
.h25{height:22.143243pt;}
.h3a{height:22.915499pt;}
.h38{height:25.533968pt;}
.h41{height:25.904256pt;}
.h4a{height:26.283268pt;}
.h46{height:26.312429pt;}
.h3e{height:27.088674pt;}
.h12{height:27.275268pt;}
.h43{height:28.806192pt;}
.h42{height:28.822132pt;}
.h4b{height:28.882786pt;}
.h4c{height:28.885118pt;}
.h47{height:28.915055pt;}
.h48{height:28.921277pt;}
.h39{height:30.553868pt;}
.h35{height:30.641279pt;}
.h2{height:30.687500pt;}
.h50{height:31.476562pt;}
.h3d{height:31.603207pt;}
.h27{height:32.278220pt;}
.h3c{height:33.108298pt;}
.h24{height:33.623146pt;}
.h37{height:34.045938pt;}
.h9{height:34.523438pt;}
.h2f{height:36.922667pt;}
.h2b{height:37.408000pt;}
.h29{height:38.229333pt;}
.h2c{height:38.451156pt;}
.h2a{height:38.528000pt;}
.h52{height:39.560000pt;}
.h53{height:40.080000pt;}
.h3{height:40.604167pt;}
.h51{height:40.960000pt;}
.h1c{height:42.195312pt;}
.h13{height:43.120594pt;}
.h14{height:43.141927pt;}
.h8{height:43.600423pt;}
.h7{height:43.718750pt;}
.h15{height:43.887578pt;}
.h54{height:44.834667pt;}
.ha{height:45.703125pt;}
.h49{height:46.656000pt;}
.h45{height:46.657943pt;}
.hb{height:47.472000pt;}
.h22{height:47.555515pt;}
.h20{height:47.587434pt;}
.h4f{height:47.597938pt;}
.h4d{height:47.624605pt;}
.h10{height:47.635434pt;}
.hd{height:47.640767pt;}
.h16{height:47.640808pt;}
.h1d{height:47.640849pt;}
.h1a{height:47.641581pt;}
.h33{height:47.646101pt;}
.h17{height:47.646141pt;}
.h1f{height:47.646162pt;}
.h21{height:47.646264pt;}
.h1b{height:47.646915pt;}
.h32{height:47.650946pt;}
.h4e{height:47.651271pt;}
.h34{height:47.651475pt;}
.h19{height:47.652248pt;}
.hc{height:47.909301pt;}
.h1e{height:48.074667pt;}
.hf{height:48.080000pt;}
.he{height:48.096000pt;}
.h40{height:49.120000pt;}
.h18{height:49.152000pt;}
.h4{height:50.755208pt;}
.h3b{height:54.176979pt;}
.h2d{height:56.933333pt;}
.h2e{height:58.240000pt;}
.h3f{height:60.806410pt;}
.h11{height:69.046875pt;}
.h30{height:76.906667pt;}
.h31{height:78.213333pt;}
.h28{height:78.229333pt;}
.h5{height:99.734375pt;}
.h6{height:132.031250pt;}
.h36{height:463.785319pt;}
.h44{height:608.093343pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w4{width:226.773336pt;}
.w2{width:295.026672pt;}
.w3{width:479.996012pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb{left:-1.311483pt;}
.x0{left:0.000000pt;}
.x33{left:3.267598pt;}
.x8{left:6.425200pt;}
.xd{left:34.736918pt;}
.x3{left:54.803202pt;}
.xf{left:57.368673pt;}
.x16{left:59.086400pt;}
.x3c{left:87.317078pt;}
.x7{left:125.685069pt;}
.x11{left:157.148905pt;}
.x3d{left:171.250936pt;}
.x13{left:172.292664pt;}
.x34{left:181.232666pt;}
.x17{left:197.000000pt;}
.x5{left:207.874003pt;}
.x36{left:208.788676pt;}
.x38{left:211.678019pt;}
.x32{left:218.589457pt;}
.x2c{left:219.808940pt;}
.x6{left:223.876282pt;}
.x30{left:226.409307pt;}
.x3b{left:227.836346pt;}
.x2f{left:231.425578pt;}
.x3a{left:232.884335pt;}
.x26{left:235.364665pt;}
.x2e{left:236.360942pt;}
.x39{left:237.851196pt;}
.x2d{left:243.679342pt;}
.x37{left:245.168274pt;}
.x28{left:257.812805pt;}
.x40{left:268.887736pt;}
.x15{left:280.856791pt;}
.x31{left:292.969076pt;}
.x27{left:295.729472pt;}
.xa{left:325.872009pt;}
.xc{left:346.520386pt;}
.x2b{left:360.216675pt;}
.xe{left:366.116781pt;}
.x29{left:385.284667pt;}
.x2a{left:387.479986pt;}
.x10{left:393.752686pt;}
.x35{left:422.207316pt;}
.x1b{left:427.498006pt;}
.x23{left:449.808675pt;}
.x25{left:459.894002pt;}
.x24{left:464.623944pt;}
.x1e{left:470.068196pt;}
.x1d{left:475.426303pt;}
.x1c{left:480.670003pt;}
.x1a{left:488.423340pt;}
.x12{left:490.520915pt;}
.x14{left:503.672404pt;}
.x4{left:521.612549pt;}
.x19{left:535.686140pt;}
.x3e{left:552.648254pt;}
.x1f{left:556.940674pt;}
.x20{left:571.115906pt;}
.x21{left:591.264648pt;}
.x22{left:595.663330pt;}
.x18{left:634.892131pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x3f{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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