
    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_b556ab0b6f77d1f2a06f8afd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_f375eefd631b8b4ff787e2a1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2f648d162f4c6ea8bae4cd9e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_570e91ea28a5a1008bd5f563.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_999539ae483ba1f18f492b7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722168;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_142fe818ff1803d0c53241c6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_005fabd42673b4082e45b6be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_45554acfb3a80e0c634e6a7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6727d4052fe6be1b62fa4021.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.717285;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_5bbba96bb2c68c0715a4d03a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cd16c466217163319465e991.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_3111640e6da267bc29c5dd35.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bf836036b687570b348ce614.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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_023c0b7c064be3e73de58cc6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_23ac726df77a0837b38dcadc.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_a876330c1316945024c5b492.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.842285;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_1d826658d3f0d1078e2b3bd2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.822266;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_2867439f2b7922b88a1da992.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8edcf566af3133bca98bbbb2.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_00cb4913aeada254ae43b55d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.881836;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_860c25190274e92081a15437.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.741211;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_5bfa8a681df580009fb127a0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.999023;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_59b262e2be6abb20e5af9ecf.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_a6d758d5ff19062093d43297.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.933105;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_c97ddb0eeee62f6140c5ecc8.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_e9e68f2359796fb9dbb4d4c4.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_60f2c541c1c0e84a9493e8de.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_dce70aa5cb53cf065fdd420f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.900879;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_e53f31cf1a5f92a81de5e456.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_ef9244a1dde36a452188cac1.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_04620405222d1c23b6a78c2b.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_8f2e1ed15087bc748c4ec4cd.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_2f1afc712b9c45db232cb260.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.682129;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:ff22;src:url('chunks/assets/font_92f54d1475d14d537b81524d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.897949;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.185857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185857,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);}
.m4{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255438,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.315004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315004,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347410,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-87.456000px;}
.v19{vertical-align:-57.750000px;}
.v3{vertical-align:-48.924000px;}
.va{vertical-align:-34.712210px;}
.v1b{vertical-align:-27.000000px;}
.v1{vertical-align:-24.749400px;}
.v1a{vertical-align:-18.000000px;}
.v4{vertical-align:-14.650217px;}
.v5{vertical-align:-13.412642px;}
.v18{vertical-align:-10.032703px;}
.vd{vertical-align:-6.749760px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:4.500000px;}
.ve{vertical-align:8.999820px;}
.v8{vertical-align:14.388000px;}
.v10{vertical-align:25.199982px;}
.vc{vertical-align:33.000000px;}
.v9{vertical-align:34.712210px;}
.vf{vertical-align:36.000000px;}
.v6{vertical-align:43.200000px;}
.v13{vertical-align:45.600000px;}
.v12{vertical-align:50.400000px;}
.v7{vertical-align:51.741600px;}
.v15{vertical-align:70.799382px;}
.v16{vertical-align:74.400000px;}
.v17{vertical-align:75.600000px;}
.v14{vertical-align:96.000000px;}
.v11{vertical-align:132.000000px;}
.ls3e{letter-spacing:-41.587200px;}
.lsa1{letter-spacing:-11.458800px;}
.ls62{letter-spacing:-8.251200px;}
.ls80{letter-spacing:-8.010600px;}
.lsbc{letter-spacing:-6.811200px;}
.ls5f{letter-spacing:-6.753600px;}
.ls63{letter-spacing:-5.997600px;}
.ls5e{letter-spacing:-5.248800px;}
.ls60{letter-spacing:-4.500000px;}
.lsbd{letter-spacing:-2.685600px;}
.ls7c{letter-spacing:-2.604000px;}
.ls65{letter-spacing:-2.253600px;}
.ls39{letter-spacing:-1.870570px;}
.ls6d{letter-spacing:-1.624579px;}
.lsba{letter-spacing:-1.092000px;}
.ls6c{letter-spacing:-0.722035px;}
.ls6e{letter-spacing:-0.669490px;}
.ls41{letter-spacing:-0.060000px;}
.lsa{letter-spacing:-0.057600px;}
.ls3d{letter-spacing:-0.048000px;}
.ls3{letter-spacing:-0.043200px;}
.lsb8{letter-spacing:-0.038400px;}
.ls67{letter-spacing:-0.028800px;}
.ls11{letter-spacing:-0.025200px;}
.ls40{letter-spacing:-0.024000px;}
.ls8{letter-spacing:-0.021600px;}
.ls3c{letter-spacing:-0.019200px;}
.ls81{letter-spacing:-0.016800px;}
.ls82{letter-spacing:-0.015600px;}
.ls35{letter-spacing:-0.014400px;}
.lsbf{letter-spacing:-0.013200px;}
.ls14{letter-spacing:-0.010800px;}
.lsb9{letter-spacing:-0.009600px;}
.ls7e{letter-spacing:-0.008400px;}
.ls61{letter-spacing:-0.007200px;}
.ls2{letter-spacing:0.000000px;}
.lsb6{letter-spacing:0.000372px;}
.lsa6{letter-spacing:0.001140px;}
.lsd{letter-spacing:0.003360px;}
.lsab{letter-spacing:0.003720px;}
.ls3b{letter-spacing:0.004800px;}
.lsbb{letter-spacing:0.007200px;}
.ls74{letter-spacing:0.007800px;}
.lsaa{letter-spacing:0.008280px;}
.ls66{letter-spacing:0.008400px;}
.ls68{letter-spacing:0.009000px;}
.ls6f{letter-spacing:0.009600px;}
.lsb7{letter-spacing:0.010056px;}
.lsa0{letter-spacing:0.010800px;}
.ls77{letter-spacing:0.010968px;}
.ls7f{letter-spacing:0.011200px;}
.lsb0{letter-spacing:0.011880px;}
.lsa7{letter-spacing:0.012000px;}
.lsb5{letter-spacing:0.012096px;}
.ls69{letter-spacing:0.012171px;}
.lsae{letter-spacing:0.012360px;}
.ls6a{letter-spacing:0.012411px;}
.lsaf{letter-spacing:0.012600px;}
.lsb{letter-spacing:0.014340px;}
.ls9{letter-spacing:0.014400px;}
.ls9e{letter-spacing:0.015074px;}
.lsbe{letter-spacing:0.015600px;}
.ls1{letter-spacing:0.016800px;}
.ls75{letter-spacing:0.017976px;}
.lsa9{letter-spacing:0.018000px;}
.lsc0{letter-spacing:0.018600px;}
.lsf{letter-spacing:0.019200px;}
.ls6{letter-spacing:0.021600px;}
.lsad{letter-spacing:0.023040px;}
.ls72{letter-spacing:0.023400px;}
.ls4{letter-spacing:0.024000px;}
.ls64{letter-spacing:0.025200px;}
.ls70{letter-spacing:0.026400px;}
.ls10{letter-spacing:0.028800px;}
.ls8b{letter-spacing:0.033600px;}
.lsac{letter-spacing:0.034596px;}
.ls84{letter-spacing:0.038400px;}
.ls73{letter-spacing:0.039000px;}
.ls7d{letter-spacing:0.042000px;}
.ls3f{letter-spacing:0.043200px;}
.lsa8{letter-spacing:0.046140px;}
.ls6b{letter-spacing:0.048000px;}
.ls76{letter-spacing:0.050400px;}
.lse{letter-spacing:0.057600px;}
.ls94{letter-spacing:0.058440px;}
.ls42{letter-spacing:0.058800px;}
.ls83{letter-spacing:0.059640px;}
.ls9f{letter-spacing:0.064800px;}
.lsa5{letter-spacing:0.086400px;}
.ls3a{letter-spacing:1.382583px;}
.ls38{letter-spacing:1.385608px;}
.lsa3{letter-spacing:1.579200px;}
.ls37{letter-spacing:1.939851px;}
.ls36{letter-spacing:2.499423px;}
.ls7b{letter-spacing:7.839120px;}
.ls79{letter-spacing:12.338520px;}
.ls7a{letter-spacing:13.089720px;}
.ls78{letter-spacing:13.839120px;}
.ls1b{letter-spacing:42.907680px;}
.ls1f{letter-spacing:43.048560px;}
.ls52{letter-spacing:44.242980px;}
.ls51{letter-spacing:44.992380px;}
.ls4f{letter-spacing:44.992980px;}
.ls48{letter-spacing:45.564780px;}
.ls47{letter-spacing:46.341780px;}
.ls53{letter-spacing:47.241180px;}
.ls50{letter-spacing:47.990580px;}
.ls49{letter-spacing:49.451580px;}
.ls4a{letter-spacing:49.452180px;}
.ls5c{letter-spacing:51.867180px;}
.ls20{letter-spacing:52.117800px;}
.ls5b{letter-spacing:52.617780px;}
.ls59{letter-spacing:53.367180px;}
.ls5a{letter-spacing:57.116580px;}
.ls5d{letter-spacing:59.366580px;}
.ls71{letter-spacing:69.169020px;}
.ls44{letter-spacing:73.167960px;}
.ls4e{letter-spacing:74.541960px;}
.ls5{letter-spacing:76.968012px;}
.ls46{letter-spacing:77.055960px;}
.ls58{letter-spacing:82.910160px;}
.ls4c{letter-spacing:83.536560px;}
.ls45{letter-spacing:85.607160px;}
.ls4d{letter-spacing:85.784760px;}
.ls4b{letter-spacing:87.284160px;}
.ls26{letter-spacing:89.407080px;}
.ls56{letter-spacing:93.410160px;}
.ls57{letter-spacing:94.910160px;}
.ls55{letter-spacing:96.410160px;}
.ls33{letter-spacing:102.333360px;}
.ls43{letter-spacing:102.711960px;}
.ls1d{letter-spacing:112.094400px;}
.ls1a{letter-spacing:113.571720px;}
.ls9a{letter-spacing:114.225456px;}
.ls91{letter-spacing:117.524964px;}
.ls85{letter-spacing:143.630940px;}
.lsc{letter-spacing:145.775460px;}
.ls99{letter-spacing:151.887312px;}
.ls88{letter-spacing:156.653880px;}
.ls28{letter-spacing:159.380400px;}
.ls29{letter-spacing:160.071120px;}
.ls8d{letter-spacing:168.835500px;}
.ls9b{letter-spacing:170.710260px;}
.ls18{letter-spacing:170.911980px;}
.ls1e{letter-spacing:178.997880px;}
.ls9c{letter-spacing:190.965660px;}
.ls8a{letter-spacing:192.501528px;}
.ls9d{letter-spacing:193.358232px;}
.ls86{letter-spacing:194.101116px;}
.lsb4{letter-spacing:203.331240px;}
.ls25{letter-spacing:205.821600px;}
.ls1c{letter-spacing:207.052560px;}
.ls19{letter-spacing:207.895380px;}
.lsb3{letter-spacing:209.864640px;}
.ls32{letter-spacing:210.297960px;}
.ls8f{letter-spacing:217.500540px;}
.ls90{letter-spacing:221.387562px;}
.ls93{letter-spacing:223.283754px;}
.lsb2{letter-spacing:227.112720px;}
.ls12{letter-spacing:228.003780px;}
.ls96{letter-spacing:234.809148px;}
.ls8e{letter-spacing:245.422962px;}
.lsb1{letter-spacing:246.711120px;}
.ls98{letter-spacing:254.681220px;}
.ls13{letter-spacing:286.091460px;}
.ls17{letter-spacing:297.544380px;}
.ls34{letter-spacing:317.935200px;}
.ls2c{letter-spacing:322.200360px;}
.ls2d{letter-spacing:334.294140px;}
.ls24{letter-spacing:338.161380px;}
.ls2f{letter-spacing:342.274620px;}
.ls23{letter-spacing:344.043780px;}
.ls8c{letter-spacing:352.719762px;}
.ls97{letter-spacing:366.541980px;}
.ls2a{letter-spacing:392.301960px;}
.ls30{letter-spacing:394.305900px;}
.ls0{letter-spacing:399.456000px;}
.ls7{letter-spacing:401.976000px;}
.ls31{letter-spacing:427.270980px;}
.lsa4{letter-spacing:442.886100px;}
.ls27{letter-spacing:456.180900px;}
.ls2b{letter-spacing:471.145980px;}
.ls16{letter-spacing:493.996920px;}
.ls2e{letter-spacing:549.157680px;}
.ls15{letter-spacing:563.009640px;}
.ls87{letter-spacing:563.494782px;}
.ls89{letter-spacing:591.840840px;}
.ls92{letter-spacing:617.885760px;}
.ls95{letter-spacing:654.143580px;}
.ls21{letter-spacing:730.259040px;}
.lsa2{letter-spacing:748.300800px;}
.ls22{letter-spacing:757.247520px;}
.ls54{letter-spacing:816.226800px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-399.600000px;}
.ws40{word-spacing:-40.060800px;}
.ws14{word-spacing:-40.032000px;}
.ws3f{word-spacing:-40.003200px;}
.ws28{word-spacing:-33.384000px;}
.ws26{word-spacing:-33.360000px;}
.ws2f{word-spacing:-32.497200px;}
.ws7{word-spacing:-30.024000px;}
.ws44{word-spacing:-28.857600px;}
.ws42{word-spacing:-26.707200px;}
.ws13{word-spacing:-26.688000px;}
.ws2e{word-spacing:-25.326000px;}
.ws37{word-spacing:-25.317600px;}
.ws33{word-spacing:-25.300800px;}
.ws36{word-spacing:-25.284000px;}
.ws35{word-spacing:-25.275600px;}
.ws34{word-spacing:-25.267200px;}
.ws41{word-spacing:-24.000000px;}
.ws31{word-spacing:-23.478000px;}
.ws46{word-spacing:-21.699600px;}
.ws1c{word-spacing:-21.199798px;}
.ws38{word-spacing:-21.000000px;}
.ws1d{word-spacing:-20.645555px;}
.ws25{word-spacing:-20.030400px;}
.ws48{word-spacing:-20.016000px;}
.ws43{word-spacing:-19.263988px;}
.ws49{word-spacing:-18.348000px;}
.ws4a{word-spacing:-18.334800px;}
.ws19{word-spacing:-18.014400px;}
.ws1a{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.985600px;}
.ws1e{word-spacing:-17.389377px;}
.ws20{word-spacing:-14.636311px;}
.ws45{word-spacing:-14.448000px;}
.ws47{word-spacing:-13.344000px;}
.ws1f{word-spacing:-2.009131px;}
.ws3e{word-spacing:-0.230400px;}
.ws30{word-spacing:-0.222000px;}
.wsc{word-spacing:-0.201600px;}
.ws23{word-spacing:-0.187200px;}
.ws24{word-spacing:-0.172800px;}
.wsb{word-spacing:-0.168000px;}
.wsa{word-spacing:-0.158400px;}
.ws4c{word-spacing:-0.151200px;}
.ws1{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.120000px;}
.ws3{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.100800px;}
.ws22{word-spacing:-0.096000px;}
.ws9{word-spacing:-0.086400px;}
.ws15{word-spacing:-0.084000px;}
.wsd{word-spacing:-0.078244px;}
.ws32{word-spacing:-0.078000px;}
.ws21{word-spacing:-0.076800px;}
.ws27{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.071029px;}
.ws4{word-spacing:-0.064800px;}
.ws4b{word-spacing:-0.060000px;}
.wse{word-spacing:-0.058762px;}
.ws3d{word-spacing:-0.057600px;}
.ws16{word-spacing:-0.054000px;}
.ws39{word-spacing:-0.053583px;}
.ws10{word-spacing:-0.053379px;}
.ws3b{word-spacing:-0.053304px;}
.ws17{word-spacing:-0.043200px;}
.ws3a{word-spacing:-0.040241px;}
.ws3c{word-spacing:-0.040059px;}
.ws6{word-spacing:0.000000px;}
.ws29{word-spacing:0.631781px;}
.ws11{word-spacing:52.948380px;}
.ws12{word-spacing:70.597860px;}
.ws1b{word-spacing:162.995574px;}
.ws2b{word-spacing:251.562577px;}
.ws2a{word-spacing:252.469091px;}
.ws2c{word-spacing:315.939183px;}
.ws2d{word-spacing:323.276270px;}
.ws2{word-spacing:366.757320px;}
._8{margin-left:-401.994120px;}
._0{margin-left:-399.445320px;}
._5{margin-left:-27.691200px;}
._3b{margin-left:-21.018600px;}
._e{margin-left:-20.016000px;}
._a{margin-left:-18.302940px;}
._d{margin-left:-15.012000px;}
._13{margin-left:-10.476000px;}
._18{margin-left:-9.223200px;}
._9{margin-left:-8.035200px;}
._7{margin-left:-6.132600px;}
._2b{margin-left:-5.131800px;}
._6{margin-left:-4.028400px;}
._3{margin-left:-2.649600px;}
._4{margin-left:-1.036800px;}
._2{width:1.080000px;}
._c{width:2.277440px;}
._15{width:3.583680px;}
._16{width:5.616000px;}
._3a{width:6.768000px;}
._17{width:7.956000px;}
._19{width:11.448000px;}
._12{width:22.640400px;}
._21{width:31.214700px;}
._1c{width:40.404000px;}
._29{width:43.104000px;}
._2e{width:45.306000px;}
._2f{width:48.899400px;}
._2d{width:66.018480px;}
._1e{width:73.134000px;}
._1d{width:112.803300px;}
._11{width:123.553200px;}
._25{width:125.453400px;}
._26{width:133.214700px;}
._1b{width:137.129400px;}
._1f{width:154.134000px;}
._38{width:156.492120px;}
._28{width:158.243100px;}
._23{width:162.833400px;}
._10{width:177.876885px;}
._24{width:197.693400px;}
._27{width:237.509400px;}
._14{width:257.446986px;}
._20{width:327.889800px;}
._1{width:399.455880px;}
._39{width:431.835000px;}
._2a{width:447.425400px;}
._30{width:495.498000px;}
._22{width:515.250000px;}
._35{width:524.874000px;}
._b{width:554.749200px;}
._32{width:563.747400px;}
._34{width:593.123400px;}
._31{width:597.498000px;}
._36{width:626.874000px;}
._33{width:631.020120px;}
._1a{width:687.749400px;}
._f{width:924.256440px;}
._2c{width:1209.523200px;}
._37{width:1271.148120px;}
.fc13{color:rgb(51,51,204);}
.fc12{color:rgb(255,0,102);}
.fc11{color:rgb(0,102,0);}
.fc10{color:rgb(22,22,93);}
.fcf{color:rgb(0,0,102);}
.fce{color:rgb(102,0,255);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(68,129,195);}
.fc7{color:rgb(0,51,204);}
.fc2{color:rgb(0,112,192);}
.fc8{color:rgb(0,0,212);}
.fcd{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(204,204,255);}
.fc5{color:rgb(38,38,153);}
.fca{color:rgb(204,0,153);}
.fc9{color:rgb(0,153,115);}
.fc14{color:rgb(217,79,180);}
.fc6{color:rgb(255,255,255);}
.fcb{color:rgb(204,0,255);}
.fcc{color:rgb(214,0,147);}
.fs19{font-size:40.058560px;}
.fs17{font-size:40.241220px;}
.fsf{font-size:47.675281px;}
.fs1b{font-size:48.000000px;}
.fs18{font-size:53.303836px;}
.fs9{font-size:53.378908px;}
.fs16{font-size:53.583013px;}
.fsb{font-size:54.000000px;}
.fs13{font-size:55.999968px;}
.fs7{font-size:58.762093px;}
.fs1c{font-size:60.000000px;}
.fs1a{font-size:63.999960px;}
.fs1d{font-size:66.000000px;}
.fse{font-size:69.280385px;}
.fs8{font-size:71.028528px;}
.fsd{font-size:72.000000px;}
.fs14{font-size:78.000000px;}
.fs6{font-size:78.244396px;}
.fs10{font-size:79.999980px;}
.fs12{font-size:83.686253px;}
.fs3{font-size:84.000000px;}
.fsc{font-size:90.000000px;}
.fs11{font-size:90.254388px;}
.fs5{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fsa{font-size:126.000000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:168.000000px;}
.fs15{font-size:222.000000px;}
.yc{bottom:-31.837598px;}
.ycb{bottom:-16.087586px;}
.y11{bottom:-8.212595px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y110{bottom:3.521257px;}
.y18d{bottom:8.564436px;}
.y187{bottom:8.599485px;}
.yfe{bottom:9.599995px;}
.y1b3{bottom:10.080220px;}
.yb{bottom:10.162390px;}
.ybe{bottom:10.838460px;}
.y5f{bottom:11.412299px;}
.yca{bottom:12.412405px;}
.y57{bottom:12.557366px;}
.y11a{bottom:13.426900px;}
.y214{bottom:14.474965px;}
.y29{bottom:15.037420px;}
.y77{bottom:15.260545px;}
.ydd{bottom:20.068075px;}
.y223{bottom:20.099980px;}
.y1c5{bottom:21.224965px;}
.yc6{bottom:24.284830px;}
.y12{bottom:24.599995px;}
.y31{bottom:25.724965px;}
.y13{bottom:26.849980px;}
.y1b5{bottom:26.849995px;}
.y219{bottom:27.412435px;}
.y1cd{bottom:27.974965px;}
.y5a{bottom:28.976680px;}
.y197{bottom:30.412405px;}
.yf8{bottom:31.312435px;}
.y11d{bottom:32.099980px;}
.y10{bottom:33.787420px;}
.ya5{bottom:34.537405px;}
.y52{bottom:35.162425px;}
.y120{bottom:40.537405px;}
.yc9{bottom:40.912390px;}
.y117{bottom:41.238870px;}
.ya8{bottom:41.534845px;}
.y18c{bottom:41.891348px;}
.y186{bottom:42.088091px;}
.y15d{bottom:42.564790px;}
.y5b{bottom:43.125030px;}
.y213{bottom:45.974995px;}
.y28{bottom:46.537405px;}
.y16f{bottom:47.662435px;}
.y1e5{bottom:49.162420px;}
.y196{bottom:51.412435px;}
.y222{bottom:51.599950px;}
.y1b0{bottom:52.349980px;}
.y18e{bottom:52.973167px;}
.y188{bottom:53.223276px;}
.ya{bottom:53.662435px;}
.y1e3{bottom:54.224995px;}
.y5e{bottom:55.821138px;}
.y1e7{bottom:56.014705px;}
.yf5{bottom:56.999995px;}
.y59{bottom:57.476680px;}
.y1ea{bottom:57.787405px;}
.y218{bottom:60.412405px;}
.y1cc{bottom:60.974995px;}
.y56{bottom:61.458979px;}
.y51{bottom:63.662485px;}
.yb3{bottom:63.879108px;}
.yf{bottom:65.287405px;}
.y111{bottom:65.488033px;}
.y1eb{bottom:66.412405px;}
.y15c{bottom:66.564805px;}
.y1a2{bottom:66.599965px;}
.y30{bottom:69.224950px;}
.yc8{bottom:69.412375px;}
.y60{bottom:70.587904px;}
.y45{bottom:75.037405px;}
.y58{bottom:77.719092px;}
.y212{bottom:78.974965px;}
.y16e{bottom:79.162405px;}
.y27{bottom:79.537435px;}
.ya7{bottom:83.534830px;}
.y18b{bottom:86.300199px;}
.yf9{bottom:86.662420px;}
.y18f{bottom:86.711331px;}
.y185{bottom:86.712115px;}
.y226{bottom:87.974965px;}
.y217{bottom:91.912390px;}
.y53{bottom:93.495150px;}
.y1cb{bottom:93.974950px;}
.yff{bottom:96.581170px;}
.y9{bottom:97.162405px;}
.ye{bottom:98.287435px;}
.y1e9{bottom:99.974950px;}
.y15b{bottom:101.064760px;}
.yd9{bottom:102.224935px;}
.y18a{bottom:103.539063px;}
.y184{bottom:104.048318px;}
.y137{bottom:105.075010px;}
.yc3{bottom:106.409860px;}
.y119{bottom:107.492935px;}
.y182{bottom:108.524830px;}
.y1a1{bottom:108.599950px;}
.y71{bottom:109.940515px;}
.yb4{bottom:110.438119px;}
.y211{bottom:110.474950px;}
.y16d{bottom:112.162390px;}
.y26{bottom:112.537405px;}
.y112{bottom:112.562003px;}
.y2f{bottom:112.724980px;}
.yfa{bottom:113.474965px;}
.y5d{bottom:114.996905px;}
.y61{bottom:115.544747px;}
.y44{bottom:117.037465px;}
.y3a{bottom:120.974965px;}
.yf6{bottom:121.124995px;}
.y225{bottom:123.974965px;}
.y229{bottom:124.724965px;}
.y15a{bottom:125.064775px;}
.y1ca{bottom:125.474965px;}
.y55{bottom:126.621046px;}
.yfb{bottom:129.224995px;}
.yd{bottom:129.787465px;}
.y1c1{bottom:133.132465px;}
.y136{bottom:133.574980px;}
.yc2{bottom:134.909815px;}
.y190{bottom:136.863880px;}
.y5c{bottom:137.968068px;}
.y96{bottom:137.992465px;}
.yd8{bottom:138.224965px;}
.y8{bottom:140.662315px;}
.y11f{bottom:141.787465px;}
.y16c{bottom:143.662465px;}
.y25{bottom:144.037315px;}
.y101{bottom:145.162465px;}
.y181{bottom:146.024815px;}
.y11c{bottom:146.756215px;}
.yb5{bottom:150.515598px;}
.y54{bottom:151.936172px;}
.y2e{bottom:154.724965px;}
.y102{bottom:155.474965px;}
.y39{bottom:156.974965px;}
.y228{bottom:157.724965px;}
.y1c9{bottom:158.474965px;}
.y159{bottom:159.564715px;}
.y224{bottom:159.974965px;}
.y95{bottom:161.104465px;}
.y113{bottom:161.277972px;}
.y135{bottom:162.074980px;}
.y1c0{bottom:164.632315px;}
.y1e2{bottom:165.599965px;}
.y100{bottom:166.162465px;}
.ydc{bottom:166.912315px;}
.y20f{bottom:168.037465px;}
.y50{bottom:168.584965px;}
.y158{bottom:170.964715px;}
.ya9{bottom:173.159815px;}
.y1af{bottom:175.349965px;}
.y16b{bottom:176.662315px;}
.y24{bottom:177.037465px;}
.yd6{bottom:177.974965px;}
.y1e4{bottom:180.224965px;}
.yfc{bottom:181.537465px;}
.y62{bottom:182.374116px;}
.y180{bottom:184.124815px;}
.y7{bottom:184.162315px;}
.y94{bottom:184.216315px;}
.yf7{bottom:184.499965px;}
.y134{bottom:189.074980px;}
.y227{bottom:189.224965px;}
.y1c8{bottom:189.974965px;}
.yb6{bottom:190.557068px;}
.yfd{bottom:191.099965px;}
.y38{bottom:192.974965px;}
.y1e1{bottom:194.099965px;}
.y1bf{bottom:194.632315px;}
.y195{bottom:194.662465px;}
.y70{bottom:205.906915px;}
.yc5{bottom:206.722315px;}
.y114{bottom:208.136005px;}
.y16a{bottom:208.162315px;}
.y23{bottom:208.537315px;}
.y1b4{bottom:209.849965px;}
.y194{bottom:215.662315px;}
.y93{bottom:215.903965px;}
.y157{bottom:218.064715px;}
.y1ae{bottom:218.849965px;}
.y1e6{bottom:219.412465px;}
.yd5{bottom:219.974965px;}
.ya6{bottom:220.034815px;}
.yed{bottom:221.062315px;}
.y17f{bottom:221.624815px;}
.y1e0{bottom:222.599965px;}
.y1c7{bottom:222.974965px;}
.y1e8{bottom:224.202115px;}
.y6{bottom:226.162315px;}
.yd7{bottom:229.314565px;}
.y1d6{bottom:230.474965px;}
.yb7{bottom:231.722004px;}
.y221{bottom:233.099965px;}
.y21f{bottom:234.037315px;}
.yc4{bottom:235.222315px;}
.y1be{bottom:235.882465px;}
.y36{bottom:238.349965px;}
.y92{bottom:239.015965px;}
.y22{bottom:241.537465px;}
.y156{bottom:242.064715px;}
.y139{bottom:246.037465px;}
.ye9{bottom:246.749965px;}
.y132{bottom:248.062315px;}
.y11e{bottom:251.474965px;}
.y1a0{bottom:254.099965px;}
.y1c6{bottom:254.474965px;}
.y115{bottom:256.857215px;}
.yb2{bottom:258.750000px;}
.y1d5{bottom:258.974965px;}
.y17e{bottom:259.462315px;}
.y91{bottom:262.127815px;}
.y130{bottom:262.312315px;}
.y1ad{bottom:262.349965px;}
.y220{bottom:264.599965px;}
.y21e{bottom:265.537315px;}
.y1ee{bottom:265.912615px;}
.y133{bottom:267.787465px;}
.y5{bottom:269.662465px;}
.y41{bottom:271.143715px;}
.yb8{bottom:271.763474px;}
.y43{bottom:272.739565px;}
.y21{bottom:273.037315px;}
.ybd{bottom:276.070200px;}
.y155{bottom:276.564715px;}
.y1bd{bottom:277.132465px;}
.y68{bottom:280.724965px;}
.y167{bottom:284.700565px;}
.y138{bottom:285.037315px;}
.y90{bottom:285.239965px;}
.y1b2{bottom:285.252580px;}
.yee{bottom:285.974965px;}
.yea{bottom:286.312465px;}
.y1d4{bottom:287.474965px;}
.y76{bottom:287.605915px;}
.y154{bottom:287.964715px;}
.y1f8{bottom:289.566415px;}
.y1ed{bottom:290.335465px;}
.y74{bottom:293.137465px;}
.y19f{bottom:296.099965px;}
.yf3{bottom:297.393715px;}
.y17d{bottom:297.599815px;}
.y169{bottom:297.600715px;}
.y131{bottom:303.374815px;}
.y116{bottom:305.561013px;}
.y1ac{bottom:305.849965px;}
.y12d{bottom:308.437315px;}
.y166{bottom:310.200565px;}
.yaf{bottom:310.784815px;}
.yb9{bottom:311.833751px;}
.y4{bottom:313.162315px;}
.y1ef{bottom:313.310815px;}
.y8f{bottom:315.787315px;}
.yf2{bottom:315.974965px;}
.y73{bottom:318.637465px;}
.y19c{bottom:321.412315px;}
.y168{bottom:321.600715px;}
.y67{bottom:322.724965px;}
.yeb{bottom:325.687465px;}
.y12f{bottom:327.187315px;}
.y75{bottom:329.605915px;}
.y20{bottom:332.099965px;}
.y1bc{bottom:332.632315px;}
.y165{bottom:334.200715px;}
.y153{bottom:335.064715px;}
.y17c{bottom:335.099815px;}
.y121{bottom:335.849965px;}
.yf1{bottom:336.974965px;}
.y1df{bottom:337.537315px;}
.y125{bottom:337.724965px;}
.yd3{bottom:338.160565px;}
.y42{bottom:338.331265px;}
.y72{bottom:342.637465px;}
.yae{bottom:343.784815px;}
.y1f0{bottom:345.435715px;}
.y1ab{bottom:347.849965px;}
.yf4{bottom:348.224965px;}
.y40{bottom:349.981465px;}
.y12c{bottom:350.062315px;}
.y118{bottom:352.593175px;}
.yba{bottom:352.955476px;}
.y10f{bottom:355.537315px;}
.y3{bottom:356.662315px;}
.yf0{bottom:357.974965px;}
.y152{bottom:359.064715px;}
.y191{bottom:361.912315px;}
.y1bb{bottom:362.632315px;}
.y49{bottom:362.931265px;}
.y1de{bottom:363.037315px;}
.y124{bottom:363.224965px;}
.y210{bottom:363.599965px;}
.y1f{bottom:365.099965px;}
.yec{bottom:368.249965px;}
.y2d{bottom:371.287315px;}
.yad{bottom:372.284815px;}
.y17b{bottom:372.937315px;}
.yef{bottom:373.162315px;}
.yaa{bottom:375.472315px;}
.y1f1{bottom:377.360965px;}
.yd2{bottom:380.160715px;}
.y164{bottom:381.262465px;}
.y12e{bottom:382.499815px;}
.y8e{bottom:382.537465px;}
.y189{bottom:383.250000px;}
.ybf{bottom:386.909815px;}
.y1dd{bottom:387.037315px;}
.y123{bottom:387.224965px;}
.y21c{bottom:389.099965px;}
.y1aa{bottom:391.349965px;}
.y10e{bottom:391.537315px;}
.y163{bottom:392.662465px;}
.ybb{bottom:393.040157px;}
.y150{bottom:393.263515px;}
.ydb{bottom:394.724965px;}
.y13b{bottom:395.287315px;}
.y1e{bottom:396.599965px;}
.y2{bottom:400.162315px;}
.yac{bottom:400.784815px;}
.y4b{bottom:401.487265px;}
.y1ba{bottom:403.882315px;}
.y21a{bottom:406.162315px;}
.y2c{bottom:407.287315px;}
.y1f2{bottom:409.086715px;}
.yd4{bottom:409.537315px;}
.y17a{bottom:411.074815px;}
.y3f{bottom:411.412315px;}
.y4e{bottom:413.999515px;}
.y8d{bottom:415.537465px;}
.ye3{bottom:416.999815px;}
.y151{bottom:417.563515px;}
.y6f{bottom:418.087330px;}
.y14f{bottom:418.763515px;}
.y78{bottom:420.452965px;}
.y1da{bottom:423.787315px;}
.y143{bottom:424.124965px;}
.y10d{bottom:427.537315px;}
.y1d{bottom:429.599965px;}
.y179{bottom:429.674815px;}
.ybc{bottom:433.067223px;}
.y4f{bottom:433.224415px;}
.ye0{bottom:436.687315px;}
.ya1{bottom:439.906315px;}
.y19e{bottom:440.849965px;}
.y1f3{bottom:441.211465px;}
.y14e{bottom:442.763515px;}
.y13d{bottom:443.062315px;}
.y2b{bottom:443.287315px;}
.y13c{bottom:443.362315px;}
.y4a{bottom:443.487115px;}
.y8c{bottom:447.037465px;}
.y204{bottom:449.598865px;}
.y200{bottom:451.394665px;}
.yc1{bottom:451.911115px;}
.y80{bottom:452.462365px;}
.y3e{bottom:454.912315px;}
.ydf{bottom:455.549815px;}
.y4d{bottom:455.999515px;}
.y1b9{bottom:459.382315px;}
.y201{bottom:460.972165px;}
.y1c{bottom:461.099965px;}
.ye5{bottom:462.224815px;}
.ya0{bottom:463.018315px;}
.y162{bottom:464.887465px;}
.y1d9{bottom:466.724965px;}
.y6e{bottom:469.087330px;}
.y203{bottom:470.549815px;}
.y1f4{bottom:472.937215px;}
.y14d{bottom:476.099815px;}
.y13e{bottom:476.812315px;}
.y15{bottom:477.892330px;}
.y1a9{bottom:478.349965px;}
.yde{bottom:478.612465px;}
.y12b{bottom:479.099815px;}
.y2a{bottom:479.287315px;}
.y7a{bottom:479.440315px;}
.y8b{bottom:480.037465px;}
.y10c{bottom:481.537315px;}
.y19d{bottom:482.849965px;}
.y205{bottom:483.120415px;}
.yab{bottom:485.909815px;}
.y9f{bottom:486.130315px;}
.ye1{bottom:486.374815px;}
.y178{bottom:486.412315px;}
.y1ce{bottom:488.099965px;}
.y161{bottom:488.887465px;}
.y1b8{bottom:489.382315px;}
.y1d8{bottom:490.724965px;}
.yd0{bottom:492.412315px;}
.y1b{bottom:494.099965px;}
.y79{bottom:495.309715px;}
.y3d{bottom:496.912315px;}
.y1f5{bottom:505.062115px;}
.y9e{bottom:509.242315px;}
.y14c{bottom:510.637315px;}
.y8a{bottom:511.537465px;}
.y13f{bottom:512.062315px;}
.y10b{bottom:517.537315px;}
.y7b{bottom:519.907315px;}
.y6d{bottom:521.587330px;}
.y1a8{bottom:521.849965px;}
.y14b{bottom:522.037315px;}
.y14{bottom:522.892330px;}
.y177{bottom:524.868565px;}
.y216{bottom:525.599965px;}
.ye7{bottom:525.787315px;}
.yd1{bottom:528.037315px;}
.ycf{bottom:528.412315px;}
.y81{bottom:530.023915px;}
.y22c{bottom:530.662315px;}
.y1a{bottom:531.787315px;}
.y9d{bottom:532.354465px;}
.y18{bottom:533.287315px;}
.y160{bottom:534.787465px;}
.y1f6{bottom:536.787865px;}
.ye2{bottom:536.999815px;}
.ye8{bottom:537.787315px;}
.y48{bottom:539.023015px;}
.y22a{bottom:540.224965px;}
.y173{bottom:543.468565px;}
.y202{bottom:543.778465px;}
.y89{bottom:544.537465px;}
.y140{bottom:545.999965px;}
.ye6{bottom:546.787315px;}
.y4c{bottom:550.691665px;}
.y10a{bottom:553.537315px;}
.y9c{bottom:555.466315px;}
.y129{bottom:557.287315px;}
.ye4{bottom:558.787315px;}
.y7c{bottom:559.025365px;}
.y1dc{bottom:559.724965px;}
.y172{bottom:562.068565px;}
.y176{bottom:562.368565px;}
.y1a7{bottom:563.849965px;}
.y22b{bottom:566.662315px;}
.y12a{bottom:567.787315px;}
.y14a{bottom:567.974815px;}
.y1f7{bottom:568.713115px;}
.y15f{bottom:569.324965px;}
.y1d2{bottom:572.474965px;}
.y6c{bottom:572.587330px;}
.y19{bottom:573.787315px;}
.y192{bottom:574.724965px;}
.ycd{bottom:576.224965px;}
.y17{bottom:576.787315px;}
.y88{bottom:577.537465px;}
.y9b{bottom:578.578315px;}
.y37{bottom:580.537315px;}
.y15e{bottom:580.724965px;}
.y174{bottom:580.968565px;}
.y141{bottom:581.249965px;}
.y1fc{bottom:581.786065px;}
.y1b7{bottom:583.507315px;}
.y105{bottom:583.912315px;}
.y3c{bottom:585.412315px;}
.y1db{bottom:588.224965px;}
.y109{bottom:589.537315px;}
.y21b{bottom:593.287315px;}
.y7d{bottom:597.693715px;}
.y175{bottom:599.868565px;}
.y1d1{bottom:600.974965px;}
.y9a{bottom:601.690315px;}
.y149{bottom:602.512315px;}
.y1ff{bottom:602.750965px;}
.y1fa{bottom:604.347115px;}
.y1fb{bottom:605.544415px;}
.y183{bottom:605.812500px;}
.y1a6{bottom:605.849965px;}
.y87{bottom:609.037465px;}
.y1fd{bottom:610.718215px;}
.y1fe{bottom:613.711315px;}
.y148{bottom:613.912315px;}
.y142{bottom:615.187315px;}
.y1f9{bottom:615.507115px;}
.y208{bottom:615.562465px;}
.yb1{bottom:616.034815px;}
.y16{bottom:618.787315px;}
.y99{bottom:624.802315px;}
.y6b{bottom:625.087330px;}
.y19a{bottom:627.787315px;}
.y1d0{bottom:629.474965px;}
.y1b1{bottom:629.660065px;}
.yda{bottom:631.218565px;}
.y65{bottom:637.349965px;}
.y7e{bottom:638.385565px;}
.y1a5{bottom:639.787315px;}
.y86{bottom:642.037465px;}
.y108{bottom:643.537315px;}
.y171{bottom:643.781065px;}
.yb0{bottom:644.534815px;}
.y207{bottom:645.562315px;}
.y98{bottom:656.489815px;}
.y104{bottom:656.549965px;}
.ya4{bottom:656.849965px;}
.y1cf{bottom:657.974965px;}
.y1c4{bottom:659.287315px;}
.y147{bottom:660.224815px;}
.y35{bottom:660.599965px;}
.y128{bottom:660.787315px;}
.y206{bottom:663.562315px;}
.y47{bottom:664.724965px;}
.y64{bottom:674.849965px;}
.y85{bottom:675.037465px;}
.y6a{bottom:676.087330px;}
.y7f{bottom:677.278765px;}
.y107{bottom:679.537315px;}
.y170{bottom:681.281065px;}
.yc0{bottom:682.222315px;}
.y97{bottom:683.489815px;}
.y199{bottom:684.224815px;}
.y127{bottom:686.287315px;}
.y1d7{bottom:687.224815px;}
.y146{bottom:688.724815px;}
.y1a4{bottom:690.787315px;}
.yce{bottom:691.349815px;}
.y20e{bottom:692.849815px;}
.y34{bottom:696.599815px;}
.ya3{bottom:700.349815px;}
.y84{bottom:706.537465px;}
.y21d{bottom:706.912315px;}
.y20a{bottom:707.849815px;}
.y126{bottom:710.287315px;}
.y63{bottom:712.349815px;}
.y106{bottom:715.537315px;}
.y145{bottom:717.224815px;}
.y20c{bottom:718.162315px;}
.y1c3{bottom:723.787315px;}
.y33{bottom:732.599815px;}
.y83{bottom:739.537465px;}
.y1b6{bottom:740.099965px;}
.y1a3{bottom:740.287315px;}
.ya2{bottom:742.349965px;}
.y1d3{bottom:742.537315px;}
.y46{bottom:744.354115px;}
.y1ec{bottom:746.287315px;}
.y3b{bottom:747.412315px;}
.y13a{bottom:749.662315px;}
.y122{bottom:754.349965px;}
.y69{bottom:754.537315px;}
.y19b{bottom:754.724965px;}
.y1c2{bottom:755.287315px;}
.y66{bottom:756.412315px;}
.y209{bottom:757.349965px;}
.ycc{bottom:758.099965px;}
.yc7{bottom:758.287315px;}
.y198{bottom:759.412315px;}
.y144{bottom:759.787315px;}
.y193{bottom:760.724965px;}
.y20b{bottom:763.537315px;}
.y103{bottom:765.224965px;}
.y20d{bottom:765.412315px;}
.y11b{bottom:765.599965px;}
.y215{bottom:768.412315px;}
.y32{bottom:768.599965px;}
.y82{bottom:772.537465px;}
.h21{height:35.756445px;}
.h4f{height:36.099814px;}
.h4d{height:36.288886px;}
.h14{height:48.103793px;}
.h2b{height:50.027344px;}
.h20{height:50.438015px;}
.h12{height:52.990712px;}
.h57{height:53.789062px;}
.h55{height:55.019531px;}
.h36{height:56.882812px;}
.h49{height:56.929688px;}
.h46{height:58.365234px;}
.h1b{height:59.378906px;}
.h32{height:60.966743px;}
.h38{height:61.623047px;}
.h23{height:64.546875px;}
.h31{height:65.751732px;}
.h2c{height:66.023438px;}
.h40{height:66.363281px;}
.h1d{height:66.703125px;}
.h2e{height:66.796935px;}
.h2a{height:69.046875px;}
.h18{height:69.275391px;}
.h22{height:69.421118px;}
.h34{height:71.525391px;}
.h56{height:73.195312px;}
.h19{height:74.223633px;}
.h1e{height:75.041016px;}
.h5{height:75.304688px;}
.h33{height:75.837891px;}
.h3c{height:75.843750px;}
.h26{height:76.781250px;}
.h25{height:76.968750px;}
.h29{height:77.027344px;}
.h28{height:78.667969px;}
.h24{height:79.171875px;}
.h51{height:79.980469px;}
.h2d{height:83.027344px;}
.h45{height:85.324219px;}
.h10{height:86.062500px;}
.h52{height:86.671875px;}
.h54{height:88.031250px;}
.h1a{height:88.611633px;}
.h4{height:89.068359px;}
.h9{height:96.820312px;}
.ha{height:97.505859px;}
.hb{height:98.964844px;}
.h39{height:99.035156px;}
.h1c{height:99.773438px;}
.hf{height:100.054688px;}
.h8{height:107.578125px;}
.h2f{height:107.718732px;}
.hc{height:108.339844px;}
.h53{height:110.039062px;}
.h15{height:112.957031px;}
.h50{height:113.756836px;}
.h3b{height:113.765625px;}
.h3f{height:116.763281px;}
.h3{height:118.757812px;}
.h44{height:120.904088px;}
.h4c{height:121.499850px;}
.h27{height:122.371875px;}
.h43{height:122.627224px;}
.h3e{height:122.627344px;}
.h3d{height:127.427344px;}
.h7{height:129.093750px;}
.h16{height:129.262500px;}
.h6{height:130.007812px;}
.h3a{height:132.046875px;}
.h4b{height:132.765174px;}
.h47{height:132.765234px;}
.h48{height:133.965234px;}
.hd{height:138.550781px;}
.he{height:150.609375px;}
.h2{height:151.675781px;}
.h4e{height:153.937350px;}
.h37{height:156.527344px;}
.h17{height:159.319725px;}
.h41{height:162.363281px;}
.h42{height:162.363341px;}
.h11{height:177.419850px;}
.h13{height:205.124970px;}
.h4a{height:208.365174px;}
.h35{height:288.527344px;}
.h30{height:409.916093px;}
.h1f{height:475.312350px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w7{width:211.500000px;}
.w3{width:226.874850px;}
.w8{width:231.562500px;}
.w2{width:245.542485px;}
.w5{width:325.952850px;}
.w6{width:398.868270px;}
.w4{width:569.812350px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x54{left:3.242548px;}
.x2a{left:6.813893px;}
.x51{left:8.646728px;}
.x9{left:11.174997px;}
.xc{left:13.424999px;}
.xd8{left:14.924997px;}
.x36{left:16.972440px;}
.x5{left:19.425000px;}
.x40{left:21.074760px;}
.x34{left:23.175000px;}
.x42{left:24.830249px;}
.x3f{left:26.175000px;}
.x41{left:27.261960px;}
.x13{left:28.425000px;}
.xac{left:30.750000px;}
.x18{left:31.987560px;}
.xb1{left:33.005093px;}
.x29{left:34.997680px;}
.x1{left:36.300000px;}
.xba{left:37.726170px;}
.xa{left:40.425000px;}
.x30{left:41.687793px;}
.x9d{left:43.537905px;}
.xb3{left:44.550000px;}
.x26{left:45.984915px;}
.x83{left:48.074699px;}
.xc3{left:49.799985px;}
.x12{left:50.924985px;}
.x1b{left:53.043420px;}
.xd5{left:55.237560px;}
.x44{left:56.523525px;}
.x52{left:59.554342px;}
.x10{left:61.424985px;}
.x4e{left:62.796865px;}
.x46{left:66.080230px;}
.x50{left:68.201070px;}
.x82{left:69.862560px;}
.x31{left:71.303998px;}
.xb2{left:72.777241px;}
.x4d{left:75.802986px;}
.x4f{left:77.964668px;}
.x69{left:80.174985px;}
.x1c{left:82.661100px;}
.xad{left:90.191786px;}
.x6a{left:91.858110px;}
.x45{left:93.124170px;}
.x2e{left:96.748274px;}
.xb0{left:98.747232px;}
.xbf{left:100.049985px;}
.x84{left:101.260174px;}
.x27{left:104.708809px;}
.x49{left:107.532245px;}
.x2c{left:110.303610px;}
.x4b{left:112.301790px;}
.xb{left:113.923529px;}
.x8c{left:121.237545px;}
.x90{left:126.487545px;}
.x80{left:129.862545px;}
.x2{left:136.161330px;}
.xae{left:138.673960px;}
.x9c{left:141.088440px;}
.x2b{left:147.803610px;}
.x19{left:150.802020px;}
.x63{left:151.987500px;}
.x14{left:160.237500px;}
.xaf{left:163.472525px;}
.x4c{left:167.847409px;}
.x1a{left:172.297515px;}
.x2f{left:175.356152px;}
.x97{left:178.237500px;}
.x28{left:189.784615px;}
.x8f{left:193.612500px;}
.x5e{left:194.925000px;}
.x3a{left:200.535000px;}
.x93{left:209.062500px;}
.x94{left:210.562500px;}
.x92{left:212.812500px;}
.xcb{left:220.026900px;}
.x61{left:221.538285px;}
.xc4{left:225.112500px;}
.x66{left:229.788285px;}
.xcd{left:234.726150px;}
.x8{left:236.175000px;}
.x95{left:251.175000px;}
.x91{left:253.687500px;}
.xcc{left:259.224750px;}
.x64{left:265.525455px;}
.x7{left:271.829296px;}
.x23{left:273.483000px;}
.x65{left:276.516600px;}
.x68{left:279.112500px;}
.xca{left:283.498950px;}
.x60{left:287.175000px;}
.x4a{left:289.067400px;}
.x48{left:291.879900px;}
.x9b{left:294.261165px;}
.x47{left:297.504900px;}
.xb8{left:299.362500px;}
.x1d{left:301.155300px;}
.xb7{left:306.112500px;}
.x5d{left:312.675000px;}
.xf{left:318.862500px;}
.xc6{left:321.694200px;}
.xa7{left:348.374850px;}
.x67{left:349.987500px;}
.xe{left:356.362500px;}
.x1e{left:358.155300px;}
.xdb{left:369.300000px;}
.xd{left:373.612500px;}
.x62{left:382.987500px;}
.x9f{left:387.440609px;}
.xbd{left:388.612500px;}
.x6{left:392.133990px;}
.xa1{left:393.157163px;}
.x81{left:395.775000px;}
.x9e{left:399.089046px;}
.xbe{left:400.237500px;}
.xce{left:401.316750px;}
.x6b{left:406.087500px;}
.x8a{left:409.425000px;}
.x76{left:414.431250px;}
.x6d{left:417.108900px;}
.x78{left:421.875000px;}
.x71{left:428.787450px;}
.xa0{left:430.168635px;}
.x35{left:437.533290px;}
.x8e{left:444.487500px;}
.xd1{left:447.047400px;}
.x4{left:449.550000px;}
.xd3{left:456.846900px;}
.xc5{left:461.299950px;}
.xbc{left:465.675000px;}
.xbb{left:471.601200px;}
.xd2{left:479.712300px;}
.x75{left:485.684250px;}
.x96{left:491.175000px;}
.x6e{left:497.965950px;}
.x85{left:501.675000px;}
.x6c{left:506.872800px;}
.x72{left:508.426050px;}
.x25{left:510.892290px;}
.x8b{left:517.987500px;}
.x17{left:522.471300px;}
.xa8{left:530.812200px;}
.x86{left:533.925000px;}
.xd4{left:540.142200px;}
.x1f{left:557.680800px;}
.xcf{left:561.374250px;}
.x5c{left:567.692400px;}
.x5f{left:575.737500px;}
.xd0{left:584.239650px;}
.x22{left:590.846370px;}
.x8d{left:594.487500px;}
.x6f{left:597.592050px;}
.x73{left:599.052150px;}
.x7d{left:619.424850px;}
.x5a{left:624.915030px;}
.x7c{left:628.425000px;}
.xc7{left:630.385350px;}
.x58{left:638.309580px;}
.xa6{left:644.362500px;}
.xb4{left:649.050000px;}
.xc0{left:650.550000px;}
.x32{left:651.862500px;}
.xc2{left:652.987500px;}
.x7b{left:654.300000px;}
.xa9{left:659.812200px;}
.x11{left:665.362500px;}
.x7f{left:673.237500px;}
.xb6{left:677.362500px;}
.x5b{left:679.606440px;}
.x37{left:681.764073px;}
.x7a{left:688.237500px;}
.x15{left:689.871300px;}
.x43{left:694.237500px;}
.xc1{left:695.362500px;}
.xb5{left:701.924850px;}
.xc9{left:707.155950px;}
.x77{left:708.672300px;}
.x53{left:710.503500px;}
.x24{left:713.697000px;}
.x3b{left:722.679300px;}
.x59{left:724.336935px;}
.x38{left:737.589270px;}
.x3d{left:743.992050px;}
.x16{left:748.660650px;}
.x3{left:750.112500px;}
.x39{left:758.455965px;}
.x3c{left:760.820550px;}
.x99{left:767.250000px;}
.x3e{left:768.469800px;}
.xaa{left:778.874700px;}
.x33{left:788.362500px;}
.x9a{left:790.312500px;}
.x7e{left:798.299850px;}
.x56{left:803.754750px;}
.x70{left:811.007700px;}
.x2d{left:815.437650px;}
.x79{left:816.674850px;}
.x55{left:820.629750px;}
.xa3{left:828.857663px;}
.x20{left:830.773350px;}
.xc8{left:839.201700px;}
.xa2{left:840.541989px;}
.x89{left:847.049850px;}
.x21{left:856.273350px;}
.xa4{left:857.322510px;}
.x98{left:874.987500px;}
.x57{left:884.246250px;}
.x74{left:885.376500px;}
.x87{left:913.612500px;}
.xab{left:918.187200px;}
.x88{left:922.049850px;}
.xa5{left:936.418770px;}
.xda{left:950.549850px;}
.xb9{left:955.799850px;}
.xd9{left:958.987500px;}
.xd6{left:967.612500px;}
.xd7{left:983.175000px;}
@media print{
.v2{vertical-align:-77.738667pt;}
.v19{vertical-align:-51.333333pt;}
.v3{vertical-align:-43.488000pt;}
.va{vertical-align:-30.855297pt;}
.v1b{vertical-align:-24.000000pt;}
.v1{vertical-align:-21.999467pt;}
.v1a{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.022416pt;}
.v5{vertical-align:-11.922348pt;}
.v18{vertical-align:-8.917958pt;}
.vd{vertical-align:-5.999787pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:4.000000pt;}
.ve{vertical-align:7.999840pt;}
.v8{vertical-align:12.789333pt;}
.v10{vertical-align:22.399984pt;}
.vc{vertical-align:29.333333pt;}
.v9{vertical-align:30.855297pt;}
.vf{vertical-align:32.000000pt;}
.v6{vertical-align:38.400000pt;}
.v13{vertical-align:40.533333pt;}
.v12{vertical-align:44.800000pt;}
.v7{vertical-align:45.992533pt;}
.v15{vertical-align:62.932784pt;}
.v16{vertical-align:66.133333pt;}
.v17{vertical-align:67.200000pt;}
.v14{vertical-align:85.333333pt;}
.v11{vertical-align:117.333333pt;}
.ls3e{letter-spacing:-36.966400pt;}
.lsa1{letter-spacing:-10.185600pt;}
.ls62{letter-spacing:-7.334400pt;}
.ls80{letter-spacing:-7.120533pt;}
.lsbc{letter-spacing:-6.054400pt;}
.ls5f{letter-spacing:-6.003200pt;}
.ls63{letter-spacing:-5.331200pt;}
.ls5e{letter-spacing:-4.665600pt;}
.ls60{letter-spacing:-4.000000pt;}
.lsbd{letter-spacing:-2.387200pt;}
.ls7c{letter-spacing:-2.314667pt;}
.ls65{letter-spacing:-2.003200pt;}
.ls39{letter-spacing:-1.662729pt;}
.ls6d{letter-spacing:-1.444070pt;}
.lsba{letter-spacing:-0.970667pt;}
.ls6c{letter-spacing:-0.641809pt;}
.ls6e{letter-spacing:-0.595102pt;}
.ls41{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:-0.051200pt;}
.ls3d{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:-0.038400pt;}
.lsb8{letter-spacing:-0.034133pt;}
.ls67{letter-spacing:-0.025600pt;}
.ls11{letter-spacing:-0.022400pt;}
.ls40{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:-0.019200pt;}
.ls3c{letter-spacing:-0.017067pt;}
.ls81{letter-spacing:-0.014933pt;}
.ls82{letter-spacing:-0.013867pt;}
.ls35{letter-spacing:-0.012800pt;}
.lsbf{letter-spacing:-0.011733pt;}
.ls14{letter-spacing:-0.009600pt;}
.lsb9{letter-spacing:-0.008533pt;}
.ls7e{letter-spacing:-0.007467pt;}
.ls61{letter-spacing:-0.006400pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb6{letter-spacing:0.000331pt;}
.lsa6{letter-spacing:0.001013pt;}
.lsd{letter-spacing:0.002987pt;}
.lsab{letter-spacing:0.003307pt;}
.ls3b{letter-spacing:0.004267pt;}
.lsbb{letter-spacing:0.006400pt;}
.ls74{letter-spacing:0.006933pt;}
.lsaa{letter-spacing:0.007360pt;}
.ls66{letter-spacing:0.007467pt;}
.ls68{letter-spacing:0.008000pt;}
.ls6f{letter-spacing:0.008533pt;}
.lsb7{letter-spacing:0.008939pt;}
.lsa0{letter-spacing:0.009600pt;}
.ls77{letter-spacing:0.009749pt;}
.ls7f{letter-spacing:0.009956pt;}
.lsb0{letter-spacing:0.010560pt;}
.lsa7{letter-spacing:0.010667pt;}
.lsb5{letter-spacing:0.010752pt;}
.ls69{letter-spacing:0.010819pt;}
.lsae{letter-spacing:0.010987pt;}
.ls6a{letter-spacing:0.011032pt;}
.lsaf{letter-spacing:0.011200pt;}
.lsb{letter-spacing:0.012747pt;}
.ls9{letter-spacing:0.012800pt;}
.ls9e{letter-spacing:0.013399pt;}
.lsbe{letter-spacing:0.013867pt;}
.ls1{letter-spacing:0.014933pt;}
.ls75{letter-spacing:0.015979pt;}
.lsa9{letter-spacing:0.016000pt;}
.lsc0{letter-spacing:0.016533pt;}
.lsf{letter-spacing:0.017067pt;}
.ls6{letter-spacing:0.019200pt;}
.lsad{letter-spacing:0.020480pt;}
.ls72{letter-spacing:0.020800pt;}
.ls4{letter-spacing:0.021333pt;}
.ls64{letter-spacing:0.022400pt;}
.ls70{letter-spacing:0.023467pt;}
.ls10{letter-spacing:0.025600pt;}
.ls8b{letter-spacing:0.029867pt;}
.lsac{letter-spacing:0.030752pt;}
.ls84{letter-spacing:0.034133pt;}
.ls73{letter-spacing:0.034667pt;}
.ls7d{letter-spacing:0.037333pt;}
.ls3f{letter-spacing:0.038400pt;}
.lsa8{letter-spacing:0.041013pt;}
.ls6b{letter-spacing:0.042667pt;}
.ls76{letter-spacing:0.044800pt;}
.lse{letter-spacing:0.051200pt;}
.ls94{letter-spacing:0.051947pt;}
.ls42{letter-spacing:0.052267pt;}
.ls83{letter-spacing:0.053013pt;}
.ls9f{letter-spacing:0.057600pt;}
.lsa5{letter-spacing:0.076800pt;}
.ls3a{letter-spacing:1.228963pt;}
.ls38{letter-spacing:1.231651pt;}
.lsa3{letter-spacing:1.403733pt;}
.ls37{letter-spacing:1.724312pt;}
.ls36{letter-spacing:2.221709pt;}
.ls7b{letter-spacing:6.968107pt;}
.ls79{letter-spacing:10.967573pt;}
.ls7a{letter-spacing:11.635307pt;}
.ls78{letter-spacing:12.301440pt;}
.ls1b{letter-spacing:38.140160pt;}
.ls1f{letter-spacing:38.265387pt;}
.ls52{letter-spacing:39.327093pt;}
.ls51{letter-spacing:39.993227pt;}
.ls4f{letter-spacing:39.993760pt;}
.ls48{letter-spacing:40.502027pt;}
.ls47{letter-spacing:41.192693pt;}
.ls53{letter-spacing:41.992160pt;}
.ls50{letter-spacing:42.658293pt;}
.ls49{letter-spacing:43.956960pt;}
.ls4a{letter-spacing:43.957493pt;}
.ls5c{letter-spacing:46.104160pt;}
.ls20{letter-spacing:46.326933pt;}
.ls5b{letter-spacing:46.771360pt;}
.ls59{letter-spacing:47.437493pt;}
.ls5a{letter-spacing:50.770293pt;}
.ls5d{letter-spacing:52.770293pt;}
.ls71{letter-spacing:61.483573pt;}
.ls44{letter-spacing:65.038187pt;}
.ls4e{letter-spacing:66.259520pt;}
.ls5{letter-spacing:68.416011pt;}
.ls46{letter-spacing:68.494187pt;}
.ls58{letter-spacing:73.697920pt;}
.ls4c{letter-spacing:74.254720pt;}
.ls45{letter-spacing:76.095253pt;}
.ls4d{letter-spacing:76.253120pt;}
.ls4b{letter-spacing:77.585920pt;}
.ls26{letter-spacing:79.472960pt;}
.ls56{letter-spacing:83.031253pt;}
.ls57{letter-spacing:84.364587pt;}
.ls55{letter-spacing:85.697920pt;}
.ls33{letter-spacing:90.962987pt;}
.ls43{letter-spacing:91.299520pt;}
.ls1d{letter-spacing:99.639467pt;}
.ls1a{letter-spacing:100.952640pt;}
.ls9a{letter-spacing:101.533739pt;}
.ls91{letter-spacing:104.466635pt;}
.ls85{letter-spacing:127.671947pt;}
.lsc{letter-spacing:129.578187pt;}
.ls99{letter-spacing:135.010944pt;}
.ls88{letter-spacing:139.247893pt;}
.ls28{letter-spacing:141.671467pt;}
.ls29{letter-spacing:142.285440pt;}
.ls8d{letter-spacing:150.076000pt;}
.ls9b{letter-spacing:151.742453pt;}
.ls18{letter-spacing:151.921760pt;}
.ls1e{letter-spacing:159.109227pt;}
.ls9c{letter-spacing:169.747253pt;}
.ls8a{letter-spacing:171.112469pt;}
.ls9d{letter-spacing:171.873984pt;}
.ls86{letter-spacing:172.534325pt;}
.lsb4{letter-spacing:180.738880pt;}
.ls25{letter-spacing:182.952533pt;}
.ls1c{letter-spacing:184.046720pt;}
.ls19{letter-spacing:184.795893pt;}
.lsb3{letter-spacing:186.546347pt;}
.ls32{letter-spacing:186.931520pt;}
.ls8f{letter-spacing:193.333813pt;}
.ls90{letter-spacing:196.788944pt;}
.ls93{letter-spacing:198.474448pt;}
.lsb2{letter-spacing:201.877973pt;}
.ls12{letter-spacing:202.670027pt;}
.ls96{letter-spacing:208.719243pt;}
.ls8e{letter-spacing:218.153744pt;}
.lsb1{letter-spacing:219.298773pt;}
.ls98{letter-spacing:226.383307pt;}
.ls13{letter-spacing:254.303520pt;}
.ls17{letter-spacing:264.483893pt;}
.ls34{letter-spacing:282.609067pt;}
.ls2c{letter-spacing:286.400320pt;}
.ls2d{letter-spacing:297.150347pt;}
.ls24{letter-spacing:300.587893pt;}
.ls2f{letter-spacing:304.244107pt;}
.ls23{letter-spacing:305.816693pt;}
.ls8c{letter-spacing:313.528677pt;}
.ls97{letter-spacing:325.815093pt;}
.ls2a{letter-spacing:348.712853pt;}
.ls30{letter-spacing:350.494133pt;}
.ls0{letter-spacing:355.072000pt;}
.ls7{letter-spacing:357.312000pt;}
.ls31{letter-spacing:379.796427pt;}
.lsa4{letter-spacing:393.676533pt;}
.ls27{letter-spacing:405.494133pt;}
.ls2b{letter-spacing:418.796427pt;}
.ls16{letter-spacing:439.108373pt;}
.ls2e{letter-spacing:488.140160pt;}
.ls15{letter-spacing:500.453013pt;}
.ls87{letter-spacing:500.884251pt;}
.ls89{letter-spacing:526.080747pt;}
.ls92{letter-spacing:549.231787pt;}
.ls95{letter-spacing:581.460960pt;}
.ls21{letter-spacing:649.119147pt;}
.lsa2{letter-spacing:665.156267pt;}
.ls22{letter-spacing:673.108907pt;}
.ls54{letter-spacing:725.534933pt;}
.ws0{word-spacing:-355.200000pt;}
.ws40{word-spacing:-35.609600pt;}
.ws14{word-spacing:-35.584000pt;}
.ws3f{word-spacing:-35.558400pt;}
.ws28{word-spacing:-29.674667pt;}
.ws26{word-spacing:-29.653333pt;}
.ws2f{word-spacing:-28.886400pt;}
.ws7{word-spacing:-26.688000pt;}
.ws44{word-spacing:-25.651200pt;}
.ws42{word-spacing:-23.739733pt;}
.ws13{word-spacing:-23.722667pt;}
.ws2e{word-spacing:-22.512000pt;}
.ws37{word-spacing:-22.504533pt;}
.ws33{word-spacing:-22.489600pt;}
.ws36{word-spacing:-22.474667pt;}
.ws35{word-spacing:-22.467200pt;}
.ws34{word-spacing:-22.459733pt;}
.ws41{word-spacing:-21.333333pt;}
.ws31{word-spacing:-20.869333pt;}
.ws46{word-spacing:-19.288533pt;}
.ws1c{word-spacing:-18.844265pt;}
.ws38{word-spacing:-18.666667pt;}
.ws1d{word-spacing:-18.351604pt;}
.ws25{word-spacing:-17.804800pt;}
.ws48{word-spacing:-17.792000pt;}
.ws43{word-spacing:-17.123545pt;}
.ws49{word-spacing:-16.309333pt;}
.ws4a{word-spacing:-16.297600pt;}
.ws19{word-spacing:-16.012800pt;}
.ws1a{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.987200pt;}
.ws1e{word-spacing:-15.457224pt;}
.ws20{word-spacing:-13.010055pt;}
.ws45{word-spacing:-12.842667pt;}
.ws47{word-spacing:-11.861333pt;}
.ws1f{word-spacing:-1.785894pt;}
.ws3e{word-spacing:-0.204800pt;}
.ws30{word-spacing:-0.197333pt;}
.wsc{word-spacing:-0.179200pt;}
.ws23{word-spacing:-0.166400pt;}
.ws24{word-spacing:-0.153600pt;}
.wsb{word-spacing:-0.149333pt;}
.wsa{word-spacing:-0.140800pt;}
.ws4c{word-spacing:-0.134400pt;}
.ws1{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.106667pt;}
.ws3{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.089600pt;}
.ws22{word-spacing:-0.085333pt;}
.ws9{word-spacing:-0.076800pt;}
.ws15{word-spacing:-0.074667pt;}
.wsd{word-spacing:-0.069551pt;}
.ws32{word-spacing:-0.069333pt;}
.ws21{word-spacing:-0.068267pt;}
.ws27{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.063136pt;}
.ws4{word-spacing:-0.057600pt;}
.ws4b{word-spacing:-0.053333pt;}
.wse{word-spacing:-0.052233pt;}
.ws3d{word-spacing:-0.051200pt;}
.ws16{word-spacing:-0.048000pt;}
.ws39{word-spacing:-0.047629pt;}
.ws10{word-spacing:-0.047448pt;}
.ws3b{word-spacing:-0.047381pt;}
.ws17{word-spacing:-0.038400pt;}
.ws3a{word-spacing:-0.035770pt;}
.ws3c{word-spacing:-0.035608pt;}
.ws6{word-spacing:0.000000pt;}
.ws29{word-spacing:0.561583pt;}
.ws11{word-spacing:47.065227pt;}
.ws12{word-spacing:62.753653pt;}
.ws1b{word-spacing:144.884954pt;}
.ws2b{word-spacing:223.611179pt;}
.ws2a{word-spacing:224.416970pt;}
.ws2c{word-spacing:280.834829pt;}
.ws2d{word-spacing:287.356684pt;}
.ws2{word-spacing:326.006507pt;}
._8{margin-left:-357.328107pt;}
._0{margin-left:-355.062507pt;}
._5{margin-left:-24.614400pt;}
._3b{margin-left:-18.683200pt;}
._e{margin-left:-17.792000pt;}
._a{margin-left:-16.269280pt;}
._d{margin-left:-13.344000pt;}
._13{margin-left:-9.312000pt;}
._18{margin-left:-8.198400pt;}
._9{margin-left:-7.142400pt;}
._7{margin-left:-5.451200pt;}
._2b{margin-left:-4.561600pt;}
._6{margin-left:-3.580800pt;}
._3{margin-left:-2.355200pt;}
._4{margin-left:-0.921600pt;}
._2{width:0.960000pt;}
._c{width:2.024391pt;}
._15{width:3.185493pt;}
._16{width:4.992000pt;}
._3a{width:6.016000pt;}
._17{width:7.072000pt;}
._19{width:10.176000pt;}
._12{width:20.124800pt;}
._21{width:27.746400pt;}
._1c{width:35.914667pt;}
._29{width:38.314667pt;}
._2e{width:40.272000pt;}
._2f{width:43.466133pt;}
._2d{width:58.683093pt;}
._1e{width:65.008000pt;}
._1d{width:100.269600pt;}
._11{width:109.825067pt;}
._25{width:111.514133pt;}
._26{width:118.413067pt;}
._1b{width:121.892800pt;}
._1f{width:137.008000pt;}
._38{width:139.104107pt;}
._28{width:140.660533pt;}
._23{width:144.740800pt;}
._10{width:158.112787pt;}
._24{width:175.727467pt;}
._27{width:211.119467pt;}
._14{width:228.841766pt;}
._20{width:291.457600pt;}
._1{width:355.071893pt;}
._39{width:383.853333pt;}
._2a{width:397.711467pt;}
._30{width:440.442667pt;}
._22{width:458.000000pt;}
._35{width:466.554667pt;}
._b{width:493.110400pt;}
._32{width:501.108800pt;}
._34{width:527.220800pt;}
._31{width:531.109333pt;}
._36{width:557.221333pt;}
._33{width:560.906773pt;}
._1a{width:611.332800pt;}
._f{width:821.561280pt;}
._2c{width:1075.131733pt;}
._37{width:1129.909440pt;}
.fs19{font-size:35.607609pt;}
.fs17{font-size:35.769973pt;}
.fsf{font-size:42.378028pt;}
.fs1b{font-size:42.666667pt;}
.fs18{font-size:47.381187pt;}
.fs9{font-size:47.447918pt;}
.fs16{font-size:47.629345pt;}
.fsb{font-size:48.000000pt;}
.fs13{font-size:49.777749pt;}
.fs7{font-size:52.232972pt;}
.fs1c{font-size:53.333333pt;}
.fs1a{font-size:56.888853pt;}
.fs1d{font-size:58.666667pt;}
.fse{font-size:61.582565pt;}
.fs8{font-size:63.136469pt;}
.fsd{font-size:64.000000pt;}
.fs14{font-size:69.333333pt;}
.fs6{font-size:69.550575pt;}
.fs10{font-size:71.111093pt;}
.fs12{font-size:74.387781pt;}
.fs3{font-size:74.666667pt;}
.fsc{font-size:80.000000pt;}
.fs11{font-size:80.226122pt;}
.fs5{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fsa{font-size:112.000000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:149.333333pt;}
.fs15{font-size:197.333333pt;}
.yc{bottom:-28.300087pt;}
.ycb{bottom:-14.300076pt;}
.y11{bottom:-7.300084pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y110{bottom:3.130007pt;}
.y18d{bottom:7.612832pt;}
.y187{bottom:7.643987pt;}
.yfe{bottom:8.533329pt;}
.y1b3{bottom:8.960196pt;}
.yb{bottom:9.033236pt;}
.ybe{bottom:9.634186pt;}
.y5f{bottom:10.144265pt;}
.yca{bottom:11.033249pt;}
.y57{bottom:11.162103pt;}
.y11a{bottom:11.935022pt;}
.y214{bottom:12.866636pt;}
.y29{bottom:13.366596pt;}
.y77{bottom:13.564929pt;}
.ydd{bottom:17.838289pt;}
.y223{bottom:17.866649pt;}
.y1c5{bottom:18.866636pt;}
.yc6{bottom:21.586516pt;}
.y12{bottom:21.866662pt;}
.y31{bottom:22.866636pt;}
.y13{bottom:23.866649pt;}
.y1b5{bottom:23.866662pt;}
.y219{bottom:24.366609pt;}
.y1cd{bottom:24.866636pt;}
.y5a{bottom:25.757049pt;}
.y197{bottom:27.033249pt;}
.yf8{bottom:27.833276pt;}
.y11d{bottom:28.533316pt;}
.y10{bottom:30.033262pt;}
.ya5{bottom:30.699916pt;}
.y52{bottom:31.255489pt;}
.y120{bottom:36.033249pt;}
.yc9{bottom:36.366569pt;}
.y117{bottom:36.656773pt;}
.ya8{bottom:36.919862pt;}
.y18c{bottom:37.236753pt;}
.y186{bottom:37.411636pt;}
.y15d{bottom:37.835369pt;}
.y5b{bottom:38.333360pt;}
.y213{bottom:40.866662pt;}
.y28{bottom:41.366582pt;}
.y16f{bottom:42.366609pt;}
.y1e5{bottom:43.699929pt;}
.y196{bottom:45.699942pt;}
.y222{bottom:45.866622pt;}
.y1b0{bottom:46.533316pt;}
.y18e{bottom:47.087259pt;}
.y188{bottom:47.309579pt;}
.ya{bottom:47.699942pt;}
.y1e3{bottom:48.199996pt;}
.y5e{bottom:49.618789pt;}
.y1e7{bottom:49.790849pt;}
.yf5{bottom:50.666662pt;}
.y59{bottom:51.090382pt;}
.y1ea{bottom:51.366582pt;}
.y218{bottom:53.699916pt;}
.y1cc{bottom:54.199996pt;}
.y56{bottom:54.630204pt;}
.y51{bottom:56.588876pt;}
.yb3{bottom:56.781429pt;}
.yf{bottom:58.033249pt;}
.y111{bottom:58.211585pt;}
.y1eb{bottom:59.033249pt;}
.y15c{bottom:59.168716pt;}
.y1a2{bottom:59.199969pt;}
.y30{bottom:61.533289pt;}
.yc8{bottom:61.699889pt;}
.y60{bottom:62.744803pt;}
.y45{bottom:66.699916pt;}
.y58{bottom:69.083638pt;}
.y212{bottom:70.199969pt;}
.y16e{bottom:70.366582pt;}
.y27{bottom:70.699942pt;}
.ya7{bottom:74.253182pt;}
.y18b{bottom:76.711288pt;}
.yf9{bottom:77.033262pt;}
.y18f{bottom:77.076739pt;}
.y185{bottom:77.077436pt;}
.y226{bottom:78.199969pt;}
.y217{bottom:81.699902pt;}
.y53{bottom:83.106800pt;}
.y1cb{bottom:83.533289pt;}
.yff{bottom:85.849929pt;}
.y9{bottom:86.366582pt;}
.ye{bottom:87.366609pt;}
.y1e9{bottom:88.866622pt;}
.y15b{bottom:89.835342pt;}
.yd9{bottom:90.866609pt;}
.y18a{bottom:92.034723pt;}
.y184{bottom:92.487394pt;}
.y137{bottom:93.400009pt;}
.yc3{bottom:94.586542pt;}
.y119{bottom:95.549276pt;}
.y182{bottom:96.466516pt;}
.y1a1{bottom:96.533289pt;}
.y71{bottom:97.724902pt;}
.yb4{bottom:98.167217pt;}
.y211{bottom:98.199956pt;}
.y16d{bottom:99.699902pt;}
.y26{bottom:100.033249pt;}
.y112{bottom:100.055114pt;}
.y2f{bottom:100.199982pt;}
.yfa{bottom:100.866636pt;}
.y5d{bottom:102.219471pt;}
.y61{bottom:102.706441pt;}
.y44{bottom:104.033302pt;}
.y3a{bottom:107.533302pt;}
.yf6{bottom:107.666662pt;}
.y225{bottom:110.199969pt;}
.y229{bottom:110.866636pt;}
.y15a{bottom:111.168689pt;}
.y1ca{bottom:111.533302pt;}
.y55{bottom:112.552040pt;}
.yfb{bottom:114.866662pt;}
.yd{bottom:115.366636pt;}
.y1c1{bottom:118.339969pt;}
.y136{bottom:118.733316pt;}
.yc2{bottom:119.919836pt;}
.y190{bottom:121.656783pt;}
.y5c{bottom:122.638283pt;}
.y96{bottom:122.659969pt;}
.yd8{bottom:122.866636pt;}
.y8{bottom:125.033169pt;}
.y11f{bottom:126.033302pt;}
.y16c{bottom:127.699969pt;}
.y25{bottom:128.033169pt;}
.y101{bottom:129.033302pt;}
.y181{bottom:129.799836pt;}
.y11c{bottom:130.449969pt;}
.yb5{bottom:133.791643pt;}
.y54{bottom:135.054375pt;}
.y2e{bottom:137.533302pt;}
.y102{bottom:138.199969pt;}
.y39{bottom:139.533302pt;}
.y228{bottom:140.199969pt;}
.y1c9{bottom:140.866636pt;}
.y159{bottom:141.835302pt;}
.y224{bottom:142.199969pt;}
.y95{bottom:143.203969pt;}
.y113{bottom:143.358197pt;}
.y135{bottom:144.066649pt;}
.y1c0{bottom:146.339836pt;}
.y1e2{bottom:147.199969pt;}
.y100{bottom:147.699969pt;}
.ydc{bottom:148.366502pt;}
.y20f{bottom:149.366636pt;}
.y50{bottom:149.853302pt;}
.y158{bottom:151.968636pt;}
.ya9{bottom:153.919836pt;}
.y1af{bottom:155.866636pt;}
.y16b{bottom:157.033169pt;}
.y24{bottom:157.366636pt;}
.yd6{bottom:158.199969pt;}
.y1e4{bottom:160.199969pt;}
.yfc{bottom:161.366636pt;}
.y62{bottom:162.110326pt;}
.y180{bottom:163.666502pt;}
.y7{bottom:163.699836pt;}
.y94{bottom:163.747836pt;}
.yf7{bottom:163.999969pt;}
.y134{bottom:168.066649pt;}
.y227{bottom:168.199969pt;}
.y1c8{bottom:168.866636pt;}
.yb6{bottom:169.384060pt;}
.yfd{bottom:169.866636pt;}
.y38{bottom:171.533302pt;}
.y1e1{bottom:172.533302pt;}
.y1bf{bottom:173.006502pt;}
.y195{bottom:173.033302pt;}
.y70{bottom:183.028369pt;}
.yc5{bottom:183.753169pt;}
.y114{bottom:185.009782pt;}
.y16a{bottom:185.033169pt;}
.y23{bottom:185.366502pt;}
.y1b4{bottom:186.533302pt;}
.y194{bottom:191.699836pt;}
.y93{bottom:191.914636pt;}
.y157{bottom:193.835302pt;}
.y1ae{bottom:194.533302pt;}
.y1e6{bottom:195.033302pt;}
.yd5{bottom:195.533302pt;}
.ya6{bottom:195.586502pt;}
.yed{bottom:196.499836pt;}
.y17f{bottom:196.999836pt;}
.y1e0{bottom:197.866636pt;}
.y1c7{bottom:198.199969pt;}
.y1e8{bottom:199.290769pt;}
.y6{bottom:201.033169pt;}
.yd7{bottom:203.835169pt;}
.y1d6{bottom:204.866636pt;}
.yb7{bottom:205.975114pt;}
.y221{bottom:207.199969pt;}
.y21f{bottom:208.033169pt;}
.yc4{bottom:209.086502pt;}
.y1be{bottom:209.673302pt;}
.y36{bottom:211.866636pt;}
.y92{bottom:212.458636pt;}
.y22{bottom:214.699969pt;}
.y156{bottom:215.168636pt;}
.y139{bottom:218.699969pt;}
.ye9{bottom:219.333302pt;}
.y132{bottom:220.499836pt;}
.y11e{bottom:223.533302pt;}
.y1a0{bottom:225.866636pt;}
.y1c6{bottom:226.199969pt;}
.y115{bottom:228.317525pt;}
.yb2{bottom:230.000000pt;}
.y1d5{bottom:230.199969pt;}
.y17e{bottom:230.633169pt;}
.y91{bottom:233.002502pt;}
.y130{bottom:233.166502pt;}
.y1ad{bottom:233.199969pt;}
.y220{bottom:235.199969pt;}
.y21e{bottom:236.033169pt;}
.y1ee{bottom:236.366769pt;}
.y133{bottom:238.033302pt;}
.y5{bottom:239.699969pt;}
.y41{bottom:241.016636pt;}
.yb8{bottom:241.567532pt;}
.y43{bottom:242.435169pt;}
.y21{bottom:242.699836pt;}
.ybd{bottom:245.395733pt;}
.y155{bottom:245.835302pt;}
.y1bd{bottom:246.339969pt;}
.y68{bottom:249.533302pt;}
.y167{bottom:253.067169pt;}
.y138{bottom:253.366502pt;}
.y90{bottom:253.546636pt;}
.y1b2{bottom:253.557849pt;}
.yee{bottom:254.199969pt;}
.yea{bottom:254.499969pt;}
.y1d4{bottom:255.533302pt;}
.y76{bottom:255.649702pt;}
.y154{bottom:255.968636pt;}
.y1f8{bottom:257.392369pt;}
.y1ed{bottom:258.075969pt;}
.y74{bottom:260.566636pt;}
.y19f{bottom:263.199969pt;}
.yf3{bottom:264.349969pt;}
.y17d{bottom:264.533169pt;}
.y169{bottom:264.533969pt;}
.y131{bottom:269.666502pt;}
.y116{bottom:271.609789pt;}
.y1ac{bottom:271.866636pt;}
.y12d{bottom:274.166502pt;}
.y166{bottom:275.733836pt;}
.yaf{bottom:276.253169pt;}
.yb9{bottom:277.185556pt;}
.y4{bottom:278.366502pt;}
.y1ef{bottom:278.498502pt;}
.y8f{bottom:280.699836pt;}
.yf2{bottom:280.866636pt;}
.y73{bottom:283.233302pt;}
.y19c{bottom:285.699836pt;}
.y168{bottom:285.867302pt;}
.y67{bottom:286.866636pt;}
.yeb{bottom:289.499969pt;}
.y12f{bottom:290.833169pt;}
.y75{bottom:292.983036pt;}
.y20{bottom:295.199969pt;}
.y1bc{bottom:295.673169pt;}
.y165{bottom:297.067302pt;}
.y153{bottom:297.835302pt;}
.y17c{bottom:297.866502pt;}
.y121{bottom:298.533302pt;}
.yf1{bottom:299.533302pt;}
.y1df{bottom:300.033169pt;}
.y125{bottom:300.199969pt;}
.yd3{bottom:300.587169pt;}
.y42{bottom:300.738902pt;}
.y72{bottom:304.566636pt;}
.yae{bottom:305.586502pt;}
.y1f0{bottom:307.053969pt;}
.y1ab{bottom:309.199969pt;}
.yf4{bottom:309.533302pt;}
.y40{bottom:311.094636pt;}
.y12c{bottom:311.166502pt;}
.y118{bottom:313.416155pt;}
.yba{bottom:313.738201pt;}
.y10f{bottom:316.033169pt;}
.y3{bottom:317.033169pt;}
.yf0{bottom:318.199969pt;}
.y152{bottom:319.168636pt;}
.y191{bottom:321.699836pt;}
.y1bb{bottom:322.339836pt;}
.y49{bottom:322.605569pt;}
.y1de{bottom:322.699836pt;}
.y124{bottom:322.866636pt;}
.y210{bottom:323.199969pt;}
.y1f{bottom:324.533302pt;}
.yec{bottom:327.333302pt;}
.y2d{bottom:330.033169pt;}
.yad{bottom:330.919836pt;}
.y17b{bottom:331.499836pt;}
.yef{bottom:331.699836pt;}
.yaa{bottom:333.753169pt;}
.y1f1{bottom:335.431969pt;}
.yd2{bottom:337.920636pt;}
.y164{bottom:338.899969pt;}
.y12e{bottom:339.999836pt;}
.y8e{bottom:340.033302pt;}
.y189{bottom:340.666667pt;}
.ybf{bottom:343.919836pt;}
.y1dd{bottom:344.033169pt;}
.y123{bottom:344.199969pt;}
.y21c{bottom:345.866636pt;}
.y1aa{bottom:347.866636pt;}
.y10e{bottom:348.033169pt;}
.y163{bottom:349.033302pt;}
.ybb{bottom:349.369028pt;}
.y150{bottom:349.567569pt;}
.ydb{bottom:350.866636pt;}
.y13b{bottom:351.366502pt;}
.y1e{bottom:352.533302pt;}
.y2{bottom:355.699836pt;}
.yac{bottom:356.253169pt;}
.y4b{bottom:356.877569pt;}
.y1ba{bottom:359.006502pt;}
.y21a{bottom:361.033169pt;}
.y2c{bottom:362.033169pt;}
.y1f2{bottom:363.632636pt;}
.yd4{bottom:364.033169pt;}
.y17a{bottom:365.399836pt;}
.y3f{bottom:365.699836pt;}
.y4e{bottom:367.999569pt;}
.y8d{bottom:369.366636pt;}
.ye3{bottom:370.666502pt;}
.y151{bottom:371.167569pt;}
.y6f{bottom:371.633182pt;}
.y14f{bottom:372.234236pt;}
.y78{bottom:373.735969pt;}
.y1da{bottom:376.699836pt;}
.y143{bottom:376.999969pt;}
.y10d{bottom:380.033169pt;}
.y1d{bottom:381.866636pt;}
.y179{bottom:381.933169pt;}
.ybc{bottom:384.948643pt;}
.y4f{bottom:385.088369pt;}
.ye0{bottom:388.166502pt;}
.ya1{bottom:391.027836pt;}
.y19e{bottom:391.866636pt;}
.y1f3{bottom:392.187969pt;}
.y14e{bottom:393.567569pt;}
.y13d{bottom:393.833169pt;}
.y2b{bottom:394.033169pt;}
.y13c{bottom:394.099836pt;}
.y4a{bottom:394.210769pt;}
.y8c{bottom:397.366636pt;}
.y204{bottom:399.643436pt;}
.y200{bottom:401.239702pt;}
.yc1{bottom:401.698769pt;}
.y80{bottom:402.188769pt;}
.y3e{bottom:404.366502pt;}
.ydf{bottom:404.933169pt;}
.y4d{bottom:405.332902pt;}
.y1b9{bottom:408.339836pt;}
.y201{bottom:409.753036pt;}
.y1c{bottom:409.866636pt;}
.ye5{bottom:410.866502pt;}
.ya0{bottom:411.571836pt;}
.y162{bottom:413.233302pt;}
.y1d9{bottom:414.866636pt;}
.y6e{bottom:416.966516pt;}
.y203{bottom:418.266502pt;}
.y1f4{bottom:420.388636pt;}
.y14d{bottom:423.199836pt;}
.y13e{bottom:423.833169pt;}
.y15{bottom:424.793182pt;}
.y1a9{bottom:425.199969pt;}
.yde{bottom:425.433302pt;}
.y12b{bottom:425.866502pt;}
.y2a{bottom:426.033169pt;}
.y7a{bottom:426.169169pt;}
.y8b{bottom:426.699969pt;}
.y10c{bottom:428.033169pt;}
.y19d{bottom:429.199969pt;}
.y205{bottom:429.440369pt;}
.yab{bottom:431.919836pt;}
.y9f{bottom:432.115836pt;}
.ye1{bottom:432.333169pt;}
.y178{bottom:432.366502pt;}
.y1ce{bottom:433.866636pt;}
.y161{bottom:434.566636pt;}
.y1b8{bottom:435.006502pt;}
.y1d8{bottom:436.199969pt;}
.yd0{bottom:437.699836pt;}
.y1b{bottom:439.199969pt;}
.y79{bottom:440.275302pt;}
.y3d{bottom:441.699836pt;}
.y1f5{bottom:448.944102pt;}
.y9e{bottom:452.659836pt;}
.y14c{bottom:453.899836pt;}
.y8a{bottom:454.699969pt;}
.y13f{bottom:455.166502pt;}
.y10b{bottom:460.033169pt;}
.y7b{bottom:462.139836pt;}
.y6d{bottom:463.633182pt;}
.y1a8{bottom:463.866636pt;}
.y14b{bottom:464.033169pt;}
.y14{bottom:464.793182pt;}
.y177{bottom:466.549836pt;}
.y216{bottom:467.199969pt;}
.ye7{bottom:467.366502pt;}
.yd1{bottom:469.366502pt;}
.ycf{bottom:469.699836pt;}
.y81{bottom:471.132369pt;}
.y22c{bottom:471.699836pt;}
.y1a{bottom:472.699836pt;}
.y9d{bottom:473.203969pt;}
.y18{bottom:474.033169pt;}
.y160{bottom:475.366636pt;}
.y1f6{bottom:477.144769pt;}
.ye2{bottom:477.333169pt;}
.ye8{bottom:478.033169pt;}
.y48{bottom:479.131569pt;}
.y22a{bottom:480.199969pt;}
.y173{bottom:483.083169pt;}
.y202{bottom:483.358636pt;}
.y89{bottom:484.033302pt;}
.y140{bottom:485.333302pt;}
.ye6{bottom:486.033169pt;}
.y4c{bottom:489.503702pt;}
.y10a{bottom:492.033169pt;}
.y9c{bottom:493.747836pt;}
.y129{bottom:495.366502pt;}
.ye4{bottom:496.699836pt;}
.y7c{bottom:496.911436pt;}
.y1dc{bottom:497.533302pt;}
.y172{bottom:499.616502pt;}
.y176{bottom:499.883169pt;}
.y1a7{bottom:501.199969pt;}
.y22b{bottom:503.699836pt;}
.y12a{bottom:504.699836pt;}
.y14a{bottom:504.866502pt;}
.y1f7{bottom:505.522769pt;}
.y15f{bottom:506.066636pt;}
.y1d2{bottom:508.866636pt;}
.y6c{bottom:508.966516pt;}
.y19{bottom:510.033169pt;}
.y192{bottom:510.866636pt;}
.ycd{bottom:512.199969pt;}
.y17{bottom:512.699836pt;}
.y88{bottom:513.366636pt;}
.y9b{bottom:514.291836pt;}
.y37{bottom:516.033169pt;}
.y15e{bottom:516.199969pt;}
.y174{bottom:516.416502pt;}
.y141{bottom:516.666636pt;}
.y1fc{bottom:517.143169pt;}
.y1b7{bottom:518.673169pt;}
.y105{bottom:519.033169pt;}
.y3c{bottom:520.366502pt;}
.y1db{bottom:522.866636pt;}
.y109{bottom:524.033169pt;}
.y21b{bottom:527.366502pt;}
.y7d{bottom:531.283302pt;}
.y175{bottom:533.216502pt;}
.y1d1{bottom:534.199969pt;}
.y9a{bottom:534.835836pt;}
.y149{bottom:535.566502pt;}
.y1ff{bottom:535.778636pt;}
.y1fa{bottom:537.197436pt;}
.y1fb{bottom:538.261702pt;}
.y183{bottom:538.500000pt;}
.y1a6{bottom:538.533302pt;}
.y87{bottom:541.366636pt;}
.y1fd{bottom:542.860636pt;}
.y1fe{bottom:545.521169pt;}
.y148{bottom:545.699836pt;}
.y142{bottom:546.833169pt;}
.y1f9{bottom:547.117436pt;}
.y208{bottom:547.166636pt;}
.yb1{bottom:547.586502pt;}
.y16{bottom:550.033169pt;}
.y99{bottom:555.379836pt;}
.y6b{bottom:555.633182pt;}
.y19a{bottom:558.033169pt;}
.y1d0{bottom:559.533302pt;}
.y1b1{bottom:559.697836pt;}
.yda{bottom:561.083169pt;}
.y65{bottom:566.533302pt;}
.y7e{bottom:567.453836pt;}
.y1a5{bottom:568.699836pt;}
.y86{bottom:570.699969pt;}
.y108{bottom:572.033169pt;}
.y171{bottom:572.249836pt;}
.yb0{bottom:572.919836pt;}
.y207{bottom:573.833169pt;}
.y98{bottom:583.546502pt;}
.y104{bottom:583.599969pt;}
.ya4{bottom:583.866636pt;}
.y1cf{bottom:584.866636pt;}
.y1c4{bottom:586.033169pt;}
.y147{bottom:586.866502pt;}
.y35{bottom:587.199969pt;}
.y128{bottom:587.366502pt;}
.y206{bottom:589.833169pt;}
.y47{bottom:590.866636pt;}
.y64{bottom:599.866636pt;}
.y85{bottom:600.033302pt;}
.y6a{bottom:600.966516pt;}
.y7f{bottom:602.025569pt;}
.y107{bottom:604.033169pt;}
.y170{bottom:605.583169pt;}
.yc0{bottom:606.419836pt;}
.y97{bottom:607.546502pt;}
.y199{bottom:608.199836pt;}
.y127{bottom:610.033169pt;}
.y1d7{bottom:610.866502pt;}
.y146{bottom:612.199836pt;}
.y1a4{bottom:614.033169pt;}
.yce{bottom:614.533169pt;}
.y20e{bottom:615.866502pt;}
.y34{bottom:619.199836pt;}
.ya3{bottom:622.533169pt;}
.y84{bottom:628.033302pt;}
.y21d{bottom:628.366502pt;}
.y20a{bottom:629.199836pt;}
.y126{bottom:631.366502pt;}
.y63{bottom:633.199836pt;}
.y106{bottom:636.033169pt;}
.y145{bottom:637.533169pt;}
.y20c{bottom:638.366502pt;}
.y1c3{bottom:643.366502pt;}
.y33{bottom:651.199836pt;}
.y83{bottom:657.366636pt;}
.y1b6{bottom:657.866636pt;}
.y1a3{bottom:658.033169pt;}
.ya2{bottom:659.866636pt;}
.y1d3{bottom:660.033169pt;}
.y46{bottom:661.648102pt;}
.y1ec{bottom:663.366502pt;}
.y3b{bottom:664.366502pt;}
.y13a{bottom:666.366502pt;}
.y122{bottom:670.533302pt;}
.y69{bottom:670.699836pt;}
.y19b{bottom:670.866636pt;}
.y1c2{bottom:671.366502pt;}
.y66{bottom:672.366502pt;}
.y209{bottom:673.199969pt;}
.ycc{bottom:673.866636pt;}
.yc7{bottom:674.033169pt;}
.y198{bottom:675.033169pt;}
.y144{bottom:675.366502pt;}
.y193{bottom:676.199969pt;}
.y20b{bottom:678.699836pt;}
.y103{bottom:680.199969pt;}
.y20d{bottom:680.366502pt;}
.y11b{bottom:680.533302pt;}
.y215{bottom:683.033169pt;}
.y32{bottom:683.199969pt;}
.y82{bottom:686.699969pt;}
.h21{height:31.783507pt;}
.h4f{height:32.088724pt;}
.h4d{height:32.256788pt;}
.h14{height:42.758927pt;}
.h2b{height:44.468750pt;}
.h20{height:44.833791pt;}
.h12{height:47.102855pt;}
.h57{height:47.812500pt;}
.h55{height:48.906250pt;}
.h36{height:50.562500pt;}
.h49{height:50.604167pt;}
.h46{height:51.880208pt;}
.h1b{height:52.781250pt;}
.h32{height:54.192661pt;}
.h38{height:54.776042pt;}
.h23{height:57.375000pt;}
.h31{height:58.445984pt;}
.h2c{height:58.687500pt;}
.h40{height:58.989583pt;}
.h1d{height:59.291667pt;}
.h2e{height:59.375053pt;}
.h2a{height:61.375000pt;}
.h18{height:61.578125pt;}
.h22{height:61.707660pt;}
.h34{height:63.578125pt;}
.h56{height:65.062500pt;}
.h19{height:65.976562pt;}
.h1e{height:66.703125pt;}
.h5{height:66.937500pt;}
.h33{height:67.411458pt;}
.h3c{height:67.416667pt;}
.h26{height:68.250000pt;}
.h25{height:68.416667pt;}
.h29{height:68.468750pt;}
.h28{height:69.927083pt;}
.h24{height:70.375000pt;}
.h51{height:71.093750pt;}
.h2d{height:73.802083pt;}
.h45{height:75.843750pt;}
.h10{height:76.500000pt;}
.h52{height:77.041667pt;}
.h54{height:78.250000pt;}
.h1a{height:78.765896pt;}
.h4{height:79.171875pt;}
.h9{height:86.062500pt;}
.ha{height:86.671875pt;}
.hb{height:87.968750pt;}
.h39{height:88.031250pt;}
.h1c{height:88.687500pt;}
.hf{height:88.937500pt;}
.h8{height:95.625000pt;}
.h2f{height:95.749984pt;}
.hc{height:96.302083pt;}
.h53{height:97.812500pt;}
.h15{height:100.406250pt;}
.h50{height:101.117188pt;}
.h3b{height:101.125000pt;}
.h3f{height:103.789583pt;}
.h3{height:105.562500pt;}
.h44{height:107.470300pt;}
.h4c{height:107.999867pt;}
.h27{height:108.775000pt;}
.h43{height:109.001977pt;}
.h3e{height:109.002083pt;}
.h3d{height:113.268750pt;}
.h7{height:114.750000pt;}
.h16{height:114.900000pt;}
.h6{height:115.562500pt;}
.h3a{height:117.375000pt;}
.h4b{height:118.013488pt;}
.h47{height:118.013542pt;}
.h48{height:119.080208pt;}
.hd{height:123.156250pt;}
.he{height:133.875000pt;}
.h2{height:134.822917pt;}
.h4e{height:136.833200pt;}
.h37{height:139.135417pt;}
.h17{height:141.617533pt;}
.h41{height:144.322917pt;}
.h42{height:144.322970pt;}
.h11{height:157.706533pt;}
.h13{height:182.333307pt;}
.h4a{height:185.213488pt;}
.h35{height:256.468750pt;}
.h30{height:364.369860pt;}
.h1f{height:422.499867pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w7{width:188.000000pt;}
.w3{width:201.666533pt;}
.w8{width:205.833333pt;}
.w2{width:218.259987pt;}
.w5{width:289.735867pt;}
.w6{width:354.549573pt;}
.w4{width:506.499867pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x54{left:2.882265pt;}
.x2a{left:6.056794pt;}
.x51{left:7.685981pt;}
.x9{left:9.933331pt;}
.xc{left:11.933332pt;}
.xd8{left:13.266664pt;}
.x36{left:15.086613pt;}
.x5{left:17.266667pt;}
.x40{left:18.733120pt;}
.x34{left:20.600000pt;}
.x42{left:22.071332pt;}
.x3f{left:23.266667pt;}
.x41{left:24.232853pt;}
.x13{left:25.266667pt;}
.xac{left:27.333333pt;}
.x18{left:28.433387pt;}
.xb1{left:29.337861pt;}
.x29{left:31.109049pt;}
.x1{left:32.266667pt;}
.xba{left:33.534373pt;}
.xa{left:35.933333pt;}
.x30{left:37.055816pt;}
.x9d{left:38.700360pt;}
.xb3{left:39.600000pt;}
.x26{left:40.875480pt;}
.x83{left:42.733066pt;}
.xc3{left:44.266653pt;}
.x12{left:45.266653pt;}
.x1b{left:47.149707pt;}
.xd5{left:49.100053pt;}
.x44{left:50.243133pt;}
.x52{left:52.937193pt;}
.x10{left:54.599987pt;}
.x4e{left:55.819436pt;}
.x46{left:58.737983pt;}
.x50{left:60.623174pt;}
.x82{left:62.100053pt;}
.x31{left:63.381332pt;}
.xb2{left:64.690881pt;}
.x4d{left:67.380432pt;}
.x4f{left:69.301927pt;}
.x69{left:71.266653pt;}
.x1c{left:73.476533pt;}
.xad{left:80.170477pt;}
.x6a{left:81.651653pt;}
.x45{left:82.777040pt;}
.x2e{left:85.998466pt;}
.xb0{left:87.775317pt;}
.xbf{left:88.933320pt;}
.x84{left:90.009044pt;}
.x27{left:93.074497pt;}
.x49{left:95.584217pt;}
.x2c{left:98.047653pt;}
.x4b{left:99.823813pt;}
.xb{left:101.265359pt;}
.x8c{left:107.766707pt;}
.x90{left:112.433373pt;}
.x80{left:115.433373pt;}
.x2{left:121.032293pt;}
.xae{left:123.265742pt;}
.x9c{left:125.411947pt;}
.x2b{left:131.380987pt;}
.x19{left:134.046240pt;}
.x63{left:135.100000pt;}
.x14{left:142.433333pt;}
.xaf{left:145.308911pt;}
.x4c{left:149.197697pt;}
.x1a{left:153.153347pt;}
.x2f{left:155.872135pt;}
.x97{left:158.433333pt;}
.x28{left:168.697436pt;}
.x8f{left:172.100000pt;}
.x5e{left:173.266667pt;}
.x3a{left:178.253333pt;}
.x93{left:185.833333pt;}
.x94{left:187.166667pt;}
.x92{left:189.166667pt;}
.xcb{left:195.579467pt;}
.x61{left:196.922920pt;}
.xc4{left:200.100000pt;}
.x66{left:204.256253pt;}
.xcd{left:208.645467pt;}
.x8{left:209.933333pt;}
.x95{left:223.266667pt;}
.x91{left:225.500000pt;}
.xcc{left:230.422000pt;}
.x64{left:236.022627pt;}
.x7{left:241.626041pt;}
.x23{left:243.096000pt;}
.x65{left:245.792533pt;}
.x68{left:248.100000pt;}
.xca{left:251.999067pt;}
.x60{left:255.266667pt;}
.x4a{left:256.948800pt;}
.x48{left:259.448800pt;}
.x9b{left:261.565480pt;}
.x47{left:264.448800pt;}
.xb8{left:266.100000pt;}
.x1d{left:267.693600pt;}
.xb7{left:272.100000pt;}
.x5d{left:277.933333pt;}
.xf{left:283.433333pt;}
.xc6{left:285.950400pt;}
.xa7{left:309.666533pt;}
.x67{left:311.100000pt;}
.xe{left:316.766667pt;}
.x1e{left:318.360267pt;}
.xdb{left:328.266667pt;}
.xd{left:332.100000pt;}
.x62{left:340.433333pt;}
.x9f{left:344.391652pt;}
.xbd{left:345.433333pt;}
.x6{left:348.563547pt;}
.xa1{left:349.473033pt;}
.x81{left:351.800000pt;}
.x9e{left:354.745819pt;}
.xbe{left:355.766667pt;}
.xce{left:356.726000pt;}
.x6b{left:360.966667pt;}
.x8a{left:363.933333pt;}
.x76{left:368.383333pt;}
.x6d{left:370.763467pt;}
.x78{left:375.000000pt;}
.x71{left:381.144400pt;}
.xa0{left:382.372120pt;}
.x35{left:388.918480pt;}
.x8e{left:395.100000pt;}
.xd1{left:397.375467pt;}
.x4{left:399.600000pt;}
.xd3{left:406.086133pt;}
.xc5{left:410.044400pt;}
.xbc{left:413.933333pt;}
.xbb{left:419.201067pt;}
.xd2{left:426.410933pt;}
.x75{left:431.719333pt;}
.x96{left:436.600000pt;}
.x6e{left:442.636400pt;}
.x85{left:445.933333pt;}
.x6c{left:450.553600pt;}
.x72{left:451.934267pt;}
.x25{left:454.126480pt;}
.x8b{left:460.433333pt;}
.x17{left:464.418933pt;}
.xa8{left:471.833067pt;}
.x86{left:474.600000pt;}
.xd4{left:480.126400pt;}
.x1f{left:495.716267pt;}
.xcf{left:498.999333pt;}
.x5c{left:504.615467pt;}
.x5f{left:511.766667pt;}
.xd0{left:519.324133pt;}
.x22{left:525.196773pt;}
.x8d{left:528.433333pt;}
.x6f{left:531.192933pt;}
.x73{left:532.490800pt;}
.x7d{left:550.599867pt;}
.x5a{left:555.480027pt;}
.x7c{left:558.600000pt;}
.xc7{left:560.342533pt;}
.x58{left:567.386293pt;}
.xa6{left:572.766667pt;}
.xb4{left:576.933333pt;}
.xc0{left:578.266667pt;}
.x32{left:579.433333pt;}
.xc2{left:580.433333pt;}
.x7b{left:581.600000pt;}
.xa9{left:586.499733pt;}
.x11{left:591.433333pt;}
.x7f{left:598.433333pt;}
.xb6{left:602.100000pt;}
.x5b{left:604.094613pt;}
.x37{left:606.012509pt;}
.x7a{left:611.766667pt;}
.x15{left:613.218933pt;}
.x43{left:617.100000pt;}
.xc1{left:618.100000pt;}
.xb5{left:623.933200pt;}
.xc9{left:628.583067pt;}
.x77{left:629.930933pt;}
.x53{left:631.558667pt;}
.x24{left:634.397333pt;}
.x3b{left:642.381600pt;}
.x59{left:643.855053pt;}
.x38{left:655.634907pt;}
.x3d{left:661.326267pt;}
.x16{left:665.476133pt;}
.x3{left:666.766667pt;}
.x39{left:674.183080pt;}
.x3c{left:676.284933pt;}
.x99{left:682.000000pt;}
.x3e{left:683.084267pt;}
.xaa{left:692.333067pt;}
.x33{left:700.766667pt;}
.x9a{left:702.500000pt;}
.x7e{left:709.599867pt;}
.x56{left:714.448667pt;}
.x70{left:720.895733pt;}
.x2d{left:724.833467pt;}
.x79{left:725.933200pt;}
.x55{left:729.448667pt;}
.xa3{left:736.762367pt;}
.x20{left:738.465200pt;}
.xc8{left:745.957067pt;}
.xa2{left:747.148435pt;}
.x89{left:752.933200pt;}
.x21{left:761.131867pt;}
.xa4{left:762.064453pt;}
.x98{left:777.766667pt;}
.x57{left:785.996667pt;}
.x74{left:787.001333pt;}
.x87{left:812.100000pt;}
.xab{left:816.166400pt;}
.x88{left:819.599867pt;}
.xa5{left:832.372240pt;}
.xda{left:844.933200pt;}
.xb9{left:849.599867pt;}
.xd9{left:852.433333pt;}
.xd6{left:860.100000pt;}
.xd7{left:873.933333pt;}
}




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