
    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_cebe3e2ac8b0e1e714fb04b9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_40e25e9f10865d8ee788c368.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c12e13266610315a0b61059d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_b64af8a292163d79edc9fc4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_52884051ead40bcfd659597b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cebe3e2ac8b0e1e714fb04b9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9da80e081f1f3f095e9e1936.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_f708c0edb8533353aed3e1a8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4502710493a2771bd8ab65da.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.070312;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_cebe3e2ac8b0e1e714fb04b9.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_5ec69459825e110c95ccd130.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_de256885fc1f7b201ee437f7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.070312;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_59e946d5092622643a515fff.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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_057b5641e1d193529ac79a95.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_bb1478edd1033ebcb7f32382.woff2')format("woff");}.fff{font-family:fff;line-height:1.575000;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_01a005ce6c8e9210e724714e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.070312;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_c5b69a9c7a61fbc5df151959.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a005cc92a1543870431ee76e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.070312;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_6c2c2ba2f667c7bbd715af15.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.575000;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_a164feda6029924aece94415.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.070312;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_29b900e838490b214fcd87b1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_eed8577262e7e0dcc38f07f4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.070312;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_5ec69459825e110c95ccd130.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_057b5641e1d193529ac79a95.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_5998f257703f6179b593509a.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_edc5fa2218f9170c865e5e43.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_55b69ab37c865f5c3047bd24.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.740234;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_25ca954e4cc14351080be2b2.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_d39b7c7f17fd561191b14603.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.070312;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_cebe3e2ac8b0e1e714fb04b9.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_cebe3e2ac8b0e1e714fb04b9.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_7adb3b83264b400dc239917e.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_98e09899cbb6b669d12e52c4.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.070312;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_95d6981222ec622f3d224ffb.woff2')format("woff");}.ff22{font-family:ff22;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls6e{letter-spacing:-0.810000px;}
.ls63{letter-spacing:-0.671040px;}
.ls4f{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.468720px;}
.ls1e{letter-spacing:-0.432000px;}
.ls59{letter-spacing:-0.420840px;}
.ls55{letter-spacing:-0.300600px;}
.ls3{letter-spacing:-0.234360px;}
.ls4e{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.192240px;}
.ls54{letter-spacing:-0.167760px;}
.ls6d{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.131760px;}
.ls30{letter-spacing:-0.120240px;}
.ls4{letter-spacing:-0.119880px;}
.ls18{letter-spacing:-0.113760px;}
.ls6f{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.096120px;}
.ls67{letter-spacing:-0.095760px;}
.ls3b{letter-spacing:-0.083880px;}
.lsb{letter-spacing:-0.072000px;}
.ls3c{letter-spacing:-0.060120px;}
.ls17{letter-spacing:-0.056880px;}
.ls50{letter-spacing:-0.038880px;}
.ls1{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.018000px;}
.ls25{letter-spacing:0.018720px;}
.ls1d{letter-spacing:0.021960px;}
.ls13{letter-spacing:0.027360px;}
.ls12{letter-spacing:0.043200px;}
.ls19{letter-spacing:0.056880px;}
.ls5c{letter-spacing:0.057600px;}
.ls8{letter-spacing:0.060120px;}
.ls5a{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065880px;}
.ls11{letter-spacing:0.072000px;}
.ls33{letter-spacing:0.083880px;}
.ls6a{letter-spacing:0.108000px;}
.ls3a{letter-spacing:0.120240px;}
.ls21{letter-spacing:0.129600px;}
.ls20{letter-spacing:0.131760px;}
.ls2c{letter-spacing:0.136800px;}
.ls7{letter-spacing:0.140040px;}
.ls10{letter-spacing:0.144000px;}
.lse{letter-spacing:0.148536px;}
.ls0{letter-spacing:0.156240px;}
.ls40{letter-spacing:0.167760px;}
.ls1c{letter-spacing:0.170640px;}
.ls52{letter-spacing:0.180360px;}
.lsf{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.227520px;}
.ls58{letter-spacing:0.251640px;}
.ls36{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.341280px;}
.ls68{letter-spacing:0.378000px;}
.ls6c{letter-spacing:0.405000px;}
.ls72{letter-spacing:0.464400px;}
.ls34{letter-spacing:0.504000px;}
.ls47{letter-spacing:0.541080px;}
.ls6b{letter-spacing:0.615600px;}
.ls37{letter-spacing:0.856800px;}
.ls38{letter-spacing:0.864000px;}
.ls61{letter-spacing:0.901800px;}
.lsa{letter-spacing:1.286640px;}
.ls66{letter-spacing:1.584000px;}
.ls43{letter-spacing:1.623240px;}
.ls5b{letter-spacing:1.944000px;}
.ls4d{letter-spacing:1.983960px;}
.ls2d{letter-spacing:2.304000px;}
.ls39{letter-spacing:2.344680px;}
.ls24{letter-spacing:3.024000px;}
.ls5f{letter-spacing:3.066120px;}
.ls3d{letter-spacing:3.369600px;}
.ls48{letter-spacing:3.376800px;}
.ls2a{letter-spacing:3.384000px;}
.ls2e{letter-spacing:3.426840px;}
.ls27{letter-spacing:3.729600px;}
.ls5e{letter-spacing:3.736800px;}
.ls28{letter-spacing:3.744000px;}
.ls46{letter-spacing:3.787560px;}
.ls6{letter-spacing:3.806640px;}
.ls4a{letter-spacing:4.464000px;}
.ls26{letter-spacing:4.824000px;}
.ls3f{letter-spacing:5.169600px;}
.ls56{letter-spacing:5.176800px;}
.ls44{letter-spacing:5.184000px;}
.ls65{letter-spacing:5.536800px;}
.ls4c{letter-spacing:5.544000px;}
.ls3e{letter-spacing:5.904000px;}
.ls4b{letter-spacing:6.264000px;}
.ls9{letter-spacing:6.312600px;}
.ls71{letter-spacing:6.525360px;}
.ls49{letter-spacing:6.624000px;}
.ls53{letter-spacing:6.673320px;}
.ls62{letter-spacing:6.976800px;}
.ls57{letter-spacing:6.984000px;}
.ls45{letter-spacing:7.344000px;}
.ls23{letter-spacing:7.704000px;}
.ls41{letter-spacing:8.056800px;}
.ls35{letter-spacing:8.784000px;}
.ls31{letter-spacing:9.144000px;}
.ls29{letter-spacing:10.224000px;}
.ls64{letter-spacing:10.944000px;}
.ls22{letter-spacing:11.296800px;}
.ls51{letter-spacing:11.664000px;}
.ls5d{letter-spacing:12.002400px;}
.ls42{letter-spacing:13.527000px;}
.ls60{letter-spacing:13.824000px;}
.ls70{letter-spacing:27.828000px;}
.ls2b{letter-spacing:54.864000px;}
.ls32{letter-spacing:64.168200px;}
.lsc{letter-spacing:95.271120px;}
.lsd{letter-spacing:101.031120px;}
.ls14{letter-spacing:843.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-26.625240px;}
.ws60{word-spacing:-23.486400px;}
.ws54{word-spacing:-23.402520px;}
.ws55{word-spacing:-23.234760px;}
.ws7d{word-spacing:-23.150880px;}
.ws2{word-spacing:-21.717360px;}
.ws1{word-spacing:-21.483000px;}
.ws0{word-spacing:-21.248640px;}
.ws74{word-spacing:-20.304000px;}
.ws23{word-spacing:-20.232000px;}
.ws7e{word-spacing:-20.160000px;}
.ws1c{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.944000px;}
.ws1b{word-spacing:-19.872000px;}
.ws2d{word-spacing:-19.584000px;}
.ws76{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.380520px;}
.ws30{word-spacing:-18.314640px;}
.ws2f{word-spacing:-18.182880px;}
.wsa4{word-spacing:-16.833600px;}
.ws9{word-spacing:-16.773480px;}
.ws9c{word-spacing:-16.713360px;}
.ws56{word-spacing:-16.653240px;}
.ws43{word-spacing:-16.593120px;}
.ws92{word-spacing:-16.412760px;}
.ws84{word-spacing:-16.292520px;}
.ws21{word-spacing:-16.153920px;}
.ws20{word-spacing:-16.040160px;}
.ws22{word-spacing:-15.983280px;}
.ws1f{word-spacing:-15.869520px;}
.ws1e{word-spacing:-15.755760px;}
.ws1d{word-spacing:-15.698880px;}
.wsa6{word-spacing:-15.120000px;}
.wsa8{word-spacing:-14.904000px;}
.wsa5{word-spacing:-14.850000px;}
.wsa7{word-spacing:-14.202000px;}
.ws75{word-spacing:-13.310640px;}
.ws42{word-spacing:-10.808640px;}
.ws77{word-spacing:-10.769760px;}
.ws6f{word-spacing:-5.536080px;}
.ws46{word-spacing:-4.464000px;}
.ws50{word-spacing:-4.104000px;}
.ws4f{word-spacing:-3.744000px;}
.ws9d{word-spacing:-3.460320px;}
.wsb0{word-spacing:-3.456000px;}
.wsf{word-spacing:-3.426840px;}
.ws37{word-spacing:-3.384000px;}
.ws85{word-spacing:-3.312000px;}
.wsaf{word-spacing:-3.294000px;}
.ws40{word-spacing:-3.240000px;}
.ws8b{word-spacing:-3.066120px;}
.ws3e{word-spacing:-3.024000px;}
.ws3f{word-spacing:-2.952000px;}
.ws19{word-spacing:-2.705400px;}
.ws4c{word-spacing:-2.664000px;}
.ws38{word-spacing:-2.304000px;}
.ws9b{word-spacing:-2.232000px;}
.ws88{word-spacing:-1.983960px;}
.ws39{word-spacing:-1.944000px;}
.wsb3{word-spacing:-1.890000px;}
.ws86{word-spacing:-1.872000px;}
.wsb2{word-spacing:-1.782000px;}
.wsc1{word-spacing:-1.674000px;}
.ws31{word-spacing:-1.584000px;}
.wsc0{word-spacing:-1.566000px;}
.wsb7{word-spacing:-1.512000px;}
.ws18{word-spacing:-1.262520px;}
.ws4e{word-spacing:-1.224000px;}
.ws9f{word-spacing:-1.152000px;}
.ws8a{word-spacing:-0.901800px;}
.ws62{word-spacing:-0.864000px;}
.ws5{word-spacing:-0.624960px;}
.ws83{word-spacing:-0.541080px;}
.ws6c{word-spacing:-0.504000px;}
.wsba{word-spacing:-0.432000px;}
.wsa{word-spacing:-0.395280px;}
.ws41{word-spacing:-0.360000px;}
.ws5e{word-spacing:-0.288000px;}
.ws4{word-spacing:-0.234360px;}
.ws2e{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.180360px;}
.ws7f{word-spacing:-0.167760px;}
.ws25{word-spacing:-0.144000px;}
.wsa1{word-spacing:-0.120240px;}
.wsb1{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.096120px;}
.ws6e{word-spacing:-0.083880px;}
.ws26{word-spacing:-0.072000px;}
.ws3c{word-spacing:-0.065880px;}
.wse{word-spacing:-0.060120px;}
.wsc3{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws2a{word-spacing:0.056880px;}
.ws2c{word-spacing:0.072000px;}
.ws94{word-spacing:0.083880px;}
.wsa3{word-spacing:0.095760px;}
.ws9e{word-spacing:0.096120px;}
.wsb5{word-spacing:0.108000px;}
.ws28{word-spacing:0.113760px;}
.wsa2{word-spacing:0.120240px;}
.ws34{word-spacing:0.144000px;}
.wsab{word-spacing:0.162000px;}
.ws5c{word-spacing:0.167760px;}
.ws29{word-spacing:0.170640px;}
.ws81{word-spacing:0.180360px;}
.ws44{word-spacing:0.192240px;}
.wsb{word-spacing:0.216000px;}
.wsaa{word-spacing:0.270000px;}
.ws24{word-spacing:0.288000px;}
.wsa9{word-spacing:0.300600px;}
.ws5a{word-spacing:0.335520px;}
.ws6{word-spacing:0.359640px;}
.ws3d{word-spacing:0.395280px;}
.ws71{word-spacing:0.432000px;}
.ws27{word-spacing:0.455040px;}
.ws78{word-spacing:0.503280px;}
.ws2b{word-spacing:0.511920px;}
.ws73{word-spacing:0.541080px;}
.ws5b{word-spacing:0.576000px;}
.wsc2{word-spacing:0.648000px;}
.ws98{word-spacing:0.671040px;}
.ws97{word-spacing:0.901800px;}
.ws35{word-spacing:0.936000px;}
.ws36{word-spacing:1.008000px;}
.ws13{word-spacing:1.262520px;}
.ws8d{word-spacing:1.296000px;}
.ws11{word-spacing:1.623240px;}
.ws4b{word-spacing:1.656000px;}
.ws89{word-spacing:1.728000px;}
.wsb9{word-spacing:1.944000px;}
.ws7c{word-spacing:1.983960px;}
.ws52{word-spacing:2.016000px;}
.wsb8{word-spacing:2.106000px;}
.ws58{word-spacing:2.160000px;}
.ws96{word-spacing:2.164320px;}
.ws5f{word-spacing:2.344680px;}
.ws51{word-spacing:2.376000px;}
.wsbe{word-spacing:2.646000px;}
.ws14{word-spacing:2.705400px;}
.ws9a{word-spacing:2.736000px;}
.wsac{word-spacing:2.808000px;}
.ws91{word-spacing:3.066120px;}
.ws6d{word-spacing:3.096000px;}
.ws53{word-spacing:3.426840px;}
.ws66{word-spacing:3.456000px;}
.wsd{word-spacing:3.787560px;}
.ws3a{word-spacing:3.816000px;}
.wsbd{word-spacing:3.888000px;}
.wsc5{word-spacing:4.104000px;}
.ws7b{word-spacing:4.176000px;}
.wsc6{word-spacing:4.266000px;}
.ws45{word-spacing:4.536000px;}
.ws8c{word-spacing:4.608000px;}
.ws4a{word-spacing:4.896000px;}
.wsb6{word-spacing:4.968000px;}
.ws32{word-spacing:5.256000px;}
.wsbc{word-spacing:5.346000px;}
.ws61{word-spacing:5.616000px;}
.wsb4{word-spacing:5.670000px;}
.ws7a{word-spacing:5.688000px;}
.ws67{word-spacing:5.976000px;}
.wsbf{word-spacing:6.048000px;}
.ws12{word-spacing:6.252480px;}
.ws68{word-spacing:6.336000px;}
.ws82{word-spacing:6.613200px;}
.ws59{word-spacing:6.696000px;}
.ws72{word-spacing:7.056000px;}
.ws79{word-spacing:7.128000px;}
.ws63{word-spacing:7.416000px;}
.ws49{word-spacing:7.776000px;}
.ws87{word-spacing:7.848000px;}
.ws69{word-spacing:8.136000px;}
.ws6a{word-spacing:8.208000px;}
.ws70{word-spacing:8.496000px;}
.ws5d{word-spacing:8.856000px;}
.ws57{word-spacing:9.216000px;}
.ws90{word-spacing:9.288000px;}
.ws16{word-spacing:9.498960px;}
.ws64{word-spacing:9.576000px;}
.ws33{word-spacing:9.936000px;}
.wsad{word-spacing:10.206000px;}
.ws4d{word-spacing:10.296000px;}
.wsae{word-spacing:10.368000px;}
.ws99{word-spacing:10.656000px;}
.ws3b{word-spacing:11.016000px;}
.ws65{word-spacing:11.376000px;}
.ws10{word-spacing:11.663280px;}
.ws47{word-spacing:11.736000px;}
.ws48{word-spacing:11.808000px;}
.ws8f{word-spacing:12.096000px;}
.ws8e{word-spacing:12.456000px;}
.wsc4{word-spacing:12.906000px;}
.ws6b{word-spacing:13.466880px;}
.ws17{word-spacing:13.827600px;}
.ws93{word-spacing:13.896000px;}
.ws80{word-spacing:14.616000px;}
.ws95{word-spacing:15.336000px;}
.wsa0{word-spacing:20.320560px;}
.wsbb{word-spacing:28.026000px;}
._c{margin-left:-18.941256px;}
._5{margin-left:-17.447976px;}
._9{margin-left:-14.501700px;}
._6{margin-left:-12.476088px;}
._b{margin-left:-11.446488px;}
._3{margin-left:-9.683964px;}
._8{margin-left:-8.445312px;}
._7{margin-left:-6.690168px;}
._a{margin-left:-5.020488px;}
._d{margin-left:-3.843072px;}
._4{margin-left:-2.736000px;}
._1{margin-left:-1.054620px;}
._2{width:1.163988px;}
._14{width:2.592000px;}
._e{width:3.732012px;}
._12{width:5.076036px;}
._15{width:6.371964px;}
._13{width:7.483212px;}
._10{width:8.844012px;}
._11{width:10.152000px;}
._16{width:13.020012px;}
._18{width:27.864072px;}
._f{width:90.064440px;}
._17{width:844.381440px;}
._0{width:2127.133440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:18.000000px;}
.fs5{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.120000px;}
.fsa{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs2{font-size:119.880000px;}
.y4f{bottom:-215.640000px;}
.y4e{bottom:-189.720000px;}
.y4d{bottom:-163.890000px;}
.y4c{bottom:-137.970000px;}
.y4b{bottom:-112.140000px;}
.y4a{bottom:-86.220000px;}
.y49{bottom:-60.390000px;}
.y48{bottom:-34.470000px;}
.y47{bottom:-8.640000px;}
.y1f{bottom:-2.970000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.600000px;}
.y1d8{bottom:5.850000px;}
.y1da{bottom:6.030000px;}
.y214{bottom:9.810000px;}
.y20d{bottom:9.900000px;}
.y20c{bottom:9.990000px;}
.y1c8{bottom:10.620000px;}
.y3a{bottom:10.890000px;}
.y7f{bottom:11.700000px;}
.y27{bottom:12.960000px;}
.y1b{bottom:14.400000px;}
.y38{bottom:15.570000px;}
.y22{bottom:17.910000px;}
.y25{bottom:20.250000px;}
.y1e{bottom:23.400000px;}
.y1d6{bottom:25.650000px;}
.y226{bottom:27.630000px;}
.y212{bottom:27.720000px;}
.y35{bottom:27.810000px;}
.y1c3{bottom:28.170000px;}
.y1c7{bottom:30.420000px;}
.y20f{bottom:32.130000px;}
.y21f{bottom:32.220000px;}
.y1d{bottom:39.600000px;}
.y1d5{bottom:45.540000px;}
.y1c6{bottom:50.310000px;}
.y21{bottom:50.850000px;}
.y33{bottom:53.730000px;}
.y51{bottom:57.330000px;}
.y204{bottom:57.510720px;}
.y4{bottom:57.604680px;}
.y1d3{bottom:65.340000px;}
.y1f5{bottom:70.830000px;}
.y3{bottom:73.350000px;}
.y203{bottom:77.670000px;}
.y32{bottom:79.560000px;}
.y1d1{bottom:85.230000px;}
.yb5{bottom:97.375500px;}
.y1f4{bottom:98.550000px;}
.y1b6{bottom:102.600000px;}
.y1d0{bottom:105.030000px;}
.y30{bottom:105.480000px;}
.y234{bottom:109.530000px;}
.y1f2{bottom:114.390000px;}
.y236{bottom:119.430000px;}
.yb4{bottom:119.880000px;}
.y1ce{bottom:124.830000px;}
.y1b5{bottom:128.880000px;}
.y2e{bottom:131.310000px;}
.y126{bottom:132.570000px;}
.y235{bottom:137.250000px;}
.y262{bottom:138.510000px;}
.y1f0{bottom:139.230000px;}
.yd3{bottom:140.845500px;}
.yb3{bottom:140.850000px;}
.y1b4{bottom:141.570000px;}
.y1cc{bottom:144.720000px;}
.y1bc{bottom:155.070000px;}
.y2c{bottom:157.230000px;}
.y168{bottom:158.130000px;}
.yb2{bottom:163.350000px;}
.y1cb{bottom:164.610000px;}
.y231{bottom:167.580000px;}
.y1bb{bottom:167.760000px;}
.y261{bottom:173.520000px;}
.yb1{bottom:176.040000px;}
.y233{bottom:177.480000px;}
.y1ed{bottom:180.000000px;}
.y2a{bottom:183.060000px;}
.y14f{bottom:184.405500px;}
.y111{bottom:189.630000px;}
.y202{bottom:190.440000px;}
.y232{bottom:195.300000px;}
.y1eb{bottom:195.840000px;}
.y260{bottom:195.930000px;}
.y50{bottom:201.150000px;}
.y167{bottom:201.240000px;}
.y110{bottom:202.320000px;}
.y200{bottom:206.100000px;}
.y14e{bottom:206.910000px;}
.y29{bottom:208.890000px;}
.y46{bottom:216.810000px;}
.y25d{bottom:218.250000px;}
.y14d{bottom:219.510000px;}
.y1e9{bottom:220.680000px;}
.y3c{bottom:222.030000px;}
.y201{bottom:224.370000px;}
.y166{bottom:225.090000px;}
.y230{bottom:225.630000px;}
.y25f{bottom:228.060000px;}
.y10f{bottom:230.220000px;}
.y1ff{bottom:231.840000px;}
.yd2{bottom:233.640000px;}
.y1e7{bottom:236.610000px;}
.yf1{bottom:239.850000px;}
.y1b3{bottom:241.290000px;}
.y25e{bottom:245.970000px;}
.y22f{bottom:248.040000px;}
.y165{bottom:248.850000px;}
.y91{bottom:249.480000px;}
.y1fd{bottom:250.470000px;}
.yb0{bottom:251.640000px;}
.y1e6{bottom:252.450000px;}
.yd1{bottom:257.490000px;}
.yf0{bottom:263.700000px;}
.y125{bottom:265.050000px;}
.y1fb{bottom:266.310000px;}
.y1e4{bottom:268.290000px;}
.y22e{bottom:270.360000px;}
.y10e{bottom:274.680000px;}
.yaf{bottom:275.400000px;}
.y25c{bottom:276.300000px;}
.yd0{bottom:281.250000px;}
.y1f9{bottom:282.240000px;}
.y1e2{bottom:284.220000px;}
.y182{bottom:286.650000px;}
.yef{bottom:287.460000px;}
.y44{bottom:288.000000px;}
.y164{bottom:288.719010px;}
.y124{bottom:288.900000px;}
.y22d{bottom:292.680000px;}
.y90{bottom:294.030000px;}
.y10d{bottom:298.530000px;}
.y25a{bottom:298.620000px;}
.y1f8{bottom:299.160000px;}
.yae{bottom:299.250000px;}
.y1e1{bottom:300.060000px;}
.ycf{bottom:305.100000px;}
.y140{bottom:307.350000px;}
.y25b{bottom:308.520000px;}
.y181{bottom:310.410000px;}
.yee{bottom:311.310000px;}
.y1b2{bottom:312.660000px;}
.y43{bottom:313.920000px;}
.y22a{bottom:315.090000px;}
.y1df{bottom:315.900000px;}
.y8f{bottom:317.790000px;}
.y1f6{bottom:318.960000px;}
.y195{bottom:319.410000px;}
.y10c{bottom:322.290000px;}
.y22c{bottom:324.900000px;}
.y123{bottom:327.600000px;}
.y163{bottom:327.870000px;}
.y1de{bottom:328.770000px;}
.y13f{bottom:331.110000px;}
.y180{bottom:334.260000px;}
.yed{bottom:335.070000px;}
.y1b1{bottom:336.510000px;}
.yad{bottom:338.850000px;}
.y41{bottom:339.750000px;}
.y8e{bottom:341.550000px;}
.y22b{bottom:342.810000px;}
.y194{bottom:343.170000px;}
.yce{bottom:344.969010px;}
.y10b{bottom:346.140000px;}
.y259{bottom:348.660000px;}
.y13e{bottom:354.960000px;}
.y1dc{bottom:357.570000px;}
.y17f{bottom:358.020000px;}
.yec{bottom:358.920000px;}
.y1b0{bottom:360.270000px;}
.y3f{bottom:365.670000px;}
.y122{bottom:367.650000px;}
.y162{bottom:369.540000px;}
.y10a{bottom:369.900000px;}
.y228{bottom:373.140000px;}
.y8d{bottom:373.320000px;}
.y13d{bottom:378.720000px;}
.y257{bottom:379.080000px;}
.yac{bottom:379.800000px;}
.y17e{bottom:381.780000px;}
.y193{bottom:381.960000px;}
.yeb{bottom:382.680000px;}
.y229{bottom:382.950000px;}
.ycd{bottom:384.120000px;}
.y258{bottom:388.890000px;}
.y3e{bottom:391.500000px;}
.y161{bottom:393.390000px;}
.y109{bottom:393.750000px;}
.y8c{bottom:400.320000px;}
.y13c{bottom:402.570000px;}
.y17d{bottom:405.630000px;}
.y121{bottom:407.610000px;}
.y1af{bottom:407.880000px;}
.y6e{bottom:412.740000px;}
.y225{bottom:413.370000px;}
.y160{bottom:417.150000px;}
.y3d{bottom:417.420000px;}
.y108{bottom:417.510000px;}
.yea{bottom:418.950000px;}
.y255{bottom:419.310000px;}
.yab{bottom:420.660000px;}
.y192{bottom:422.010000px;}
.y227{bottom:423.180000px;}
.ycc{bottom:425.790000px;}
.y8b{bottom:427.320000px;}
.y256{bottom:429.120000px;}
.y17c{bottom:429.390000px;}
.y1ae{bottom:431.730000px;}
.y13b{bottom:438.840000px;}
.y15f{bottom:441.000000px;}
.y107{bottom:441.360000px;}
.y1db{bottom:441.540000px;}
.y191{bottom:445.770000px;}
.y120{bottom:447.750000px;}
.ycb{bottom:449.640000px;}
.y223{bottom:453.510000px;}
.y6d{bottom:454.140000px;}
.y8a{bottom:454.320000px;}
.ye9{bottom:460.620000px;}
.yaa{bottom:461.520000px;}
.y224{bottom:463.410000px;}
.y253{bottom:463.950000px;}
.y15e{bottom:464.760000px;}
.y106{bottom:465.120000px;}
.y17b{bottom:469.354500px;}
.y11f{bottom:471.510000px;}
.y1ad{bottom:471.596670px;}
.yca{bottom:473.400000px;}
.y254{bottom:473.850000px;}
.y13a{bottom:480.510000px;}
.y89{bottom:481.320000px;}
.y19{bottom:481.941930px;}
.y6c{bottom:483.840000px;}
.ye8{bottom:484.470000px;}
.y190{bottom:485.820000px;}
.y15d{bottom:488.610000px;}
.y105{bottom:488.970000px;}
.y17a{bottom:493.470000px;}
.y222{bottom:493.740000px;}
.y11e{bottom:495.360000px;}
.yc9{bottom:497.250000px;}
.y1ac{bottom:499.235130px;}
.ya9{bottom:501.570000px;}
.y251{bottom:504.180000px;}
.y139{bottom:504.270000px;}
.y6b{bottom:504.540000px;}
.ye7{bottom:508.230000px;}
.y88{bottom:508.320000px;}
.y18f{bottom:509.580000px;}
.y45{bottom:510.030000px;}
.y15c{bottom:512.370000px;}
.y104{bottom:512.730000px;}
.y252{bottom:513.990000px;}
.y221{bottom:516.060000px;}
.y11d{bottom:519.120000px;}
.y18{bottom:520.102920px;}
.yc8{bottom:521.010000px;}
.y6a{bottom:525.240000px;}
.ya8{bottom:525.330000px;}
.y138{bottom:528.120000px;}
.y1ba{bottom:531.720000px;}
.ye6{bottom:532.080000px;}
.y179{bottom:535.140000px;}
.y87{bottom:535.320000px;}
.y15b{bottom:536.220000px;}
.y1ab{bottom:538.470000px;}
.y11c{bottom:542.970000px;}
.yc7{bottom:544.860000px;}
.y69{bottom:545.940000px;}
.y24f{bottom:548.910000px;}
.y103{bottom:549.000000px;}
.ya7{bottom:549.090000px;}
.y18e{bottom:549.630000px;}
.y137{bottom:551.880000px;}
.y1b9{bottom:555.480000px;}
.y1f3{bottom:555.930000px;}
.y17{bottom:558.263910px;}
.y14c{bottom:558.540000px;}
.y250{bottom:558.720000px;}
.y178{bottom:558.990000px;}
.y15a{bottom:559.980000px;}
.y21e{bottom:560.790000px;}
.y42{bottom:561.780000px;}
.y86{bottom:562.320000px;}
.y68{bottom:566.640000px;}
.y11b{bottom:566.730000px;}
.yc6{bottom:568.620000px;}
.y220{bottom:570.690000px;}
.ye5{bottom:570.870000px;}
.ya6{bottom:572.940000px;}
.y18d{bottom:573.480000px;}
.y136{bottom:575.730000px;}
.y1b8{bottom:579.330000px;}
.y1aa{bottom:580.140000px;}
.y1f1{bottom:580.770000px;}
.y177{bottom:582.750000px;}
.y67{bottom:587.340000px;}
.y40{bottom:587.700000px;}
.y24d{bottom:589.050000px;}
.y85{bottom:589.320000px;}
.y102{bottom:590.670000px;}
.yc5{bottom:592.470000px;}
.ye4{bottom:594.630000px;}
.y16{bottom:596.424900px;}
.y1ef{bottom:596.610000px;}
.ya5{bottom:596.700000px;}
.y24e{bottom:598.950000px;}
.y135{bottom:599.490000px;}
.y159{bottom:599.849010px;}
.y14b{bottom:603.090000px;}
.y1a9{bottom:603.990000px;}
.y21c{bottom:605.520000px;}
.y11a{bottom:606.599010px;}
.y176{bottom:606.600000px;}
.y18c{bottom:613.349010px;}
.y101{bottom:614.520000px;}
.y21d{bottom:615.330000px;}
.y84{bottom:616.320000px;}
.ye3{bottom:618.480000px;}
.y1ee{bottom:621.540000px;}
.y66{bottom:622.980000px;}
.y134{bottom:623.340000px;}
.y14a{bottom:626.940000px;}
.y1a8{bottom:627.750000px;}
.yc4{bottom:628.650000px;}
.y175{bottom:630.360000px;}
.y24c{bottom:633.780000px;}
.y15{bottom:634.585890px;}
.ya4{bottom:635.580000px;}
.y1ec{bottom:637.380000px;}
.y100{bottom:638.280000px;}
.y158{bottom:639.000000px;}
.ye2{bottom:642.240000px;}
.y83{bottom:643.320000px;}
.y119{bottom:645.750000px;}
.y133{bottom:647.100000px;}
.y149{bottom:650.700000px;}
.y1a7{bottom:651.600000px;}
.y18b{bottom:652.500000px;}
.y65{bottom:652.680000px;}
.y39{bottom:653.310000px;}
.y174{bottom:654.120000px;}
.y24b{bottom:656.190000px;}
.ya3{bottom:659.340000px;}
.yff{bottom:662.130000px;}
.y1ea{bottom:662.220000px;}
.y3b{bottom:664.200000px;}
.ye1{bottom:666.090000px;}
.y21b{bottom:668.070000px;}
.y82{bottom:670.320000px;}
.y132{bottom:670.860000px;}
.yc3{bottom:671.310000px;}
.y14{bottom:672.746880px;}
.y64{bottom:673.380000px;}
.y148{bottom:674.550000px;}
.y1a6{bottom:675.360000px;}
.y173{bottom:677.970000px;}
.y1e8{bottom:678.150000px;}
.y37{bottom:681.030000px;}
.y157{bottom:681.660000px;}
.ya2{bottom:683.190000px;}
.yfe{bottom:685.890000px;}
.y118{bottom:688.320000px;}
.y219{bottom:690.390000px;}
.y1fe{bottom:692.010000px;}
.y63{bottom:694.080000px;}
.y131{bottom:694.710000px;}
.y18a{bottom:695.070000px;}
.y81{bottom:697.320000px;}
.y147{bottom:698.310000px;}
.y1a5{bottom:699.210000px;}
.y21a{bottom:700.290000px;}
.y24a{bottom:700.830000px;}
.y172{bottom:701.730000px;}
.ye0{bottom:704.880000px;}
.y1fc{bottom:707.850000px;}
.yfd{bottom:709.740000px;}
.y1e5{bottom:709.830000px;}
.y28{bottom:710.460000px;}
.y1b7{bottom:710.820000px;}
.y13{bottom:710.907870px;}
.yc2{bottom:712.170000px;}
.y62{bottom:714.780000px;}
.y130{bottom:718.470000px;}
.ya1{bottom:721.980000px;}
.y146{bottom:722.160000px;}
.y156{bottom:722.520000px;}
.y1a4{bottom:722.970000px;}
.y248{bottom:723.240000px;}
.y1fa{bottom:723.780000px;}
.y80{bottom:724.320000px;}
.y171{bottom:725.580000px;}
.y1e3{bottom:725.760000px;}
.ydf{bottom:728.640000px;}
.y117{bottom:729.270000px;}
.y217{bottom:730.620000px;}
.y249{bottom:733.050000px;}
.yfc{bottom:733.500000px;}
.y189{bottom:735.930000px;}
.y36{bottom:738.270000px;}
.y218{bottom:740.430000px;}
.y12f{bottom:742.320000px;}
.ya0{bottom:745.740000px;}
.y145{bottom:745.920000px;}
.y1a3{bottom:746.820000px;}
.y12{bottom:749.068860px;}
.y170{bottom:749.340000px;}
.y61{bottom:750.510000px;}
.y7d{bottom:751.320000px;}
.yde{bottom:752.490000px;}
.yc1{bottom:753.030000px;}
.yfb{bottom:757.350000px;}
.y1e0{bottom:757.440000px;}
.y1f7{bottom:760.500000px;}
.y155{bottom:763.380000px;}
.y34{bottom:764.190000px;}
.y12e{bottom:766.080000px;}
.y9f{bottom:769.590000px;}
.y144{bottom:769.770000px;}
.y116{bottom:770.130000px;}
.y1a2{bottom:770.580000px;}
.y216{bottom:770.850000px;}
.y247{bottom:773.280000px;}
.ydd{bottom:776.250000px;}
.y188{bottom:776.880000px;}
.y60{bottom:780.210000px;}
.y1dd{bottom:780.390000px;}
.yfa{bottom:781.110000px;}
.y11{bottom:787.229850px;}
.y16f{bottom:789.300450px;}
.y12d{bottom:789.930000px;}
.y215{bottom:793.170000px;}
.y9e{bottom:793.350000px;}
.yc0{bottom:793.890000px;}
.ydc{bottom:800.100000px;}
.y7c{bottom:800.460000px;}
.y5f{bottom:800.910000px;}
.y245{bottom:803.610000px;}
.y154{bottom:804.240000px;}
.yf9{bottom:804.960000px;}
.y143{bottom:806.040000px;}
.y1d9{bottom:810.180000px;}
.y1a1{bottom:810.449010px;}
.y115{bottom:810.990000px;}
.y246{bottom:813.420000px;}
.y213{bottom:815.580000px;}
.y31{bottom:815.940000px;}
.y16e{bottom:816.938910px;}
.y187{bottom:817.740000px;}
.y5e{bottom:821.610000px;}
.ydb{bottom:823.860000px;}
.y7b{bottom:824.220000px;}
.y10{bottom:825.418170px;}
.yf8{bottom:828.720000px;}
.y1ca{bottom:830.070000px;}
.y9d{bottom:832.140000px;}
.ybf{bottom:834.840000px;}
.y211{bottom:837.900000px;}
.y2f{bottom:841.770000px;}
.y5d{bottom:842.310000px;}
.y243{bottom:843.840000px;}
.y153{bottom:844.200000px;}
.y16d{bottom:844.745130px;}
.yda{bottom:847.710000px;}
.y7a{bottom:848.070000px;}
.y1a0{bottom:849.600000px;}
.yf{bottom:851.061060px;}
.y114{bottom:851.850000px;}
.yf7{bottom:852.480000px;}
.y244{bottom:853.650000px;}
.y1d7{bottom:855.720000px;}
.y9c{bottom:855.990000px;}
.y186{bottom:858.600000px;}
.y5c{bottom:863.010000px;}
.y2d{bottom:867.690000px;}
.y152{bottom:868.050000px;}
.yd9{bottom:871.470000px;}
.y79{bottom:871.830000px;}
.ye{bottom:873.735390px;}
.ybe{bottom:875.700000px;}
.yf6{bottom:876.330000px;}
.y20e{bottom:878.130000px;}
.y9b{bottom:879.750000px;}
.y16c{bottom:883.980000px;}
.y210{bottom:887.940000px;}
.y19f{bottom:891.360000px;}
.y113{bottom:891.810000px;}
.y2b{bottom:893.520000px;}
.y242{bottom:893.880000px;}
.yd8{bottom:895.320000px;}
.y1d4{bottom:895.410000px;}
.y78{bottom:895.680000px;}
.yd{bottom:896.136300px;}
.y5b{bottom:898.650000px;}
.y185{bottom:899.460000px;}
.y12c{bottom:900.090000px;}
.y183{bottom:904.950000px;}
.y19e{bottom:915.120000px;}
.y1d2{bottom:915.300000px;}
.ybd{bottom:915.660000px;}
.yf5{bottom:916.199010px;}
.yc{bottom:918.537210px;}
.y9a{bottom:918.540000px;}
.yd7{bottom:919.080000px;}
.y77{bottom:919.440000px;}
.y20b{bottom:922.770000px;}
.y12b{bottom:923.940000px;}
.y240{bottom:924.210000px;}
.y16b{bottom:925.650000px;}
.y5a{bottom:928.350000px;}
.y151{bottom:930.690000px;}
.y26{bottom:933.210000px;}
.y241{bottom:934.110000px;}
.y19d{bottom:938.970000px;}
.ybc{bottom:939.420000px;}
.yb{bottom:940.860000px;}
.y99{bottom:942.300000px;}
.yd6{bottom:942.930000px;}
.y12a{bottom:947.700000px;}
.y59{bottom:949.050000px;}
.y16a{bottom:949.410000px;}
.y150{bottom:954.450000px;}
.y1cf{bottom:954.900000px;}
.yf4{bottom:955.350000px;}
.y76{bottom:958.140000px;}
.y20a{bottom:961.830000px;}
.y19c{bottom:962.730000px;}
.y24{bottom:963.000000px;}
.ybb{bottom:963.270000px;}
.y23f{bottom:964.440000px;}
.y98{bottom:966.060000px;}
.yd5{bottom:966.690000px;}
.y58{bottom:969.750000px;}
.y129{bottom:971.550000px;}
.y169{bottom:973.260000px;}
.y1cd{bottom:974.790000px;}
.y112{bottom:978.210000px;}
.ya{bottom:979.476300px;}
.y75{bottom:981.990000px;}
.y19b{bottom:986.580000px;}
.y23e{bottom:986.760000px;}
.y184{bottom:987.030000px;}
.y97{bottom:989.910000px;}
.y57{bottom:990.450000px;}
.y142{bottom:990.540000px;}
.y209{bottom:992.430000px;}
.yf3{bottom:997.020000px;}
.y20{bottom:997.110000px;}
.y1c1{bottom:997.920000px;}
.yba{bottom:1002.060000px;}
.yd4{bottom:1002.960000px;}
.y74{bottom:1005.750000px;}
.y1c5{bottom:1008.540000px;}
.y23d{bottom:1009.170000px;}
.y19a{bottom:1010.340000px;}
.y56{bottom:1011.150000px;}
.y128{bottom:1011.419010px;}
.y96{bottom:1013.670000px;}
.y141{bottom:1014.300000px;}
.y23{bottom:1015.020000px;}
.y9{bottom:1015.740000px;}
.y1c9{bottom:1019.160000px;}
.yf2{bottom:1020.870000px;}
.y1c0{bottom:1021.680000px;}
.y208{bottom:1023.022800px;}
.yb9{bottom:1025.820000px;}
.y23c{bottom:1031.490000px;}
.y55{bottom:1031.850000px;}
.y199{bottom:1034.100000px;}
.y95{bottom:1037.520000px;}
.y207{bottom:1041.660000px;}
.y73{bottom:1044.630000px;}
.y1bf{bottom:1045.530000px;}
.yb8{bottom:1049.670000px;}
.y8{bottom:1049.865390px;}
.y127{bottom:1050.570000px;}
.y23b{bottom:1053.810000px;}
.y198{bottom:1057.950000px;}
.y206{bottom:1060.282800px;}
.y94{bottom:1061.370000px;}
.y54{bottom:1067.580000px;}
.y72{bottom:1068.480000px;}
.y1be{bottom:1069.290000px;}
.y1c{bottom:1070.370000px;}
.y7{bottom:1072.266300px;}
.y1c2{bottom:1072.710000px;}
.yb7{bottom:1073.430000px;}
.y239{bottom:1076.220000px;}
.y205{bottom:1078.920000px;}
.y23a{bottom:1086.030000px;}
.y71{bottom:1092.240000px;}
.y1bd{bottom:1093.140000px;}
.y6{bottom:1094.589090px;}
.yb6{bottom:1097.280000px;}
.y197{bottom:1097.819010px;}
.y1c4{bottom:1100.880000px;}
.y93{bottom:1102.490550px;}
.y53{bottom:1103.310000px;}
.y70{bottom:1116.090000px;}
.y237{bottom:1116.360000px;}
.y5{bottom:1116.990000px;}
.y238{bottom:1126.260000px;}
.y1a{bottom:1126.800000px;}
.y92{bottom:1134.090000px;}
.y52{bottom:1134.180000px;}
.y196{bottom:1136.970000px;}
.y6f{bottom:1139.850000px;}
.y2{bottom:1226.970000px;}
.y1{bottom:1247.130000px;}
.h14{height:5.220000px;}
.h23{height:15.477539px;}
.h20{height:19.891500px;}
.h2d{height:22.320000px;}
.h2b{height:22.321500px;}
.h27{height:22.410000px;}
.ha{height:26.208984px;}
.h17{height:27.000000px;}
.h11{height:27.721500px;}
.h10{height:29.430000px;}
.h6{height:29.788500px;}
.h1a{height:33.431484px;}
.hd{height:34.110000px;}
.h24{height:34.857949px;}
.h2c{height:39.313477px;}
.h2f{height:40.140000px;}
.h31{height:40.141500px;}
.h2a{height:40.230000px;}
.h22{height:41.170254px;}
.h12{height:43.769004px;}
.h2{height:43.909277px;}
.h29{height:44.638500px;}
.h33{height:44.640000px;}
.h2e{height:44.730000px;}
.h32{height:44.731500px;}
.h28{height:46.432617px;}
.he{height:51.694980px;}
.h26{height:51.723780px;}
.h9{height:52.417969px;}
.h8{height:56.430000px;}
.h18{height:56.647793px;}
.h3{height:56.873496px;}
.h30{height:58.050000px;}
.h1b{height:61.066934px;}
.h16{height:61.910156px;}
.h1c{height:61.914116px;}
.h1e{height:64.170000px;}
.h19{height:65.290254px;}
.h4{height:67.172520px;}
.hb{height:69.977988px;}
.h15{height:70.293960px;}
.hc{height:73.260000px;}
.h7{height:82.650059px;}
.h1d{height:83.880000px;}
.h5{height:87.275918px;}
.h1f{height:178.470000px;}
.hf{height:222.750000px;}
.h25{height:235.440000px;}
.h21{height:368.638500px;}
.h13{height:431.278500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:68.130000px;}
.w6{width:84.960000px;}
.w8{width:202.048500px;}
.w4{width:212.670000px;}
.w3{width:233.910000px;}
.w7{width:244.531500px;}
.w5{width:255.150000px;}
.wa{width:342.001500px;}
.wb{width:342.090000px;}
.wd{width:618.210000px;}
.w2{width:669.781500px;}
.w9{width:684.091500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x12{left:106.290000px;}
.x1{left:111.600000px;}
.x3{left:114.390000px;}
.x14{left:124.290000px;}
.x1a{left:133.290000px;}
.x21{left:147.960000px;}
.xa{left:149.490000px;}
.x1c{left:157.330980px;}
.x15{left:159.480000px;}
.x29{left:167.040000px;}
.x30{left:174.420000px;}
.x31{left:182.520000px;}
.xd{left:187.380000px;}
.x11{left:191.070000px;}
.x28{left:208.980000px;}
.x22{left:215.370000px;}
.x1d{left:218.340000px;}
.x24{left:229.050000px;}
.x1f{left:238.050000px;}
.x1e{left:249.750000px;}
.x2{left:251.100000px;}
.x27{left:267.750000px;}
.x26{left:271.080000px;}
.x20{left:281.340000px;}
.xe{left:288.540000px;}
.xb{left:294.210000px;}
.x25{left:324.450000px;}
.x16{left:340.200000px;}
.x19{left:350.820000px;}
.x23{left:375.750000px;}
.x8{left:382.320000px;}
.x7{left:384.120000px;}
.x6{left:389.700000px;}
.xf{left:399.060000px;}
.x10{left:409.050000px;}
.xc{left:420.390000px;}
.x1b{left:429.480000px;}
.x13{left:433.710000px;}
.x2f{left:446.490000px;}
.x2a{left:448.290000px;}
.x4{left:474.570000px;}
.x2e{left:496.260000px;}
.x9{left:524.070000px;}
.x2c{left:527.490000px;}
.x17{left:552.870000px;}
.x2d{left:592.380000px;}
.x2b{left:684.990000px;}
.x18{left:808.020000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls6e{letter-spacing:-0.720000pt;}
.ls63{letter-spacing:-0.596480pt;}
.ls4f{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.416640pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls59{letter-spacing:-0.374080pt;}
.ls55{letter-spacing:-0.267200pt;}
.ls3{letter-spacing:-0.208320pt;}
.ls4e{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.170880pt;}
.ls54{letter-spacing:-0.149120pt;}
.ls6d{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.117120pt;}
.ls30{letter-spacing:-0.106880pt;}
.ls4{letter-spacing:-0.106560pt;}
.ls18{letter-spacing:-0.101120pt;}
.ls6f{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.085440pt;}
.ls67{letter-spacing:-0.085120pt;}
.ls3b{letter-spacing:-0.074560pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls3c{letter-spacing:-0.053440pt;}
.ls17{letter-spacing:-0.050560pt;}
.ls50{letter-spacing:-0.034560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.016000pt;}
.ls25{letter-spacing:0.016640pt;}
.ls1d{letter-spacing:0.019520pt;}
.ls13{letter-spacing:0.024320pt;}
.ls12{letter-spacing:0.038400pt;}
.ls19{letter-spacing:0.050560pt;}
.ls5c{letter-spacing:0.051200pt;}
.ls8{letter-spacing:0.053440pt;}
.ls5a{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058560pt;}
.ls11{letter-spacing:0.064000pt;}
.ls33{letter-spacing:0.074560pt;}
.ls6a{letter-spacing:0.096000pt;}
.ls3a{letter-spacing:0.106880pt;}
.ls21{letter-spacing:0.115200pt;}
.ls20{letter-spacing:0.117120pt;}
.ls2c{letter-spacing:0.121600pt;}
.ls7{letter-spacing:0.124480pt;}
.ls10{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.132032pt;}
.ls0{letter-spacing:0.138880pt;}
.ls40{letter-spacing:0.149120pt;}
.ls1c{letter-spacing:0.151680pt;}
.ls52{letter-spacing:0.160320pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.202240pt;}
.ls58{letter-spacing:0.223680pt;}
.ls36{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.303360pt;}
.ls68{letter-spacing:0.336000pt;}
.ls6c{letter-spacing:0.360000pt;}
.ls72{letter-spacing:0.412800pt;}
.ls34{letter-spacing:0.448000pt;}
.ls47{letter-spacing:0.480960pt;}
.ls6b{letter-spacing:0.547200pt;}
.ls37{letter-spacing:0.761600pt;}
.ls38{letter-spacing:0.768000pt;}
.ls61{letter-spacing:0.801600pt;}
.lsa{letter-spacing:1.143680pt;}
.ls66{letter-spacing:1.408000pt;}
.ls43{letter-spacing:1.442880pt;}
.ls5b{letter-spacing:1.728000pt;}
.ls4d{letter-spacing:1.763520pt;}
.ls2d{letter-spacing:2.048000pt;}
.ls39{letter-spacing:2.084160pt;}
.ls24{letter-spacing:2.688000pt;}
.ls5f{letter-spacing:2.725440pt;}
.ls3d{letter-spacing:2.995200pt;}
.ls48{letter-spacing:3.001600pt;}
.ls2a{letter-spacing:3.008000pt;}
.ls2e{letter-spacing:3.046080pt;}
.ls27{letter-spacing:3.315200pt;}
.ls5e{letter-spacing:3.321600pt;}
.ls28{letter-spacing:3.328000pt;}
.ls46{letter-spacing:3.366720pt;}
.ls6{letter-spacing:3.383680pt;}
.ls4a{letter-spacing:3.968000pt;}
.ls26{letter-spacing:4.288000pt;}
.ls3f{letter-spacing:4.595200pt;}
.ls56{letter-spacing:4.601600pt;}
.ls44{letter-spacing:4.608000pt;}
.ls65{letter-spacing:4.921600pt;}
.ls4c{letter-spacing:4.928000pt;}
.ls3e{letter-spacing:5.248000pt;}
.ls4b{letter-spacing:5.568000pt;}
.ls9{letter-spacing:5.611200pt;}
.ls71{letter-spacing:5.800320pt;}
.ls49{letter-spacing:5.888000pt;}
.ls53{letter-spacing:5.931840pt;}
.ls62{letter-spacing:6.201600pt;}
.ls57{letter-spacing:6.208000pt;}
.ls45{letter-spacing:6.528000pt;}
.ls23{letter-spacing:6.848000pt;}
.ls41{letter-spacing:7.161600pt;}
.ls35{letter-spacing:7.808000pt;}
.ls31{letter-spacing:8.128000pt;}
.ls29{letter-spacing:9.088000pt;}
.ls64{letter-spacing:9.728000pt;}
.ls22{letter-spacing:10.041600pt;}
.ls51{letter-spacing:10.368000pt;}
.ls5d{letter-spacing:10.668800pt;}
.ls42{letter-spacing:12.024000pt;}
.ls60{letter-spacing:12.288000pt;}
.ls70{letter-spacing:24.736000pt;}
.ls2b{letter-spacing:48.768000pt;}
.ls32{letter-spacing:57.038400pt;}
.lsc{letter-spacing:84.685440pt;}
.lsd{letter-spacing:89.805440pt;}
.ls14{letter-spacing:750.208000pt;}
.ws1a{word-spacing:-23.666880pt;}
.ws60{word-spacing:-20.876800pt;}
.ws54{word-spacing:-20.802240pt;}
.ws55{word-spacing:-20.653120pt;}
.ws7d{word-spacing:-20.578560pt;}
.ws2{word-spacing:-19.304320pt;}
.ws1{word-spacing:-19.096000pt;}
.ws0{word-spacing:-18.887680pt;}
.ws74{word-spacing:-18.048000pt;}
.ws23{word-spacing:-17.984000pt;}
.ws7e{word-spacing:-17.920000pt;}
.ws1c{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.728000pt;}
.ws1b{word-spacing:-17.664000pt;}
.ws2d{word-spacing:-17.408000pt;}
.ws76{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.338240pt;}
.ws30{word-spacing:-16.279680pt;}
.ws2f{word-spacing:-16.162560pt;}
.wsa4{word-spacing:-14.963200pt;}
.ws9{word-spacing:-14.909760pt;}
.ws9c{word-spacing:-14.856320pt;}
.ws56{word-spacing:-14.802880pt;}
.ws43{word-spacing:-14.749440pt;}
.ws92{word-spacing:-14.589120pt;}
.ws84{word-spacing:-14.482240pt;}
.ws21{word-spacing:-14.359040pt;}
.ws20{word-spacing:-14.257920pt;}
.ws22{word-spacing:-14.207360pt;}
.ws1f{word-spacing:-14.106240pt;}
.ws1e{word-spacing:-14.005120pt;}
.ws1d{word-spacing:-13.954560pt;}
.wsa6{word-spacing:-13.440000pt;}
.wsa8{word-spacing:-13.248000pt;}
.wsa5{word-spacing:-13.200000pt;}
.wsa7{word-spacing:-12.624000pt;}
.ws75{word-spacing:-11.831680pt;}
.ws42{word-spacing:-9.607680pt;}
.ws77{word-spacing:-9.573120pt;}
.ws6f{word-spacing:-4.920960pt;}
.ws46{word-spacing:-3.968000pt;}
.ws50{word-spacing:-3.648000pt;}
.ws4f{word-spacing:-3.328000pt;}
.ws9d{word-spacing:-3.075840pt;}
.wsb0{word-spacing:-3.072000pt;}
.wsf{word-spacing:-3.046080pt;}
.ws37{word-spacing:-3.008000pt;}
.ws85{word-spacing:-2.944000pt;}
.wsaf{word-spacing:-2.928000pt;}
.ws40{word-spacing:-2.880000pt;}
.ws8b{word-spacing:-2.725440pt;}
.ws3e{word-spacing:-2.688000pt;}
.ws3f{word-spacing:-2.624000pt;}
.ws19{word-spacing:-2.404800pt;}
.ws4c{word-spacing:-2.368000pt;}
.ws38{word-spacing:-2.048000pt;}
.ws9b{word-spacing:-1.984000pt;}
.ws88{word-spacing:-1.763520pt;}
.ws39{word-spacing:-1.728000pt;}
.wsb3{word-spacing:-1.680000pt;}
.ws86{word-spacing:-1.664000pt;}
.wsb2{word-spacing:-1.584000pt;}
.wsc1{word-spacing:-1.488000pt;}
.ws31{word-spacing:-1.408000pt;}
.wsc0{word-spacing:-1.392000pt;}
.wsb7{word-spacing:-1.344000pt;}
.ws18{word-spacing:-1.122240pt;}
.ws4e{word-spacing:-1.088000pt;}
.ws9f{word-spacing:-1.024000pt;}
.ws8a{word-spacing:-0.801600pt;}
.ws62{word-spacing:-0.768000pt;}
.ws5{word-spacing:-0.555520pt;}
.ws83{word-spacing:-0.480960pt;}
.ws6c{word-spacing:-0.448000pt;}
.wsba{word-spacing:-0.384000pt;}
.wsa{word-spacing:-0.351360pt;}
.ws41{word-spacing:-0.320000pt;}
.ws5e{word-spacing:-0.256000pt;}
.ws4{word-spacing:-0.208320pt;}
.ws2e{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.160320pt;}
.ws7f{word-spacing:-0.149120pt;}
.ws25{word-spacing:-0.128000pt;}
.wsa1{word-spacing:-0.106880pt;}
.wsb1{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.085440pt;}
.ws6e{word-spacing:-0.074560pt;}
.ws26{word-spacing:-0.064000pt;}
.ws3c{word-spacing:-0.058560pt;}
.wse{word-spacing:-0.053440pt;}
.wsc3{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.050560pt;}
.ws2c{word-spacing:0.064000pt;}
.ws94{word-spacing:0.074560pt;}
.wsa3{word-spacing:0.085120pt;}
.ws9e{word-spacing:0.085440pt;}
.wsb5{word-spacing:0.096000pt;}
.ws28{word-spacing:0.101120pt;}
.wsa2{word-spacing:0.106880pt;}
.ws34{word-spacing:0.128000pt;}
.wsab{word-spacing:0.144000pt;}
.ws5c{word-spacing:0.149120pt;}
.ws29{word-spacing:0.151680pt;}
.ws81{word-spacing:0.160320pt;}
.ws44{word-spacing:0.170880pt;}
.wsb{word-spacing:0.192000pt;}
.wsaa{word-spacing:0.240000pt;}
.ws24{word-spacing:0.256000pt;}
.wsa9{word-spacing:0.267200pt;}
.ws5a{word-spacing:0.298240pt;}
.ws6{word-spacing:0.319680pt;}
.ws3d{word-spacing:0.351360pt;}
.ws71{word-spacing:0.384000pt;}
.ws27{word-spacing:0.404480pt;}
.ws78{word-spacing:0.447360pt;}
.ws2b{word-spacing:0.455040pt;}
.ws73{word-spacing:0.480960pt;}
.ws5b{word-spacing:0.512000pt;}
.wsc2{word-spacing:0.576000pt;}
.ws98{word-spacing:0.596480pt;}
.ws97{word-spacing:0.801600pt;}
.ws35{word-spacing:0.832000pt;}
.ws36{word-spacing:0.896000pt;}
.ws13{word-spacing:1.122240pt;}
.ws8d{word-spacing:1.152000pt;}
.ws11{word-spacing:1.442880pt;}
.ws4b{word-spacing:1.472000pt;}
.ws89{word-spacing:1.536000pt;}
.wsb9{word-spacing:1.728000pt;}
.ws7c{word-spacing:1.763520pt;}
.ws52{word-spacing:1.792000pt;}
.wsb8{word-spacing:1.872000pt;}
.ws58{word-spacing:1.920000pt;}
.ws96{word-spacing:1.923840pt;}
.ws5f{word-spacing:2.084160pt;}
.ws51{word-spacing:2.112000pt;}
.wsbe{word-spacing:2.352000pt;}
.ws14{word-spacing:2.404800pt;}
.ws9a{word-spacing:2.432000pt;}
.wsac{word-spacing:2.496000pt;}
.ws91{word-spacing:2.725440pt;}
.ws6d{word-spacing:2.752000pt;}
.ws53{word-spacing:3.046080pt;}
.ws66{word-spacing:3.072000pt;}
.wsd{word-spacing:3.366720pt;}
.ws3a{word-spacing:3.392000pt;}
.wsbd{word-spacing:3.456000pt;}
.wsc5{word-spacing:3.648000pt;}
.ws7b{word-spacing:3.712000pt;}
.wsc6{word-spacing:3.792000pt;}
.ws45{word-spacing:4.032000pt;}
.ws8c{word-spacing:4.096000pt;}
.ws4a{word-spacing:4.352000pt;}
.wsb6{word-spacing:4.416000pt;}
.ws32{word-spacing:4.672000pt;}
.wsbc{word-spacing:4.752000pt;}
.ws61{word-spacing:4.992000pt;}
.wsb4{word-spacing:5.040000pt;}
.ws7a{word-spacing:5.056000pt;}
.ws67{word-spacing:5.312000pt;}
.wsbf{word-spacing:5.376000pt;}
.ws12{word-spacing:5.557760pt;}
.ws68{word-spacing:5.632000pt;}
.ws82{word-spacing:5.878400pt;}
.ws59{word-spacing:5.952000pt;}
.ws72{word-spacing:6.272000pt;}
.ws79{word-spacing:6.336000pt;}
.ws63{word-spacing:6.592000pt;}
.ws49{word-spacing:6.912000pt;}
.ws87{word-spacing:6.976000pt;}
.ws69{word-spacing:7.232000pt;}
.ws6a{word-spacing:7.296000pt;}
.ws70{word-spacing:7.552000pt;}
.ws5d{word-spacing:7.872000pt;}
.ws57{word-spacing:8.192000pt;}
.ws90{word-spacing:8.256000pt;}
.ws16{word-spacing:8.443520pt;}
.ws64{word-spacing:8.512000pt;}
.ws33{word-spacing:8.832000pt;}
.wsad{word-spacing:9.072000pt;}
.ws4d{word-spacing:9.152000pt;}
.wsae{word-spacing:9.216000pt;}
.ws99{word-spacing:9.472000pt;}
.ws3b{word-spacing:9.792000pt;}
.ws65{word-spacing:10.112000pt;}
.ws10{word-spacing:10.367360pt;}
.ws47{word-spacing:10.432000pt;}
.ws48{word-spacing:10.496000pt;}
.ws8f{word-spacing:10.752000pt;}
.ws8e{word-spacing:11.072000pt;}
.wsc4{word-spacing:11.472000pt;}
.ws6b{word-spacing:11.970560pt;}
.ws17{word-spacing:12.291200pt;}
.ws93{word-spacing:12.352000pt;}
.ws80{word-spacing:12.992000pt;}
.ws95{word-spacing:13.632000pt;}
.wsa0{word-spacing:18.062720pt;}
.wsbb{word-spacing:24.912000pt;}
._c{margin-left:-16.836672pt;}
._5{margin-left:-15.509312pt;}
._9{margin-left:-12.890400pt;}
._6{margin-left:-11.089856pt;}
._b{margin-left:-10.174656pt;}
._3{margin-left:-8.607968pt;}
._8{margin-left:-7.506944pt;}
._7{margin-left:-5.946816pt;}
._a{margin-left:-4.462656pt;}
._d{margin-left:-3.416064pt;}
._4{margin-left:-2.432000pt;}
._1{margin-left:-0.937440pt;}
._2{width:1.034656pt;}
._14{width:2.304000pt;}
._e{width:3.317344pt;}
._12{width:4.512032pt;}
._15{width:5.663968pt;}
._13{width:6.651744pt;}
._10{width:7.861344pt;}
._11{width:9.024000pt;}
._16{width:11.573344pt;}
._18{width:24.768064pt;}
._f{width:80.057280pt;}
._17{width:750.561280pt;}
._0{width:1890.785280pt;}
.fsb{font-size:16.000000pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.440000pt;}
.fsa{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs2{font-size:106.560000pt;}
.y4f{bottom:-191.680000pt;}
.y4e{bottom:-168.640000pt;}
.y4d{bottom:-145.680000pt;}
.y4c{bottom:-122.640000pt;}
.y4b{bottom:-99.680000pt;}
.y4a{bottom:-76.640000pt;}
.y49{bottom:-53.680000pt;}
.y48{bottom:-30.640000pt;}
.y47{bottom:-7.680000pt;}
.y1f{bottom:-2.640000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:3.200000pt;}
.y1d8{bottom:5.200000pt;}
.y1da{bottom:5.360000pt;}
.y214{bottom:8.720000pt;}
.y20d{bottom:8.800000pt;}
.y20c{bottom:8.880000pt;}
.y1c8{bottom:9.440000pt;}
.y3a{bottom:9.680000pt;}
.y7f{bottom:10.400000pt;}
.y27{bottom:11.520000pt;}
.y1b{bottom:12.800000pt;}
.y38{bottom:13.840000pt;}
.y22{bottom:15.920000pt;}
.y25{bottom:18.000000pt;}
.y1e{bottom:20.800000pt;}
.y1d6{bottom:22.800000pt;}
.y226{bottom:24.560000pt;}
.y212{bottom:24.640000pt;}
.y35{bottom:24.720000pt;}
.y1c3{bottom:25.040000pt;}
.y1c7{bottom:27.040000pt;}
.y20f{bottom:28.560000pt;}
.y21f{bottom:28.640000pt;}
.y1d{bottom:35.200000pt;}
.y1d5{bottom:40.480000pt;}
.y1c6{bottom:44.720000pt;}
.y21{bottom:45.200000pt;}
.y33{bottom:47.760000pt;}
.y51{bottom:50.960000pt;}
.y204{bottom:51.120640pt;}
.y4{bottom:51.204160pt;}
.y1d3{bottom:58.080000pt;}
.y1f5{bottom:62.960000pt;}
.y3{bottom:65.200000pt;}
.y203{bottom:69.040000pt;}
.y32{bottom:70.720000pt;}
.y1d1{bottom:75.760000pt;}
.yb5{bottom:86.556000pt;}
.y1f4{bottom:87.600000pt;}
.y1b6{bottom:91.200000pt;}
.y1d0{bottom:93.360000pt;}
.y30{bottom:93.760000pt;}
.y234{bottom:97.360000pt;}
.y1f2{bottom:101.680000pt;}
.y236{bottom:106.160000pt;}
.yb4{bottom:106.560000pt;}
.y1ce{bottom:110.960000pt;}
.y1b5{bottom:114.560000pt;}
.y2e{bottom:116.720000pt;}
.y126{bottom:117.840000pt;}
.y235{bottom:122.000000pt;}
.y262{bottom:123.120000pt;}
.y1f0{bottom:123.760000pt;}
.yd3{bottom:125.196000pt;}
.yb3{bottom:125.200000pt;}
.y1b4{bottom:125.840000pt;}
.y1cc{bottom:128.640000pt;}
.y1bc{bottom:137.840000pt;}
.y2c{bottom:139.760000pt;}
.y168{bottom:140.560000pt;}
.yb2{bottom:145.200000pt;}
.y1cb{bottom:146.320000pt;}
.y231{bottom:148.960000pt;}
.y1bb{bottom:149.120000pt;}
.y261{bottom:154.240000pt;}
.yb1{bottom:156.480000pt;}
.y233{bottom:157.760000pt;}
.y1ed{bottom:160.000000pt;}
.y2a{bottom:162.720000pt;}
.y14f{bottom:163.916000pt;}
.y111{bottom:168.560000pt;}
.y202{bottom:169.280000pt;}
.y232{bottom:173.600000pt;}
.y1eb{bottom:174.080000pt;}
.y260{bottom:174.160000pt;}
.y50{bottom:178.800000pt;}
.y167{bottom:178.880000pt;}
.y110{bottom:179.840000pt;}
.y200{bottom:183.200000pt;}
.y14e{bottom:183.920000pt;}
.y29{bottom:185.680000pt;}
.y46{bottom:192.720000pt;}
.y25d{bottom:194.000000pt;}
.y14d{bottom:195.120000pt;}
.y1e9{bottom:196.160000pt;}
.y3c{bottom:197.360000pt;}
.y201{bottom:199.440000pt;}
.y166{bottom:200.080000pt;}
.y230{bottom:200.560000pt;}
.y25f{bottom:202.720000pt;}
.y10f{bottom:204.640000pt;}
.y1ff{bottom:206.080000pt;}
.yd2{bottom:207.680000pt;}
.y1e7{bottom:210.320000pt;}
.yf1{bottom:213.200000pt;}
.y1b3{bottom:214.480000pt;}
.y25e{bottom:218.640000pt;}
.y22f{bottom:220.480000pt;}
.y165{bottom:221.200000pt;}
.y91{bottom:221.760000pt;}
.y1fd{bottom:222.640000pt;}
.yb0{bottom:223.680000pt;}
.y1e6{bottom:224.400000pt;}
.yd1{bottom:228.880000pt;}
.yf0{bottom:234.400000pt;}
.y125{bottom:235.600000pt;}
.y1fb{bottom:236.720000pt;}
.y1e4{bottom:238.480000pt;}
.y22e{bottom:240.320000pt;}
.y10e{bottom:244.160000pt;}
.yaf{bottom:244.800000pt;}
.y25c{bottom:245.600000pt;}
.yd0{bottom:250.000000pt;}
.y1f9{bottom:250.880000pt;}
.y1e2{bottom:252.640000pt;}
.y182{bottom:254.800000pt;}
.yef{bottom:255.520000pt;}
.y44{bottom:256.000000pt;}
.y164{bottom:256.639120pt;}
.y124{bottom:256.800000pt;}
.y22d{bottom:260.160000pt;}
.y90{bottom:261.360000pt;}
.y10d{bottom:265.360000pt;}
.y25a{bottom:265.440000pt;}
.y1f8{bottom:265.920000pt;}
.yae{bottom:266.000000pt;}
.y1e1{bottom:266.720000pt;}
.ycf{bottom:271.200000pt;}
.y140{bottom:273.200000pt;}
.y25b{bottom:274.240000pt;}
.y181{bottom:275.920000pt;}
.yee{bottom:276.720000pt;}
.y1b2{bottom:277.920000pt;}
.y43{bottom:279.040000pt;}
.y22a{bottom:280.080000pt;}
.y1df{bottom:280.800000pt;}
.y8f{bottom:282.480000pt;}
.y1f6{bottom:283.520000pt;}
.y195{bottom:283.920000pt;}
.y10c{bottom:286.480000pt;}
.y22c{bottom:288.800000pt;}
.y123{bottom:291.200000pt;}
.y163{bottom:291.440000pt;}
.y1de{bottom:292.240000pt;}
.y13f{bottom:294.320000pt;}
.y180{bottom:297.120000pt;}
.yed{bottom:297.840000pt;}
.y1b1{bottom:299.120000pt;}
.yad{bottom:301.200000pt;}
.y41{bottom:302.000000pt;}
.y8e{bottom:303.600000pt;}
.y22b{bottom:304.720000pt;}
.y194{bottom:305.040000pt;}
.yce{bottom:306.639120pt;}
.y10b{bottom:307.680000pt;}
.y259{bottom:309.920000pt;}
.y13e{bottom:315.520000pt;}
.y1dc{bottom:317.840000pt;}
.y17f{bottom:318.240000pt;}
.yec{bottom:319.040000pt;}
.y1b0{bottom:320.240000pt;}
.y3f{bottom:325.040000pt;}
.y122{bottom:326.800000pt;}
.y162{bottom:328.480000pt;}
.y10a{bottom:328.800000pt;}
.y228{bottom:331.680000pt;}
.y8d{bottom:331.840000pt;}
.y13d{bottom:336.640000pt;}
.y257{bottom:336.960000pt;}
.yac{bottom:337.600000pt;}
.y17e{bottom:339.360000pt;}
.y193{bottom:339.520000pt;}
.yeb{bottom:340.160000pt;}
.y229{bottom:340.400000pt;}
.ycd{bottom:341.440000pt;}
.y258{bottom:345.680000pt;}
.y3e{bottom:348.000000pt;}
.y161{bottom:349.680000pt;}
.y109{bottom:350.000000pt;}
.y8c{bottom:355.840000pt;}
.y13c{bottom:357.840000pt;}
.y17d{bottom:360.560000pt;}
.y121{bottom:362.320000pt;}
.y1af{bottom:362.560000pt;}
.y6e{bottom:366.880000pt;}
.y225{bottom:367.440000pt;}
.y160{bottom:370.800000pt;}
.y3d{bottom:371.040000pt;}
.y108{bottom:371.120000pt;}
.yea{bottom:372.400000pt;}
.y255{bottom:372.720000pt;}
.yab{bottom:373.920000pt;}
.y192{bottom:375.120000pt;}
.y227{bottom:376.160000pt;}
.ycc{bottom:378.480000pt;}
.y8b{bottom:379.840000pt;}
.y256{bottom:381.440000pt;}
.y17c{bottom:381.680000pt;}
.y1ae{bottom:383.760000pt;}
.y13b{bottom:390.080000pt;}
.y15f{bottom:392.000000pt;}
.y107{bottom:392.320000pt;}
.y1db{bottom:392.480000pt;}
.y191{bottom:396.240000pt;}
.y120{bottom:398.000000pt;}
.ycb{bottom:399.680000pt;}
.y223{bottom:403.120000pt;}
.y6d{bottom:403.680000pt;}
.y8a{bottom:403.840000pt;}
.ye9{bottom:409.440000pt;}
.yaa{bottom:410.240000pt;}
.y224{bottom:411.920000pt;}
.y253{bottom:412.400000pt;}
.y15e{bottom:413.120000pt;}
.y106{bottom:413.440000pt;}
.y17b{bottom:417.204000pt;}
.y11f{bottom:419.120000pt;}
.y1ad{bottom:419.197040pt;}
.yca{bottom:420.800000pt;}
.y254{bottom:421.200000pt;}
.y13a{bottom:427.120000pt;}
.y89{bottom:427.840000pt;}
.y19{bottom:428.392827pt;}
.y6c{bottom:430.080000pt;}
.ye8{bottom:430.640000pt;}
.y190{bottom:431.840000pt;}
.y15d{bottom:434.320000pt;}
.y105{bottom:434.640000pt;}
.y17a{bottom:438.640000pt;}
.y222{bottom:438.880000pt;}
.y11e{bottom:440.320000pt;}
.yc9{bottom:442.000000pt;}
.y1ac{bottom:443.764560pt;}
.ya9{bottom:445.840000pt;}
.y251{bottom:448.160000pt;}
.y139{bottom:448.240000pt;}
.y6b{bottom:448.480000pt;}
.ye7{bottom:451.760000pt;}
.y88{bottom:451.840000pt;}
.y18f{bottom:452.960000pt;}
.y45{bottom:453.360000pt;}
.y15c{bottom:455.440000pt;}
.y104{bottom:455.760000pt;}
.y252{bottom:456.880000pt;}
.y221{bottom:458.720000pt;}
.y11d{bottom:461.440000pt;}
.y18{bottom:462.313707pt;}
.yc8{bottom:463.120000pt;}
.y6a{bottom:466.880000pt;}
.ya8{bottom:466.960000pt;}
.y138{bottom:469.440000pt;}
.y1ba{bottom:472.640000pt;}
.ye6{bottom:472.960000pt;}
.y179{bottom:475.680000pt;}
.y87{bottom:475.840000pt;}
.y15b{bottom:476.640000pt;}
.y1ab{bottom:478.640000pt;}
.y11c{bottom:482.640000pt;}
.yc7{bottom:484.320000pt;}
.y69{bottom:485.280000pt;}
.y24f{bottom:487.920000pt;}
.y103{bottom:488.000000pt;}
.ya7{bottom:488.080000pt;}
.y18e{bottom:488.560000pt;}
.y137{bottom:490.560000pt;}
.y1b9{bottom:493.760000pt;}
.y1f3{bottom:494.160000pt;}
.y17{bottom:496.234587pt;}
.y14c{bottom:496.480000pt;}
.y250{bottom:496.640000pt;}
.y178{bottom:496.880000pt;}
.y15a{bottom:497.760000pt;}
.y21e{bottom:498.480000pt;}
.y42{bottom:499.360000pt;}
.y86{bottom:499.840000pt;}
.y68{bottom:503.680000pt;}
.y11b{bottom:503.760000pt;}
.yc6{bottom:505.440000pt;}
.y220{bottom:507.280000pt;}
.ye5{bottom:507.440000pt;}
.ya6{bottom:509.280000pt;}
.y18d{bottom:509.760000pt;}
.y136{bottom:511.760000pt;}
.y1b8{bottom:514.960000pt;}
.y1aa{bottom:515.680000pt;}
.y1f1{bottom:516.240000pt;}
.y177{bottom:518.000000pt;}
.y67{bottom:522.080000pt;}
.y40{bottom:522.400000pt;}
.y24d{bottom:523.600000pt;}
.y85{bottom:523.840000pt;}
.y102{bottom:525.040000pt;}
.yc5{bottom:526.640000pt;}
.ye4{bottom:528.560000pt;}
.y16{bottom:530.155467pt;}
.y1ef{bottom:530.320000pt;}
.ya5{bottom:530.400000pt;}
.y24e{bottom:532.400000pt;}
.y135{bottom:532.880000pt;}
.y159{bottom:533.199120pt;}
.y14b{bottom:536.080000pt;}
.y1a9{bottom:536.880000pt;}
.y21c{bottom:538.240000pt;}
.y11a{bottom:539.199120pt;}
.y176{bottom:539.200000pt;}
.y18c{bottom:545.199120pt;}
.y101{bottom:546.240000pt;}
.y21d{bottom:546.960000pt;}
.y84{bottom:547.840000pt;}
.ye3{bottom:549.760000pt;}
.y1ee{bottom:552.480000pt;}
.y66{bottom:553.760000pt;}
.y134{bottom:554.080000pt;}
.y14a{bottom:557.280000pt;}
.y1a8{bottom:558.000000pt;}
.yc4{bottom:558.800000pt;}
.y175{bottom:560.320000pt;}
.y24c{bottom:563.360000pt;}
.y15{bottom:564.076347pt;}
.ya4{bottom:564.960000pt;}
.y1ec{bottom:566.560000pt;}
.y100{bottom:567.360000pt;}
.y158{bottom:568.000000pt;}
.ye2{bottom:570.880000pt;}
.y83{bottom:571.840000pt;}
.y119{bottom:574.000000pt;}
.y133{bottom:575.200000pt;}
.y149{bottom:578.400000pt;}
.y1a7{bottom:579.200000pt;}
.y18b{bottom:580.000000pt;}
.y65{bottom:580.160000pt;}
.y39{bottom:580.720000pt;}
.y174{bottom:581.440000pt;}
.y24b{bottom:583.280000pt;}
.ya3{bottom:586.080000pt;}
.yff{bottom:588.560000pt;}
.y1ea{bottom:588.640000pt;}
.y3b{bottom:590.400000pt;}
.ye1{bottom:592.080000pt;}
.y21b{bottom:593.840000pt;}
.y82{bottom:595.840000pt;}
.y132{bottom:596.320000pt;}
.yc3{bottom:596.720000pt;}
.y14{bottom:597.997227pt;}
.y64{bottom:598.560000pt;}
.y148{bottom:599.600000pt;}
.y1a6{bottom:600.320000pt;}
.y173{bottom:602.640000pt;}
.y1e8{bottom:602.800000pt;}
.y37{bottom:605.360000pt;}
.y157{bottom:605.920000pt;}
.ya2{bottom:607.280000pt;}
.yfe{bottom:609.680000pt;}
.y118{bottom:611.840000pt;}
.y219{bottom:613.680000pt;}
.y1fe{bottom:615.120000pt;}
.y63{bottom:616.960000pt;}
.y131{bottom:617.520000pt;}
.y18a{bottom:617.840000pt;}
.y81{bottom:619.840000pt;}
.y147{bottom:620.720000pt;}
.y1a5{bottom:621.520000pt;}
.y21a{bottom:622.480000pt;}
.y24a{bottom:622.960000pt;}
.y172{bottom:623.760000pt;}
.ye0{bottom:626.560000pt;}
.y1fc{bottom:629.200000pt;}
.yfd{bottom:630.880000pt;}
.y1e5{bottom:630.960000pt;}
.y28{bottom:631.520000pt;}
.y1b7{bottom:631.840000pt;}
.y13{bottom:631.918107pt;}
.yc2{bottom:633.040000pt;}
.y62{bottom:635.360000pt;}
.y130{bottom:638.640000pt;}
.ya1{bottom:641.760000pt;}
.y146{bottom:641.920000pt;}
.y156{bottom:642.240000pt;}
.y1a4{bottom:642.640000pt;}
.y248{bottom:642.880000pt;}
.y1fa{bottom:643.360000pt;}
.y80{bottom:643.840000pt;}
.y171{bottom:644.960000pt;}
.y1e3{bottom:645.120000pt;}
.ydf{bottom:647.680000pt;}
.y117{bottom:648.240000pt;}
.y217{bottom:649.440000pt;}
.y249{bottom:651.600000pt;}
.yfc{bottom:652.000000pt;}
.y189{bottom:654.160000pt;}
.y36{bottom:656.240000pt;}
.y218{bottom:658.160000pt;}
.y12f{bottom:659.840000pt;}
.ya0{bottom:662.880000pt;}
.y145{bottom:663.040000pt;}
.y1a3{bottom:663.840000pt;}
.y12{bottom:665.838987pt;}
.y170{bottom:666.080000pt;}
.y61{bottom:667.120000pt;}
.y7d{bottom:667.840000pt;}
.yde{bottom:668.880000pt;}
.yc1{bottom:669.360000pt;}
.yfb{bottom:673.200000pt;}
.y1e0{bottom:673.280000pt;}
.y1f7{bottom:676.000000pt;}
.y155{bottom:678.560000pt;}
.y34{bottom:679.280000pt;}
.y12e{bottom:680.960000pt;}
.y9f{bottom:684.080000pt;}
.y144{bottom:684.240000pt;}
.y116{bottom:684.560000pt;}
.y1a2{bottom:684.960000pt;}
.y216{bottom:685.200000pt;}
.y247{bottom:687.360000pt;}
.ydd{bottom:690.000000pt;}
.y188{bottom:690.560000pt;}
.y60{bottom:693.520000pt;}
.y1dd{bottom:693.680000pt;}
.yfa{bottom:694.320000pt;}
.y11{bottom:699.759867pt;}
.y16f{bottom:701.600400pt;}
.y12d{bottom:702.160000pt;}
.y215{bottom:705.040000pt;}
.y9e{bottom:705.200000pt;}
.yc0{bottom:705.680000pt;}
.ydc{bottom:711.200000pt;}
.y7c{bottom:711.520000pt;}
.y5f{bottom:711.920000pt;}
.y245{bottom:714.320000pt;}
.y154{bottom:714.880000pt;}
.yf9{bottom:715.520000pt;}
.y143{bottom:716.480000pt;}
.y1d9{bottom:720.160000pt;}
.y1a1{bottom:720.399120pt;}
.y115{bottom:720.880000pt;}
.y246{bottom:723.040000pt;}
.y213{bottom:724.960000pt;}
.y31{bottom:725.280000pt;}
.y16e{bottom:726.167920pt;}
.y187{bottom:726.880000pt;}
.y5e{bottom:730.320000pt;}
.ydb{bottom:732.320000pt;}
.y7b{bottom:732.640000pt;}
.y10{bottom:733.705040pt;}
.yf8{bottom:736.640000pt;}
.y1ca{bottom:737.840000pt;}
.y9d{bottom:739.680000pt;}
.ybf{bottom:742.080000pt;}
.y211{bottom:744.800000pt;}
.y2f{bottom:748.240000pt;}
.y5d{bottom:748.720000pt;}
.y243{bottom:750.080000pt;}
.y153{bottom:750.400000pt;}
.y16d{bottom:750.884560pt;}
.yda{bottom:753.520000pt;}
.y7a{bottom:753.840000pt;}
.y1a0{bottom:755.200000pt;}
.yf{bottom:756.498720pt;}
.y114{bottom:757.200000pt;}
.yf7{bottom:757.760000pt;}
.y244{bottom:758.800000pt;}
.y1d7{bottom:760.640000pt;}
.y9c{bottom:760.880000pt;}
.y186{bottom:763.200000pt;}
.y5c{bottom:767.120000pt;}
.y2d{bottom:771.280000pt;}
.y152{bottom:771.600000pt;}
.yd9{bottom:774.640000pt;}
.y79{bottom:774.960000pt;}
.ye{bottom:776.653680pt;}
.ybe{bottom:778.400000pt;}
.yf6{bottom:778.960000pt;}
.y20e{bottom:780.560000pt;}
.y9b{bottom:782.000000pt;}
.y16c{bottom:785.760000pt;}
.y210{bottom:789.280000pt;}
.y19f{bottom:792.320000pt;}
.y113{bottom:792.720000pt;}
.y2b{bottom:794.240000pt;}
.y242{bottom:794.560000pt;}
.yd8{bottom:795.840000pt;}
.y1d4{bottom:795.920000pt;}
.y78{bottom:796.160000pt;}
.yd{bottom:796.565600pt;}
.y5b{bottom:798.800000pt;}
.y185{bottom:799.520000pt;}
.y12c{bottom:800.080000pt;}
.y183{bottom:804.400000pt;}
.y19e{bottom:813.440000pt;}
.y1d2{bottom:813.600000pt;}
.ybd{bottom:813.920000pt;}
.yf5{bottom:814.399120pt;}
.yc{bottom:816.477520pt;}
.y9a{bottom:816.480000pt;}
.yd7{bottom:816.960000pt;}
.y77{bottom:817.280000pt;}
.y20b{bottom:820.240000pt;}
.y12b{bottom:821.280000pt;}
.y240{bottom:821.520000pt;}
.y16b{bottom:822.800000pt;}
.y5a{bottom:825.200000pt;}
.y151{bottom:827.280000pt;}
.y26{bottom:829.520000pt;}
.y241{bottom:830.320000pt;}
.y19d{bottom:834.640000pt;}
.ybc{bottom:835.040000pt;}
.yb{bottom:836.320000pt;}
.y99{bottom:837.600000pt;}
.yd6{bottom:838.160000pt;}
.y12a{bottom:842.400000pt;}
.y59{bottom:843.600000pt;}
.y16a{bottom:843.920000pt;}
.y150{bottom:848.400000pt;}
.y1cf{bottom:848.800000pt;}
.yf4{bottom:849.200000pt;}
.y76{bottom:851.680000pt;}
.y20a{bottom:854.960000pt;}
.y19c{bottom:855.760000pt;}
.y24{bottom:856.000000pt;}
.ybb{bottom:856.240000pt;}
.y23f{bottom:857.280000pt;}
.y98{bottom:858.720000pt;}
.yd5{bottom:859.280000pt;}
.y58{bottom:862.000000pt;}
.y129{bottom:863.600000pt;}
.y169{bottom:865.120000pt;}
.y1cd{bottom:866.480000pt;}
.y112{bottom:869.520000pt;}
.ya{bottom:870.645600pt;}
.y75{bottom:872.880000pt;}
.y19b{bottom:876.960000pt;}
.y23e{bottom:877.120000pt;}
.y184{bottom:877.360000pt;}
.y97{bottom:879.920000pt;}
.y57{bottom:880.400000pt;}
.y142{bottom:880.480000pt;}
.y209{bottom:882.160000pt;}
.yf3{bottom:886.240000pt;}
.y20{bottom:886.320000pt;}
.y1c1{bottom:887.040000pt;}
.yba{bottom:890.720000pt;}
.yd4{bottom:891.520000pt;}
.y74{bottom:894.000000pt;}
.y1c5{bottom:896.480000pt;}
.y23d{bottom:897.040000pt;}
.y19a{bottom:898.080000pt;}
.y56{bottom:898.800000pt;}
.y128{bottom:899.039120pt;}
.y96{bottom:901.040000pt;}
.y141{bottom:901.600000pt;}
.y23{bottom:902.240000pt;}
.y9{bottom:902.880000pt;}
.y1c9{bottom:905.920000pt;}
.yf2{bottom:907.440000pt;}
.y1c0{bottom:908.160000pt;}
.y208{bottom:909.353600pt;}
.yb9{bottom:911.840000pt;}
.y23c{bottom:916.880000pt;}
.y55{bottom:917.200000pt;}
.y199{bottom:919.200000pt;}
.y95{bottom:922.240000pt;}
.y207{bottom:925.920000pt;}
.y73{bottom:928.560000pt;}
.y1bf{bottom:929.360000pt;}
.yb8{bottom:933.040000pt;}
.y8{bottom:933.213680pt;}
.y127{bottom:933.840000pt;}
.y23b{bottom:936.720000pt;}
.y198{bottom:940.400000pt;}
.y206{bottom:942.473600pt;}
.y94{bottom:943.440000pt;}
.y54{bottom:948.960000pt;}
.y72{bottom:949.760000pt;}
.y1be{bottom:950.480000pt;}
.y1c{bottom:951.440000pt;}
.y7{bottom:953.125600pt;}
.y1c2{bottom:953.520000pt;}
.yb7{bottom:954.160000pt;}
.y239{bottom:956.640000pt;}
.y205{bottom:959.040000pt;}
.y23a{bottom:965.360000pt;}
.y71{bottom:970.880000pt;}
.y1bd{bottom:971.680000pt;}
.y6{bottom:972.968080pt;}
.yb6{bottom:975.360000pt;}
.y197{bottom:975.839120pt;}
.y1c4{bottom:978.560000pt;}
.y93{bottom:979.991600pt;}
.y53{bottom:980.720000pt;}
.y70{bottom:992.080000pt;}
.y237{bottom:992.320000pt;}
.y5{bottom:992.880000pt;}
.y238{bottom:1001.120000pt;}
.y1a{bottom:1001.600000pt;}
.y92{bottom:1008.080000pt;}
.y52{bottom:1008.160000pt;}
.y196{bottom:1010.640000pt;}
.y6f{bottom:1013.200000pt;}
.y2{bottom:1090.640000pt;}
.y1{bottom:1108.560000pt;}
.h14{height:4.640000pt;}
.h23{height:13.757812pt;}
.h20{height:17.681333pt;}
.h2d{height:19.840000pt;}
.h2b{height:19.841333pt;}
.h27{height:19.920000pt;}
.ha{height:23.296875pt;}
.h17{height:24.000000pt;}
.h11{height:24.641333pt;}
.h10{height:26.160000pt;}
.h6{height:26.478667pt;}
.h1a{height:29.716875pt;}
.hd{height:30.320000pt;}
.h24{height:30.984844pt;}
.h2c{height:34.945312pt;}
.h2f{height:35.680000pt;}
.h31{height:35.681333pt;}
.h2a{height:35.760000pt;}
.h22{height:36.595781pt;}
.h12{height:38.905781pt;}
.h2{height:39.030469pt;}
.h29{height:39.678667pt;}
.h33{height:39.680000pt;}
.h2e{height:39.760000pt;}
.h32{height:39.761333pt;}
.h28{height:41.273438pt;}
.he{height:45.951094pt;}
.h26{height:45.976694pt;}
.h9{height:46.593750pt;}
.h8{height:50.160000pt;}
.h18{height:50.353594pt;}
.h3{height:50.554219pt;}
.h30{height:51.600000pt;}
.h1b{height:54.281719pt;}
.h16{height:55.031250pt;}
.h1c{height:55.034770pt;}
.h1e{height:57.040000pt;}
.h19{height:58.035781pt;}
.h4{height:59.708906pt;}
.hb{height:62.202656pt;}
.h15{height:62.483520pt;}
.hc{height:65.120000pt;}
.h7{height:73.466719pt;}
.h1d{height:74.560000pt;}
.h5{height:77.578594pt;}
.h1f{height:158.640000pt;}
.hf{height:198.000000pt;}
.h25{height:209.280000pt;}
.h21{height:327.678667pt;}
.h13{height:383.358667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:60.560000pt;}
.w6{width:75.520000pt;}
.w8{width:179.598667pt;}
.w4{width:189.040000pt;}
.w3{width:207.920000pt;}
.w7{width:217.361333pt;}
.w5{width:226.800000pt;}
.wa{width:304.001333pt;}
.wb{width:304.080000pt;}
.wd{width:549.520000pt;}
.w2{width:595.361333pt;}
.w9{width:608.081333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x12{left:94.480000pt;}
.x1{left:99.200000pt;}
.x3{left:101.680000pt;}
.x14{left:110.480000pt;}
.x1a{left:118.480000pt;}
.x21{left:131.520000pt;}
.xa{left:132.880000pt;}
.x1c{left:139.849760pt;}
.x15{left:141.760000pt;}
.x29{left:148.480000pt;}
.x30{left:155.040000pt;}
.x31{left:162.240000pt;}
.xd{left:166.560000pt;}
.x11{left:169.840000pt;}
.x28{left:185.760000pt;}
.x22{left:191.440000pt;}
.x1d{left:194.080000pt;}
.x24{left:203.600000pt;}
.x1f{left:211.600000pt;}
.x1e{left:222.000000pt;}
.x2{left:223.200000pt;}
.x27{left:238.000000pt;}
.x26{left:240.960000pt;}
.x20{left:250.080000pt;}
.xe{left:256.480000pt;}
.xb{left:261.520000pt;}
.x25{left:288.400000pt;}
.x16{left:302.400000pt;}
.x19{left:311.840000pt;}
.x23{left:334.000000pt;}
.x8{left:339.840000pt;}
.x7{left:341.440000pt;}
.x6{left:346.400000pt;}
.xf{left:354.720000pt;}
.x10{left:363.600000pt;}
.xc{left:373.680000pt;}
.x1b{left:381.760000pt;}
.x13{left:385.520000pt;}
.x2f{left:396.880000pt;}
.x2a{left:398.480000pt;}
.x4{left:421.840000pt;}
.x2e{left:441.120000pt;}
.x9{left:465.840000pt;}
.x2c{left:468.880000pt;}
.x17{left:491.440000pt;}
.x2d{left:526.560000pt;}
.x2b{left:608.880000pt;}
.x18{left:718.240000pt;}
}




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