
    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_0b8b2a3bcea4901106891cd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6f60311ddd5b657dc8d4dbbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.044434;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_de3693c66c97efa3a07f9d65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_414fc603773d59bd45502d88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_98192cb6257484fe1278dc9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_9cc7dd77b2ff30b76434d758.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678000;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_5b5bf8882e796a6022a5613c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.873535;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_77440ea548e8bc5f3194ce54.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_908c9169fe70bfb8cbe5e283.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_46230bd08d0fdbe2947ff387.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d9790f9c98303735952c1951.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.915520px;}
.ls71{letter-spacing:-1.457280px;}
.ls1b{letter-spacing:-1.258560px;}
.ls84{letter-spacing:-1.059840px;}
.ls78{letter-spacing:-0.993600px;}
.ls15{letter-spacing:-0.927360px;}
.ls17{letter-spacing:-0.861120px;}
.ls14{letter-spacing:-0.794880px;}
.ls30{letter-spacing:-0.728640px;}
.ls45{letter-spacing:-0.662400px;}
.ls18{letter-spacing:-0.596160px;}
.ls2f{letter-spacing:-0.529920px;}
.ls16{letter-spacing:-0.463680px;}
.ls19{letter-spacing:-0.397440px;}
.ls5c{letter-spacing:-0.337680px;}
.ls4d{letter-spacing:-0.331200px;}
.ls60{letter-spacing:-0.289440px;}
.ls64{letter-spacing:-0.287280px;}
.ls12{letter-spacing:-0.264960px;}
.ls46{letter-spacing:-0.241200px;}
.ls1c{letter-spacing:-0.240480px;}
.ls22{letter-spacing:-0.239040px;}
.ls44{letter-spacing:-0.198720px;}
.ls47{letter-spacing:-0.144720px;}
.ls1a{letter-spacing:-0.132480px;}
.ls94{letter-spacing:-0.120240px;}
.ls2e{letter-spacing:-0.108000px;}
.ls66{letter-spacing:-0.095760px;}
.ls13{letter-spacing:-0.066240px;}
.ls1f{letter-spacing:-0.059760px;}
.ls72{letter-spacing:-0.048240px;}
.ls0{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.019872px;}
.ls86{letter-spacing:0.026496px;}
.ls48{letter-spacing:0.048240px;}
.ls24{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.059760px;}
.lse{letter-spacing:0.066240px;}
.ls43{letter-spacing:0.079488px;}
.ls6b{letter-spacing:0.086112px;}
.ls65{letter-spacing:0.095760px;}
.ls5{letter-spacing:0.132480px;}
.ls56{letter-spacing:0.139104px;}
.ls93{letter-spacing:0.145728px;}
.lsd{letter-spacing:0.158976px;}
.ls67{letter-spacing:0.165600px;}
.ls28{letter-spacing:0.185472px;}
.ls32{letter-spacing:0.192096px;}
.ls11{letter-spacing:0.240480px;}
.ls2{letter-spacing:0.264960px;}
.ls5e{letter-spacing:0.289440px;}
.ls20{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.324000px;}
.ls3b{letter-spacing:0.331200px;}
.ls6d{letter-spacing:0.364320px;}
.ls3a{letter-spacing:0.397440px;}
.ls36{letter-spacing:0.404064px;}
.ls1{letter-spacing:0.420000px;}
.ls39{letter-spacing:0.423936px;}
.ls8a{letter-spacing:0.490176px;}
.ls34{letter-spacing:0.861120px;}
.ls5d{letter-spacing:0.900864px;}
.ls89{letter-spacing:0.920736px;}
.ls5f{letter-spacing:1.374840px;}
.ls8c{letter-spacing:1.563264px;}
.ls2d{letter-spacing:1.589760px;}
.ls9{letter-spacing:1.649376px;}
.ls92{letter-spacing:1.695744px;}
.ls91{letter-spacing:1.708992px;}
.ls7d{letter-spacing:2.099808px;}
.ls33{letter-spacing:2.318400px;}
.ls59{letter-spacing:2.736000px;}
.ls83{letter-spacing:3.007296px;}
.ls2a{letter-spacing:3.027168px;}
.ls31{letter-spacing:3.047040px;}
.ls5b{letter-spacing:3.135600px;}
.ls8b{letter-spacing:3.749184px;}
.ls8{letter-spacing:3.775680px;}
.ls4{letter-spacing:4.438080px;}
.ls4b{letter-spacing:5.166720px;}
.ls6{letter-spacing:5.895360px;}
.ls75{letter-spacing:5.961600px;}
.ls96{letter-spacing:5.988096px;}
.lsa{letter-spacing:6.624000px;}
.ls95{letter-spacing:6.670368px;}
.ls3d{letter-spacing:7.352640px;}
.ls74{letter-spacing:8.021664px;}
.ls55{letter-spacing:8.081280px;}
.ls8e{letter-spacing:8.101152px;}
.ls4c{letter-spacing:8.803296px;}
.ls3c{letter-spacing:8.809920px;}
.ls50{letter-spacing:9.465696px;}
.lsc{letter-spacing:9.538560px;}
.ls41{letter-spacing:10.200960px;}
.ls7f{letter-spacing:10.929600px;}
.ls7b{letter-spacing:11.625120px;}
.lsb{letter-spacing:11.658240px;}
.ls7c{letter-spacing:11.711232px;}
.ls6a{letter-spacing:11.737728px;}
.ls3e{letter-spacing:11.777472px;}
.ls38{letter-spacing:12.386880px;}
.ls3{letter-spacing:13.115520px;}
.ls7{letter-spacing:13.161888px;}
.ls4a{letter-spacing:13.844160px;}
.ls97{letter-spacing:13.968000px;}
.ls3f{letter-spacing:14.572800px;}
.ls63{letter-spacing:15.268320px;}
.ls2c{letter-spacing:15.301440px;}
.ls58{letter-spacing:15.963840px;}
.ls4f{letter-spacing:16.030080px;}
.ls57{letter-spacing:16.692480px;}
.ls4e{letter-spacing:16.977312px;}
.ls6f{letter-spacing:18.149760px;}
.ls88{letter-spacing:18.878400px;}
.ls37{letter-spacing:19.607040px;}
.ls85{letter-spacing:20.223072px;}
.ls42{letter-spacing:20.335680px;}
.ls61{letter-spacing:20.998080px;}
.lsf{letter-spacing:21.726720px;}
.ls29{letter-spacing:22.455360px;}
.ls26{letter-spacing:23.184000px;}
.ls73{letter-spacing:23.912640px;}
.ls51{letter-spacing:23.985504px;}
.ls54{letter-spacing:24.634656px;}
.ls82{letter-spacing:25.376544px;}
.ls81{letter-spacing:26.098560px;}
.ls7e{letter-spacing:26.760960px;}
.ls6c{letter-spacing:27.489600px;}
.ls2b{letter-spacing:28.218240px;}
.ls70{letter-spacing:29.675520px;}
.ls8d{letter-spacing:30.404160px;}
.ls40{letter-spacing:31.132800px;}
.ls8f{letter-spacing:31.861440px;}
.ls69{letter-spacing:33.252480px;}
.ls49{letter-spacing:34.709760px;}
.ls6e{letter-spacing:35.438400px;}
.ls5a{letter-spacing:36.167040px;}
.ls87{letter-spacing:38.485440px;}
.ls53{letter-spacing:39.744000px;}
.ls35{letter-spacing:40.472640px;}
.ls76{letter-spacing:41.201280px;}
.ls7a{letter-spacing:44.049600px;}
.ls90{letter-spacing:44.778240px;}
.ls1e{letter-spacing:44.789760px;}
.ls77{letter-spacing:45.506880px;}
.ls79{letter-spacing:49.083840px;}
.ls27{letter-spacing:59.351040px;}
.ls80{letter-spacing:64.981440px;}
.ls52{letter-spacing:66.432096px;}
.ls1d{letter-spacing:87.966720px;}
.ls62{letter-spacing:123.817680px;}
.ls25{letter-spacing:178.195680px;}
.ls10{letter-spacing:848.885760px;}
.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;}
}
.ws4d{word-spacing:-66.240000px;}
.ws2{word-spacing:-27.414720px;}
.ws4c{word-spacing:-27.174240px;}
.ws162{word-spacing:-27.054000px;}
.ws9{word-spacing:-26.933760px;}
.wsfc{word-spacing:-21.546000px;}
.wsfb{word-spacing:-21.354480px;}
.ws1{word-spacing:-16.620000px;}
.ws158{word-spacing:-15.367680px;}
.wsb8{word-spacing:-15.301440px;}
.ws43{word-spacing:-15.235200px;}
.ws8{word-spacing:-15.102720px;}
.ws89{word-spacing:-15.036480px;}
.ws3{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.904000px;}
.ws13e{word-spacing:-14.837760px;}
.ws88{word-spacing:-14.771520px;}
.ws6{word-spacing:-14.705280px;}
.wsb7{word-spacing:-14.639040px;}
.ws5{word-spacing:-14.572800px;}
.wsa4{word-spacing:-14.506560px;}
.ws4f{word-spacing:-14.440320px;}
.ws4{word-spacing:-14.374080px;}
.ws136{word-spacing:-14.307840px;}
.ws50{word-spacing:-14.241600px;}
.ws6f{word-spacing:-14.175360px;}
.ws70{word-spacing:-14.109120px;}
.ws4e{word-spacing:-14.042880px;}
.ws159{word-spacing:-13.976640px;}
.ws44{word-spacing:-13.446000px;}
.ws4b{word-spacing:-12.528000px;}
.ws8c{word-spacing:-10.950480px;}
.ws12e{word-spacing:-10.902240px;}
.ws12c{word-spacing:-10.854000px;}
.wsdd{word-spacing:-10.757520px;}
.ws8b{word-spacing:-10.661040px;}
.ws12d{word-spacing:-10.612800px;}
.wsdc{word-spacing:-10.564560px;}
.ws8a{word-spacing:-9.437760px;}
.ws5b{word-spacing:-4.106880px;}
.ws116{word-spacing:-3.908160px;}
.ws151{word-spacing:-3.775680px;}
.ws5a{word-spacing:-3.576960px;}
.ws83{word-spacing:-3.378240px;}
.ws84{word-spacing:-3.179520px;}
.ws132{word-spacing:-3.047040px;}
.wsee{word-spacing:-2.980800px;}
.ws31{word-spacing:-2.848320px;}
.ws87{word-spacing:-2.649600px;}
.ws32{word-spacing:-2.450880px;}
.wsa1{word-spacing:-2.252160px;}
.ws86{word-spacing:-2.185920px;}
.ws6e{word-spacing:-2.119680px;}
.ws6d{word-spacing:-1.920960px;}
.ws73{word-spacing:-1.722240px;}
.wsf2{word-spacing:-1.398960px;}
.wsf4{word-spacing:-1.391040px;}
.ws9a{word-spacing:-1.192320px;}
.ws13d{word-spacing:-1.059840px;}
.ws71{word-spacing:-1.026000px;}
.ws1f{word-spacing:-0.993600px;}
.ws117{word-spacing:-0.927360px;}
.wsf7{word-spacing:-0.861120px;}
.wsb4{word-spacing:-0.794880px;}
.ws23{word-spacing:-0.728640px;}
.ws9b{word-spacing:-0.721440px;}
.ws20{word-spacing:-0.529920px;}
.ws21{word-spacing:-0.463680px;}
.ws155{word-spacing:-0.397440px;}
.ws4a{word-spacing:-0.378000px;}
.ws24{word-spacing:-0.331200px;}
.ws52{word-spacing:-0.270000px;}
.ws166{word-spacing:-0.264960px;}
.ws157{word-spacing:-0.144720px;}
.ws7b{word-spacing:-0.132480px;}
.ws46{word-spacing:-0.119520px;}
.wsfe{word-spacing:-0.095760px;}
.ws7f{word-spacing:-0.066240px;}
.ws47{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.wsa2{word-spacing:0.048240px;}
.ws13{word-spacing:0.066240px;}
.ws112{word-spacing:0.095760px;}
.ws45{word-spacing:0.132480px;}
.wsa3{word-spacing:0.144720px;}
.ws51{word-spacing:0.162000px;}
.ws22{word-spacing:0.198720px;}
.ws49{word-spacing:0.239040px;}
.wsec{word-spacing:0.241200px;}
.ws12{word-spacing:0.264960px;}
.wsef{word-spacing:0.289440px;}
.wsf9{word-spacing:0.331200px;}
.wsf3{word-spacing:0.337680px;}
.ws3b{word-spacing:0.397440px;}
.ws48{word-spacing:0.418320px;}
.ws169{word-spacing:0.463680px;}
.ws12f{word-spacing:0.480960px;}
.wsac{word-spacing:0.529920px;}
.wsc2{word-spacing:0.596160px;}
.ws99{word-spacing:0.662400px;}
.wsd3{word-spacing:0.728640px;}
.ws17{word-spacing:0.794880px;}
.ws1d{word-spacing:0.861120px;}
.ws63{word-spacing:0.927360px;}
.wsaf{word-spacing:1.059840px;}
.ws75{word-spacing:1.126080px;}
.ws26{word-spacing:1.258560px;}
.ws2f{word-spacing:1.457280px;}
.wsf0{word-spacing:1.495440px;}
.ws16b{word-spacing:1.523520px;}
.ws146{word-spacing:1.589760px;}
.wsf1{word-spacing:1.591920px;}
.ws30{word-spacing:1.656000px;}
.ws135{word-spacing:1.722240px;}
.wsa{word-spacing:1.854720px;}
.wsb2{word-spacing:2.053440px;}
.ws16c{word-spacing:2.119680px;}
.ws28{word-spacing:2.185920px;}
.wse9{word-spacing:2.219040px;}
.wsbb{word-spacing:2.252160px;}
.ws14f{word-spacing:2.318400px;}
.ws72{word-spacing:2.384640px;}
.wsb1{word-spacing:2.583360px;}
.wsbc{word-spacing:2.782080px;}
.ws68{word-spacing:2.914560px;}
.ws29{word-spacing:3.113280px;}
.ws69{word-spacing:3.312000px;}
.ws2b{word-spacing:3.643200px;}
.ws2a{word-spacing:3.841920px;}
.ws2c{word-spacing:4.040640px;}
.ws1c{word-spacing:4.239360px;}
.ws10a{word-spacing:4.305600px;}
.wseb{word-spacing:4.341600px;}
.wsea{word-spacing:4.438080px;}
.ws1b{word-spacing:4.504320px;}
.ws15d{word-spacing:4.570560px;}
.ws1e{word-spacing:4.703040px;}
.ws11{word-spacing:5.034240px;}
.ws10{word-spacing:5.166720px;}
.wsf{word-spacing:5.232960px;}
.wsb0{word-spacing:5.431680px;}
.wsbf{word-spacing:5.630400px;}
.wsdb{word-spacing:5.762880px;}
.ws14c{word-spacing:5.829120px;}
.wsb5{word-spacing:5.961600px;}
.ws25{word-spacing:6.160320px;}
.ws172{word-spacing:6.359040px;}
.ws128{word-spacing:6.491520px;}
.ws96{word-spacing:6.557760px;}
.ws5c{word-spacing:6.690240px;}
.ws5d{word-spacing:6.888960px;}
.ws9d{word-spacing:7.153920px;}
.ws2d{word-spacing:7.220160px;}
.ws2e{word-spacing:7.418880px;}
.wsc3{word-spacing:7.551360px;}
.ws35{word-spacing:7.617600px;}
.wsd7{word-spacing:7.948800px;}
.ws127{word-spacing:8.015040px;}
.ws7d{word-spacing:8.147520px;}
.wsd8{word-spacing:8.213760px;}
.ws14b{word-spacing:8.280000px;}
.ws33{word-spacing:8.346240px;}
.wsd9{word-spacing:8.611200px;}
.ws11e{word-spacing:8.677440px;}
.ws8e{word-spacing:8.876160px;}
.ws3c{word-spacing:9.074880px;}
.ws60{word-spacing:9.406080px;}
.ws3a{word-spacing:9.604800px;}
.ws39{word-spacing:9.803520px;}
.ws16f{word-spacing:10.002240px;}
.wsab{word-spacing:10.068480px;}
.ws90{word-spacing:10.134720px;}
.ws15a{word-spacing:10.200960px;}
.ws92{word-spacing:10.267200px;}
.ws74{word-spacing:10.465920px;}
.ws16d{word-spacing:10.598400px;}
.ws170{word-spacing:10.664640px;}
.ws11c{word-spacing:10.797120px;}
.ws16e{word-spacing:10.863360px;}
.ws156{word-spacing:10.929600px;}
.ws8f{word-spacing:10.995840px;}
.ws91{word-spacing:11.194560px;}
.ws129{word-spacing:11.525760px;}
.ws36{word-spacing:11.724480px;}
.ws19{word-spacing:11.923200px;}
.ws55{word-spacing:12.121920px;}
.ws16{word-spacing:12.254400px;}
.ws18{word-spacing:12.453120px;}
.ws10b{word-spacing:12.519360px;}
.ws15{word-spacing:12.651840px;}
.ws56{word-spacing:12.850560px;}
.ws61{word-spacing:12.983040px;}
.ws27{word-spacing:13.181760px;}
.ws1a{word-spacing:13.314240px;}
.ws14{word-spacing:13.380480px;}
.wse4{word-spacing:13.711680px;}
.ws95{word-spacing:13.910400px;}
.wsad{word-spacing:14.109120px;}
.wsc{word-spacing:14.307840px;}
.wse{word-spacing:14.440320px;}
.wsb{word-spacing:14.639040px;}
.ws137{word-spacing:14.771520px;}
.wsd{word-spacing:14.837760px;}
.ws120{word-spacing:15.168960px;}
.ws100{word-spacing:15.367680px;}
.ws9e{word-spacing:15.566400px;}
.ws11b{word-spacing:15.831360px;}
.ws106{word-spacing:16.030080px;}
.ws9c{word-spacing:16.228800px;}
.wsda{word-spacing:16.560000px;}
.wsc5{word-spacing:16.758720px;}
.wsc6{word-spacing:16.957440px;}
.wsfa{word-spacing:17.487360px;}
.ws114{word-spacing:17.686080px;}
.ws130{word-spacing:18.017280px;}
.ws80{word-spacing:18.216000px;}
.ws81{word-spacing:18.414720px;}
.wsbd{word-spacing:18.745920px;}
.wsbe{word-spacing:18.944640px;}
.ws150{word-spacing:19.077120px;}
.ws7e{word-spacing:19.143360px;}
.ws133{word-spacing:19.474560px;}
.ws66{word-spacing:19.673280px;}
.ws67{word-spacing:19.872000px;}
.wsb3{word-spacing:20.203200px;}
.ws13a{word-spacing:20.335680px;}
.ws9f{word-spacing:20.401920px;}
.wsdf{word-spacing:20.600640px;}
.wsa0{word-spacing:20.799360px;}
.wsf6{word-spacing:20.865600px;}
.ws121{word-spacing:21.064320px;}
.wsaa{word-spacing:21.130560px;}
.wse6{word-spacing:21.263040px;}
.ws3e{word-spacing:21.594240px;}
.wsf5{word-spacing:21.726720px;}
.ws122{word-spacing:21.792960px;}
.ws3f{word-spacing:21.991680px;}
.ws131{word-spacing:22.322880px;}
.ws62{word-spacing:22.521600px;}
.ws40{word-spacing:22.720320px;}
.ws113{word-spacing:23.051520px;}
.ws82{word-spacing:23.250240px;}
.ws76{word-spacing:23.448960px;}
.ws11a{word-spacing:23.780160px;}
.wsc7{word-spacing:23.978880px;}
.ws5e{word-spacing:24.177600px;}
.wsd4{word-spacing:24.508800px;}
.wsd5{word-spacing:24.707520px;}
.wsde{word-spacing:24.906240px;}
.ws110{word-spacing:25.237440px;}
.ws104{word-spacing:25.436160px;}
.wsc4{word-spacing:25.634880px;}
.ws14a{word-spacing:25.966080px;}
.wscc{word-spacing:26.164800px;}
.ws105{word-spacing:26.297280px;}
.wsae{word-spacing:26.363520px;}
.ws142{word-spacing:26.628480px;}
.ws143{word-spacing:26.760960px;}
.wscd{word-spacing:26.827200px;}
.wsce{word-spacing:27.025920px;}
.wsb6{word-spacing:27.357120px;}
.ws34{word-spacing:27.555840px;}
.wsa5{word-spacing:27.754560px;}
.ws8d{word-spacing:28.085760px;}
.ws6b{word-spacing:28.284480px;}
.ws6a{word-spacing:28.483200px;}
.ws145{word-spacing:28.814400px;}
.ws144{word-spacing:29.013120px;}
.wse3{word-spacing:29.211840px;}
.wsed{word-spacing:29.741760px;}
.ws103{word-spacing:29.940480px;}
.ws15e{word-spacing:30.271680px;}
.ws97{word-spacing:30.470400px;}
.ws85{word-spacing:30.669120px;}
.ws111{word-spacing:31.000320px;}
.ws53{word-spacing:31.199040px;}
.ws98{word-spacing:31.397760px;}
.ws124{word-spacing:31.728960px;}
.wsd2{word-spacing:32.126400px;}
.wse8{word-spacing:32.391360px;}
.ws42{word-spacing:32.590080px;}
.ws41{word-spacing:32.788800px;}
.ws10e{word-spacing:33.120000px;}
.ws10f{word-spacing:33.318720px;}
.ws134{word-spacing:33.517440px;}
.ws11d{word-spacing:33.848640px;}
.wsff{word-spacing:34.047360px;}
.wsa9{word-spacing:34.577280px;}
.ws12a{word-spacing:34.776000px;}
.wse5{word-spacing:34.974720px;}
.wsa8{word-spacing:35.305920px;}
.wsa7{word-spacing:35.504640px;}
.ws58{word-spacing:35.703360px;}
.ws59{word-spacing:36.034560px;}
.ws10c{word-spacing:36.233280px;}
.ws57{word-spacing:36.432000px;}
.ws12b{word-spacing:36.961920px;}
.ws10d{word-spacing:37.160640px;}
.ws93{word-spacing:37.624320px;}
.ws94{word-spacing:37.823040px;}
.wsc8{word-spacing:38.154240px;}
.wsc9{word-spacing:38.551680px;}
.wsca{word-spacing:39.081600px;}
.ws6c{word-spacing:39.280320px;}
.wsd0{word-spacing:39.611520px;}
.wsd1{word-spacing:39.810240px;}
.wsf8{word-spacing:40.008960px;}
.ws11f{word-spacing:40.340160px;}
.ws3d{word-spacing:40.538880px;}
.ws77{word-spacing:40.737600px;}
.wsd6{word-spacing:41.068800px;}
.ws139{word-spacing:41.201280px;}
.ws147{word-spacing:41.466240px;}
.ws123{word-spacing:41.996160px;}
.ws126{word-spacing:42.194880px;}
.ws101{word-spacing:42.526080px;}
.wsa6{word-spacing:42.724800px;}
.ws149{word-spacing:42.923520px;}
.ws37{word-spacing:43.188480px;}
.ws141{word-spacing:43.387200px;}
.ws38{word-spacing:43.585920px;}
.ws78{word-spacing:44.314560px;}
.ws13c{word-spacing:44.645760px;}
.ws138{word-spacing:45.043200px;}
.ws154{word-spacing:45.374400px;}
.ws153{word-spacing:45.573120px;}
.ws152{word-spacing:45.771840px;}
.wsc1{word-spacing:46.235520px;}
.wsc0{word-spacing:46.301760px;}
.ws125{word-spacing:47.229120px;}
.ws160{word-spacing:47.759040px;}
.ws15f{word-spacing:47.957760px;}
.ws168{word-spacing:48.951360px;}
.ws140{word-spacing:49.348800px;}
.ws109{word-spacing:50.077440px;}
.ws13b{word-spacing:51.137280px;}
.ws115{word-spacing:51.534720px;}
.ws13f{word-spacing:52.263360px;}
.ws164{word-spacing:53.521920px;}
.ws165{word-spacing:53.720640px;}
.ws167{word-spacing:54.184320px;}
.ws54{word-spacing:54.383040px;}
.ws163{word-spacing:54.912960px;}
.ws102{word-spacing:55.111680px;}
.ws65{word-spacing:55.641600px;}
.ws64{word-spacing:55.840320px;}
.ws108{word-spacing:56.568960px;}
.ws107{word-spacing:56.900160px;}
.ws148{word-spacing:57.297600px;}
.ws161{word-spacing:57.628800px;}
.ws119{word-spacing:57.827520px;}
.ws118{word-spacing:58.026240px;}
.ws7c{word-spacing:58.754880px;}
.ws5f{word-spacing:59.284800px;}
.ws16a{word-spacing:59.748480px;}
.wsb9{word-spacing:60.145920px;}
.wse7{word-spacing:63.789120px;}
.wscf{word-spacing:64.319040px;}
.ws7a{word-spacing:65.047680px;}
.ws79{word-spacing:65.246400px;}
.wscb{word-spacing:66.637440px;}
.ws14d{word-spacing:70.280640px;}
.ws14e{word-spacing:70.943040px;}
.wse0{word-spacing:72.002880px;}
.wse2{word-spacing:72.201600px;}
.wse1{word-spacing:72.400320px;}
.ws15c{word-spacing:76.705920px;}
.ws15b{word-spacing:77.235840px;}
.wsfd{word-spacing:84.257280px;}
.ws171{word-spacing:86.112000px;}
.wsba{word-spacing:86.641920px;}
._d{margin-left:-13.059792px;}
._e{margin-left:-11.973120px;}
._a{margin-left:-10.897104px;}
._c{margin-left:-9.596256px;}
._8{margin-left:-8.478720px;}
._b{margin-left:-6.467472px;}
._9{margin-left:-5.291520px;}
._7{margin-left:-4.065600px;}
._3{margin-left:-2.054304px;}
._1{margin-left:-1.008000px;}
._0{width:1.416000px;}
._2{width:2.556000px;}
._2a{width:3.593280px;}
._5{width:4.636800px;}
._4{width:5.969088px;}
._15{width:7.816320px;}
._1c{width:9.381120px;}
._25{width:10.738560px;}
._6{width:11.790720px;}
._1d{width:13.752960px;}
._29{width:16.435008px;}
._16{width:18.447360px;}
._1e{width:19.458912px;}
._11{width:20.600640px;}
._17{width:22.288224px;}
._f{width:23.846400px;}
._1f{width:25.502400px;}
._18{width:27.238848px;}
._12{width:28.276704px;}
._22{width:29.310720px;}
._1a{width:31.596480px;}
._24{width:34.016160px;}
._21{width:35.744640px;}
._19{width:37.955520px;}
._26{width:39.255360px;}
._13{width:40.421760px;}
._27{width:42.194880px;}
._1b{width:43.320960px;}
._28{width:45.216960px;}
._2c{width:49.699776px;}
._10{width:56.162880px;}
._23{width:57.386208px;}
._2d{width:59.886144px;}
._14{width:65.007456px;}
._20{width:71.473824px;}
._2b{width:76.895328px;}
.fc7{color:rgb(117,117,117);}
.fc6{color:rgb(155,35,65);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(155,35,65);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(184,20,61);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fsd{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.150000px;}
.y77{bottom:58.860000px;}
.y5{bottom:66.525004px;}
.y63{bottom:72.722160px;}
.y4{bottom:97.125005px;}
.y3d{bottom:110.850000px;}
.y3c{bottom:130.650000px;}
.y20{bottom:139.264499px;}
.y3b{bottom:150.450000px;}
.y25b{bottom:156.416220px;}
.ye0{bottom:156.417840px;}
.y13c{bottom:156.424140px;}
.y161{bottom:156.425760px;}
.y309{bottom:158.332320px;}
.y1ba{bottom:160.521120px;}
.y296{bottom:160.737840px;}
.y62{bottom:161.543520px;}
.y17d{bottom:162.082800px;}
.y280{bottom:163.439280px;}
.y10f{bottom:164.137680px;}
.y186{bottom:165.545280px;}
.y2d1{bottom:167.565600px;}
.y216{bottom:168.004080px;}
.y1c1{bottom:168.089040px;}
.y2af{bottom:169.225920px;}
.y199{bottom:169.449120px;}
.y322{bottom:169.503120px;}
.y1ca{bottom:169.515360px;}
.y2ef{bottom:172.476000px;}
.ydf{bottom:172.795320px;}
.y13b{bottom:172.801620px;}
.y160{bottom:172.803240px;}
.y11c{bottom:173.858400px;}
.y239{bottom:173.891520px;}
.ybf{bottom:175.315680px;}
.y103{bottom:176.905440px;}
.y295{bottom:177.115320px;}
.y9a{bottom:179.143200px;}
.y1d3{bottom:179.247600px;}
.y25a{bottom:180.000000px;}
.y308{bottom:182.278080px;}
.y1b9{bottom:184.466880px;}
.y61{bottom:185.489280px;}
.y17c{bottom:186.028560px;}
.y27f{bottom:187.385040px;}
.y10e{bottom:188.083440px;}
.y15f{bottom:189.361620px;}
.y185{bottom:189.491040px;}
.y2d0{bottom:191.511360px;}
.y215{bottom:191.949840px;}
.y1c0{bottom:192.034800px;}
.y2ae{bottom:193.171680px;}
.y198{bottom:193.394880px;}
.y321{bottom:193.448880px;}
.y1c9{bottom:193.461120px;}
.y13a{bottom:195.300000px;}
.yde{bottom:196.560000px;}
.y2ee{bottom:196.603920px;}
.y17{bottom:196.933500px;}
.y259{bottom:197.460000px;}
.y11b{bottom:197.804160px;}
.y238{bottom:197.837280px;}
.ybe{bottom:199.443600px;}
.y102{bottom:200.851200px;}
.y294{bottom:200.880000px;}
.y99{bottom:203.088960px;}
.y1d2{bottom:203.193360px;}
.y1b8{bottom:208.594800px;}
.y60{bottom:209.435040px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y17b{bottom:210.156480px;}
.y139{bottom:210.237840px;}
.y27e{bottom:211.330800px;}
.y15e{bottom:211.860000px;}
.y1dd{bottom:212.029200px;}
.y184{bottom:213.618960px;}
.ydd{bottom:213.840000px;}
.y2cf{bottom:215.639280px;}
.y214{bottom:215.895600px;}
.y1bf{bottom:215.980560px;}
.y2ad{bottom:217.299600px;}
.y197{bottom:217.522800px;}
.y1c8{bottom:217.589040px;}
.y293{bottom:218.160000px;}
.y307{bottom:219.173760px;}
.y2ed{bottom:220.549680px;}
.y11a{bottom:221.932080px;}
.y237{bottom:221.965200px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.ybd{bottom:223.389360px;}
.y101{bottom:224.796960px;}
.y138{bottom:226.615320px;}
.y15d{bottom:226.800000px;}
.y98{bottom:227.216880px;}
.y1d1{bottom:227.321280px;}
.y258{bottom:228.746880px;}
.y320{bottom:230.162400px;}
.y332{bottom:231.834240px;}
.y1b7{bottom:232.540560px;}
.y5f{bottom:233.562960px;}
.ydc{bottom:233.601120px;}
.y17a{bottom:234.102240px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y27d{bottom:235.458720px;}
.y1d8{bottom:236.157120px;}
.y183{bottom:237.564720px;}
.y213{bottom:240.023520px;}
.y1be{bottom:240.108480px;}
.y196{bottom:241.468560px;}
.y1c7{bottom:241.534800px;}
.y306{bottom:243.119520px;}
.y2ec{bottom:244.495440px;}
.y119{bottom:245.877840px;}
.y236{bottom:245.910960px;}
.ybc{bottom:247.335120px;}
.y100{bottom:248.924880px;}
.y137{bottom:250.380000px;}
.y1d0{bottom:251.267040px;}
.y2ce{bottom:252.352800px;}
.y257{bottom:252.692640px;}
.y2ac{bottom:254.013120px;}
.y31f{bottom:254.290320px;}
.y331{bottom:255.697920px;}
.y1b6{bottom:256.486320px;}
.y5e{bottom:257.508720px;}
.ydb{bottom:257.546880px;}
.y179{bottom:258.048000px;}
.y3a{bottom:259.050000px;}
.y27c{bottom:259.404480px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1d7{bottom:260.102880px;}
.y182{bottom:261.510480px;}
.y97{bottom:263.930400px;}
.y212{bottom:263.969280px;}
.y15c{bottom:263.988720px;}
.y1bd{bottom:264.054240px;}
.y195{bottom:265.414320px;}
.y1c6{bottom:265.480560px;}
.y136{bottom:267.660000px;}
.y2eb{bottom:268.623360px;}
.y118{bottom:269.823600px;}
.y235{bottom:269.856720px;}
.y1fb{bottom:270.340560px;}
.ybb{bottom:271.463040px;}
.y292{bottom:272.249280px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yff{bottom:272.870640px;}
.y1cf{bottom:275.212800px;}
.y2cd{bottom:276.298560px;}
.y256{bottom:276.820560px;}
.y2ab{bottom:277.958880px;}
.y305{bottom:279.833040px;}
.y1b5{bottom:280.614240px;}
.y5d{bottom:281.454480px;}
.yda{bottom:281.492640px;}
.y39{bottom:281.550000px;}
.y178{bottom:282.175920px;}
.y27b{bottom:283.350240px;}
.y1d6{bottom:284.048640px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y181{bottom:285.638400px;}
.y96{bottom:287.876160px;}
.y211{bottom:287.915040px;}
.y15b{bottom:287.934480px;}
.y1bc{bottom:288.000000px;}
.y194{bottom:289.542240px;}
.y1c5{bottom:289.608480px;}
.y31e{bottom:291.003840px;}
.y330{bottom:292.411440px;}
.y2ea{bottom:292.569120px;}
.y117{bottom:293.951520px;}
.y234{bottom:293.984640px;}
.y1fa{bottom:294.286320px;}
.yba{bottom:295.408800px;}
.y291{bottom:296.195040px;}
.yfe{bottom:296.816400px;}
.y2cc{bottom:300.244320px;}
.y255{bottom:300.766320px;}
.y2aa{bottom:302.086800px;}
.y135{bottom:302.527440px;}
.y304{bottom:303.778800px;}
.y1b4{bottom:304.560000px;}
.y5c{bottom:305.582400px;}
.yd9{bottom:305.620560px;}
.y177{bottom:306.121680px;}
.y1d5{bottom:308.176560px;}
.y180{bottom:309.584160px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y95{bottom:311.821920px;}
.y210{bottom:312.042960px;}
.y15a{bottom:312.062400px;}
.y1ce{bottom:312.108480px;}
.y38{bottom:312.450000px;}
.y193{bottom:313.488000px;}
.y1c4{bottom:313.554240px;}
.y32f{bottom:316.539360px;}
.y116{bottom:317.897280px;}
.y233{bottom:317.930400px;}
.y1f9{bottom:318.232080px;}
.yb9{bottom:319.354560px;}
.y27a{bottom:320.063760px;}
.y290{bottom:320.140800px;}
.yfd{bottom:320.944320px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y2cb{bottom:324.372240px;}
.y254{bottom:324.712080px;}
.y2a9{bottom:326.032560px;}
.y134{bottom:326.473200px;}
.y1bb{bottom:326.700000px;}
.y31d{bottom:327.717360px;}
.y303{bottom:327.906720px;}
.y2e9{bottom:329.282640px;}
.y5b{bottom:329.528160px;}
.yd8{bottom:329.566320px;}
.y176{bottom:330.067440px;}
.y1d4{bottom:332.122320px;}
.y17f{bottom:333.529920px;}
.y37{bottom:334.950000px;}
.y94{bottom:335.949840px;}
.y159{bottom:336.008160px;}
.y1cd{bottom:336.054240px;}
.y192{bottom:337.433760px;}
.y1c3{bottom:337.500000px;}
.y32e{bottom:340.485120px;}
.y115{bottom:341.843040px;}
.y1f8{bottom:342.216720px;}
.y1b3{bottom:343.080000px;}
.y165{bottom:343.482480px;}
.y279{bottom:344.191680px;}
.y28f{bottom:344.268720px;}
.yfc{bottom:344.890080px;}
.ye{bottom:348.133500px;}
.y2ca{bottom:348.318000px;}
.y20f{bottom:348.756480px;}
.y253{bottom:348.840000px;}
.y2a8{bottom:349.978320px;}
.y133{bottom:350.601120px;}
.y31c{bottom:351.663120px;}
.y302{bottom:351.852480px;}
.y2e8{bottom:353.228400px;}
.y5a{bottom:353.473920px;}
.yd7{bottom:353.512080px;}
.y175{bottom:354.195360px;}
.y232{bottom:354.643920px;}
.yb8{bottom:356.068080px;}
.y36{bottom:357.450000px;}
.y17e{bottom:357.657840px;}
.y93{bottom:359.895600px;}
.y158{bottom:359.953920px;}
.y1cc{bottom:360.000000px;}
.y191{bottom:361.561680px;}
.y114{bottom:365.970960px;}
.y1f7{bottom:366.162480px;}
.y164{bottom:367.428240px;}
.y278{bottom:368.137440px;}
.y28e{bottom:368.214480px;}
.y10d{bottom:368.835840px;}
.y2c9{bottom:372.263760px;}
.y20e{bottom:372.702240px;}
.y132{bottom:374.546880px;}
.y31b{bottom:375.791040px;}
.y1c2{bottom:376.200000px;}
.y32d{bottom:377.198640px;}
.y2e7{bottom:377.356320px;}
.yd6{bottom:377.640000px;}
.y174{bottom:378.141120px;}
.yb7{bottom:380.196000px;}
.yfb{bottom:381.603600px;}
.y92{bottom:383.841360px;}
.y157{bottom:384.081840px;}
.y190{bottom:385.507440px;}
.y2a7{bottom:386.691840px;}
.yd{bottom:386.785499px;}
.y252{bottom:387.360000px;}
.y35{bottom:388.500000px;}
.y301{bottom:388.566000px;}
.y113{bottom:389.916720px;}
.y1f6{bottom:390.108240px;}
.y59{bottom:390.187440px;}
.y163{bottom:391.374000px;}
.y277{bottom:392.083200px;}
.y28d{bottom:392.160240px;}
.y1dc{bottom:392.963760px;}
.y2c8{bottom:396.391680px;}
.y1b2{bottom:396.594720px;}
.y20d{bottom:396.648000px;}
.y131{bottom:398.492640px;}
.y1cb{bottom:398.700000px;}
.y31a{bottom:399.736800px;}
.y32c{bottom:401.144400px;}
.y2e6{bottom:401.302080px;}
.y173{bottom:402.086880px;}
.y231{bottom:402.171120px;}
.yb6{bottom:404.141760px;}
.yfa{bottom:405.549360px;}
.y91{bottom:407.969280px;}
.yc{bottom:408.044999px;}
.y18f{bottom:409.453200px;}
.y2a6{bottom:410.819760px;}
.y300{bottom:412.693920px;}
.y112{bottom:413.862480px;}
.y1f5{bottom:414.236160px;}
.y58{bottom:414.315360px;}
.y162{bottom:415.501920px;}
.y276{bottom:416.211120px;}
.y1db{bottom:416.909520px;}
.yd5{bottom:417.766680px;}
.y2c7{bottom:420.337440px;}
.y1b1{bottom:420.722640px;}
.y20c{bottom:420.775920px;}
.y156{bottom:420.795360px;}
.y130{bottom:422.620560px;}
.y32b{bottom:425.272320px;}
.y230{bottom:425.570400px;}
.y172{bottom:426.214800px;}
.yb5{bottom:428.087520px;}
.y28c{bottom:429.055920px;}
.yf9{bottom:429.677280px;}
.y90{bottom:431.915040px;}
.y18e{bottom:433.581120px;}
.y2a5{bottom:434.765520px;}
.y319{bottom:436.450320px;}
.y2ff{bottom:436.639680px;}
.y111{bottom:437.990400px;}
.y2e5{bottom:438.015600px;}
.y1f4{bottom:438.181920px;}
.y57{bottom:438.261120px;}
.y275{bottom:440.156880px;}
.y1da{bottom:440.855280px;}
.y251{bottom:440.868960px;}
.y2c6{bottom:444.283200px;}
.y1b0{bottom:444.668400px;}
.y20b{bottom:444.721680px;}
.y155{bottom:444.741120px;}
.y12f{bottom:446.566320px;}
.y22f{bottom:448.787520px;}
.y32a{bottom:449.218080px;}
.y171{bottom:450.160560px;}
.yb4{bottom:452.215440px;}
.y28b{bottom:453.001680px;}
.yf8{bottom:453.623040px;}
.yd4{bottom:454.500000px;}
.y18d{bottom:457.526880px;}
.y2a4{bottom:458.711280px;}
.y318{bottom:460.578240px;}
.y2fe{bottom:460.585440px;}
.y1f3{bottom:462.127680px;}
.y2e4{bottom:462.143520px;}
.y56{bottom:462.206880px;}
.y274{bottom:464.102640px;}
.y1d9{bottom:464.983200px;}
.y250{bottom:464.996880px;}
.y2c5{bottom:468.411120px;}
.y1af{bottom:468.614160px;}
.y8f{bottom:468.628560px;}
.y20a{bottom:468.667440px;}
.y154{bottom:468.686880px;}
.y12e{bottom:470.512080px;}
.y22e{bottom:472.004640px;}
.y170{bottom:474.106320px;}
.yb3{bottom:476.161200px;}
.y28a{bottom:476.947440px;}
.yf7{bottom:477.568800px;}
.y34{bottom:479.400000px;}
.y18c{bottom:481.472640px;}
.y2a3{bottom:482.839200px;}
.y329{bottom:485.931600px;}
.y2e3{bottom:486.089280px;}
.y1f2{bottom:486.255600px;}
.y55{bottom:486.334800px;}
.y273{bottom:488.230560px;}
.y110{bottom:488.928960px;}
.y24f{bottom:488.942640px;}
.y2c4{bottom:492.356880px;}
.y1ae{bottom:492.742080px;}
.y8e{bottom:492.756480px;}
.y209{bottom:492.795360px;}
.y153{bottom:492.814800px;}
.y12d{bottom:494.609040px;}
.y22d{bottom:495.221760px;}
.y317{bottom:497.291760px;}
.y2fd{bottom:497.298960px;}
.y16f{bottom:498.234240px;}
.y75{bottom:499.322880px;}
.yb2{bottom:500.106960px;}
.y33{bottom:500.700000px;}
.y289{bottom:501.075360px;}
.yf6{bottom:501.696720px;}
.y18b{bottom:505.600560px;}
.y2a2{bottom:506.784960px;}
.y2e2{bottom:510.035040px;}
.y328{bottom:510.059520px;}
.y54{bottom:510.280560px;}
.y272{bottom:512.176320px;}
.yd3{bottom:512.874720px;}
.y24e{bottom:512.888400px;}
.y2c3{bottom:516.302640px;}
.y8d{bottom:516.702240px;}
.y208{bottom:516.741120px;}
.y152{bottom:516.760560px;}
.y22c{bottom:518.438880px;}
.y12c{bottom:518.554800px;}
.yb{bottom:520.864502px;}
.y316{bottom:521.237520px;}
.y2fc{bottom:521.426880px;}
.y32{bottom:521.850000px;}
.y16e{bottom:522.180000px;}
.y1f1{bottom:522.969120px;}
.yb1{bottom:524.234880px;}
.y288{bottom:525.021120px;}
.yf5{bottom:525.642480px;}
.y1ad{bottom:529.455600px;}
.y18a{bottom:529.546320px;}
.y2a1{bottom:530.730720px;}
.y327{bottom:534.005280px;}
.y2e1{bottom:534.162960px;}
.y53{bottom:534.226320px;}
.y74{bottom:536.036400px;}
.yd2{bottom:537.002640px;}
.y24d{bottom:537.016320px;}
.ya{bottom:538.864499px;}
.y2c2{bottom:540.430560px;}
.y8c{bottom:540.648000px;}
.y207{bottom:540.686880px;}
.y151{bottom:540.706320px;}
.y22b{bottom:541.656000px;}
.y12b{bottom:542.500560px;}
.y31{bottom:545.100000px;}
.y2fb{bottom:545.372640px;}
.y1f0{bottom:546.914880px;}
.yb0{bottom:548.180640px;}
.y271{bottom:548.889840px;}
.y287{bottom:548.966880px;}
.yf4{bottom:549.588240px;}
.y1ac{bottom:553.401360px;}
.y189{bottom:553.492080px;}
.y2a0{bottom:554.858640px;}
.y9{bottom:556.864499px;}
.y315{bottom:557.951040px;}
.y2e0{bottom:558.108720px;}
.y52{bottom:558.354240px;}
.y16d{bottom:560.691360px;}
.yd1{bottom:560.948400px;}
.y24c{bottom:560.962080px;}
.y2c1{bottom:564.376320px;}
.y8b{bottom:564.775920px;}
.y206{bottom:564.814800px;}
.y150{bottom:564.834240px;}
.y22a{bottom:565.055280px;}
.y12a{bottom:566.628480px;}
.y30{bottom:567.600000px;}
.y2fa{bottom:569.318400px;}
.y326{bottom:570.718800px;}
.y1ef{bottom:571.042800px;}
.yaf{bottom:572.126400px;}
.y73{bottom:572.220000px;}
.y270{bottom:573.017760px;}
.y286{bottom:573.094800px;}
.yf3{bottom:573.716160px;}
.y1ab{bottom:577.529280px;}
.y188{bottom:577.620000px;}
.y29f{bottom:578.804400px;}
.y2df{bottom:582.054480px;}
.y314{bottom:582.078960px;}
.y51{bottom:582.300000px;}
.yd0{bottom:584.894160px;}
.y24b{bottom:584.907840px;}
.y229{bottom:588.272400px;}
.y2c0{bottom:588.322080px;}
.y14f{bottom:588.686400px;}
.y8a{bottom:588.721680px;}
.y205{bottom:588.760560px;}
.y2f{bottom:590.100000px;}
.y129{bottom:590.574240px;}
.y16c{bottom:590.760000px;}
.y325{bottom:594.664560px;}
.y1ee{bottom:594.988560px;}
.yae{bottom:596.254320px;}
.y26f{bottom:596.963520px;}
.y285{bottom:597.040560px;}
.yf2{bottom:597.661920px;}
.y72{bottom:599.040000px;}
.y1aa{bottom:601.475040px;}
.y29e{bottom:602.750160px;}
.y2f9{bottom:606.214080px;}
.ycf{bottom:609.022080px;}
.y24a{bottom:609.035760px;}
.y281{bottom:610.429680px;}
.y228{bottom:611.489520px;}
.y2bf{bottom:612.450000px;}
.y14e{bottom:612.632160px;}
.y89{bottom:612.667440px;}
.y204{bottom:612.706320px;}
.y128{bottom:614.520000px;}
.y187{bottom:616.140000px;}
.y2de{bottom:618.768000px;}
.y313{bottom:618.792480px;}
.y1ed{bottom:618.934320px;}
.yad{bottom:620.200080px;}
.y26e{bottom:620.909280px;}
.y284{bottom:620.986320px;}
.y10c{bottom:621.607680px;}
.y50{bottom:622.440000px;}
.y1a9{bottom:625.420800px;}
.y71{bottom:625.860000px;}
.y29d{bottom:626.878080px;}
.y2f8{bottom:630.159840px;}
.yce{bottom:632.967840px;}
.y249{bottom:632.981520px;}
.yf1{bottom:634.375440px;}
.y28{bottom:634.650000px;}
.y227{bottom:634.706640px;}
.y2be{bottom:636.395760px;}
.y14d{bottom:636.760080px;}
.y88{bottom:636.795360px;}
.y203{bottom:636.834240px;}
.y312{bottom:642.738240px;}
.y2dd{bottom:642.895920px;}
.y1ec{bottom:643.062240px;}
.yac{bottom:644.145840px;}
.y16b{bottom:644.309280px;}
.y26d{bottom:645.037200px;}
.y283{bottom:645.114240px;}
.y8{bottom:645.510000px;}
.y10b{bottom:645.735600px;}
.y1a8{bottom:649.548720px;}
.y29c{bottom:650.823840px;}
.y2e{bottom:652.050000px;}
.y70{bottom:652.680000px;}
.y127{bottom:654.646320px;}
.ycd{bottom:656.913600px;}
.y248{bottom:656.927280px;}
.y226{bottom:657.923760px;}
.yf0{bottom:658.503360px;}
.y14c{bottom:660.705840px;}
.y202{bottom:660.780000px;}
.y27{bottom:661.650000px;}
.y311{bottom:666.684000px;}
.y7{bottom:666.771000px;}
.y2dc{bottom:666.841680px;}
.y2f7{bottom:666.873360px;}
.y1eb{bottom:667.008000px;}
.y4f{bottom:668.255040px;}
.yab{bottom:668.273760px;}
.y26c{bottom:668.982960px;}
.y10a{bottom:669.681360px;}
.y1a7{bottom:673.494480px;}
.y2d{bottom:674.550000px;}
.y29b{bottom:674.769600px;}
.y6f{bottom:679.320000px;}
.y324{bottom:679.451760px;}
.ycc{bottom:681.041520px;}
.y247{bottom:681.055200px;}
.y225{bottom:681.140880px;}
.yef{bottom:682.449120px;}
.y2bd{bottom:683.922960px;}
.y87{bottom:684.322560px;}
.y14b{bottom:684.651600px;}
.y2db{bottom:690.787440px;}
.y2f6{bottom:690.819120px;}
.y1ea{bottom:690.953760px;}
.y126{bottom:691.560000px;}
.yaa{bottom:692.219520px;}
.y4e{bottom:692.382960px;}
.y26b{bottom:692.928720px;}
.y109{bottom:693.627120px;}
.y29a{bottom:698.897520px;}
.y201{bottom:699.300000px;}
.y310{bottom:703.579680px;}
.y224{bottom:704.540160px;}
.ycb{bottom:704.987280px;}
.y246{bottom:705.000960px;}
.y2c{bottom:705.450000px;}
.yee{bottom:706.394880px;}
.y6e{bottom:706.676400px;}
.y86{bottom:707.539680px;}
.y14a{bottom:708.779520px;}
.y1a6{bottom:710.208000px;}
.y2da{bottom:714.915360px;}
.y2f5{bottom:714.947040px;}
.y1e9{bottom:715.081680px;}
.ya9{bottom:716.165280px;}
.y4d{bottom:716.328720px;}
.y26a{bottom:717.056640px;}
.y108{bottom:717.755040px;}
.y2bc{bottom:719.742240px;}
.y299{bottom:722.843280px;}
.y6{bottom:726.298500px;}
.y30f{bottom:727.525440px;}
.y223{bottom:727.757280px;}
.yca{bottom:728.933040px;}
.yed{bottom:730.522800px;}
.y85{bottom:730.756800px;}
.y149{bottom:732.725280px;}
.y1a5{bottom:734.153760px;}
.y2b{bottom:736.500000px;}
.y2d9{bottom:738.861120px;}
.y2f4{bottom:738.892800px;}
.y1e8{bottom:739.027440px;}
.y4c{bottom:740.274480px;}
.ya8{bottom:740.293200px;}
.y269{bottom:741.002400px;}
.y107{bottom:741.700800px;}
.y245{bottom:741.714480px;}
.y6d{bottom:742.860000px;}
.y2bb{bottom:743.870160px;}
.y298{bottom:746.789040px;}
.y222{bottom:750.974400px;}
.y30e{bottom:751.471200px;}
.y125{bottom:751.472640px;}
.y3{bottom:752.599495px;}
.y200{bottom:753.044400px;}
.yc9{bottom:753.060960px;}
.y84{bottom:753.973920px;}
.yec{bottom:754.468560px;}
.y148{bottom:756.671040px;}
.y1a4{bottom:758.281680px;}
.y2d8{bottom:762.806880px;}
.y1e7{bottom:762.973200px;}
.ya7{bottom:764.238960px;}
.y26{bottom:764.250000px;}
.y4b{bottom:764.402400px;}
.y268{bottom:764.948160px;}
.y106{bottom:765.646560px;}
.y244{bottom:765.660240px;}
.y2a{bottom:767.400000px;}
.y2ba{bottom:767.815920px;}
.y6c{bottom:769.680000px;}
.y221{bottom:774.191520px;}
.y30d{bottom:775.599120px;}
.y124{bottom:775.600560px;}
.y2f3{bottom:775.606320px;}
.y1ff{bottom:776.990160px;}
.yc8{bottom:777.006720px;}
.y83{bottom:777.191040px;}
.yeb{bottom:778.414320px;}
.y147{bottom:780.798960px;}
.y1a3{bottom:782.227440px;}
.y2d7{bottom:786.934800px;}
.y1e6{bottom:787.101120px;}
.y323{bottom:788.184720px;}
.y4a{bottom:788.348160px;}
.y282{bottom:789.076080px;}
.y105{bottom:789.774480px;}
.y243{bottom:789.788160px;}
.y2b9{bottom:791.761680px;}
.y297{bottom:794.481840px;}
.y6b{bottom:796.500000px;}
.y220{bottom:797.408640px;}
.y29{bottom:798.450000px;}
.y123{bottom:799.546320px;}
.y2f2{bottom:799.734240px;}
.y82{bottom:800.590320px;}
.y1fe{bottom:800.935920px;}
.ya6{bottom:800.952480px;}
.y267{bottom:801.661680px;}
.yea{bottom:802.542240px;}
.y146{bottom:804.744720px;}
.y1a2{bottom:806.173200px;}
.y25{bottom:809.250000px;}
.y2d6{bottom:810.880560px;}
.y1e5{bottom:811.046880px;}
.y49{bottom:812.293920px;}
.y30c{bottom:812.312640px;}
.y104{bottom:813.720240px;}
.y242{bottom:813.733920px;}
.y2b8{bottom:815.889600px;}
.y21f{bottom:820.625760px;}
.y6a{bottom:823.140000px;}
.y122{bottom:823.492080px;}
.y2f1{bottom:823.680000px;}
.y1fd{bottom:825.063840px;}
.yc7{bottom:825.080400px;}
.y266{bottom:825.789600px;}
.ye9{bottom:826.488000px;}
.y1a1{bottom:830.301120px;}
.y2d5{bottom:834.826320px;}
.y1e4{bottom:834.992640px;}
.y30b{bottom:836.258400px;}
.y81{bottom:836.409600px;}
.y16a{bottom:836.421840px;}
.ya5{bottom:837.666000px;}
.y241{bottom:837.679680px;}
.y2b7{bottom:839.835360px;}
.y21e{bottom:844.025040px;}
.y121{bottom:847.568880px;}
.yc6{bottom:849.026160px;}
.y48{bottom:849.189600px;}
.y265{bottom:849.735360px;}
.y69{bottom:849.960000px;}
.ye8{bottom:850.433760px;}
.y145{bottom:851.178960px;}
.y1a0{bottom:854.246880px;}
.y24{bottom:854.250000px;}
.y2d4{bottom:858.954240px;}
.y1e3{bottom:859.120560px;}
.y30a{bottom:860.204160px;}
.y80{bottom:860.355360px;}
.y169{bottom:860.367600px;}
.y1fc{bottom:861.611760px;}
.ya4{bottom:861.793920px;}
.y240{bottom:861.807600px;}
.y2b6{bottom:863.781120px;}
.y2f0{bottom:863.820000px;}
.y21d{bottom:867.242160px;}
.y120{bottom:871.514640px;}
.yc5{bottom:872.971920px;}
.y47{bottom:873.135360px;}
.y264{bottom:873.681120px;}
.y144{bottom:873.684000px;}
.ye7{bottom:874.561680px;}
.y68{bottom:876.780000px;}
.y19f{bottom:878.192640px;}
.y2{bottom:879.369000px;}
.y2d3{bottom:882.900000px;}
.y1e2{bottom:883.066320px;}
.y7f{bottom:884.301120px;}
.y168{bottom:884.313360px;}
.ya3{bottom:885.739680px;}
.y23f{bottom:885.753360px;}
.y2b5{bottom:887.909040px;}
.y21c{bottom:890.459280px;}
.y11f{bottom:895.460400px;}
.y143{bottom:896.189040px;}
.y46{bottom:897.081120px;}
.yc4{bottom:897.099840px;}
.y263{bottom:897.809040px;}
.ye6{bottom:898.507440px;}
.y19e{bottom:902.320560px;}
.y67{bottom:903.600000px;}
.y1e1{bottom:907.012080px;}
.y7e{bottom:908.429040px;}
.y167{bottom:908.441280px;}
.ya2{bottom:909.685440px;}
.y23e{bottom:909.699120px;}
.y2b4{bottom:911.854800px;}
.y21b{bottom:913.676400px;}
.y142{bottom:918.694080px;}
.y11e{bottom:919.588320px;}
.yc3{bottom:921.045600px;}
.y45{bottom:921.209040px;}
.y262{bottom:921.754800px;}
.ye5{bottom:922.453200px;}
.y2d2{bottom:923.040000px;}
.y19d{bottom:926.266320px;}
.y66{bottom:930.979440px;}
.y1e0{bottom:931.140000px;}
.y7d{bottom:932.374800px;}
.ya1{bottom:933.813360px;}
.y23d{bottom:933.827040px;}
.y2b3{bottom:935.800560px;}
.y21a{bottom:936.893520px;}
.y141{bottom:941.199120px;}
.y11d{bottom:943.534080px;}
.yc2{bottom:944.991360px;}
.y44{bottom:945.154800px;}
.y261{bottom:945.700560px;}
.ye4{bottom:946.581120px;}
.y19c{bottom:950.212080px;}
.y7c{bottom:956.320560px;}
.ya0{bottom:957.759120px;}
.y23c{bottom:957.772800px;}
.y2b2{bottom:959.928480px;}
.y219{bottom:960.110640px;}
.y140{bottom:963.704160px;}
.y1{bottom:966.726000px;}
.y65{bottom:967.692960px;}
.y43{bottom:969.100560px;}
.y260{bottom:969.828480px;}
.ye3{bottom:970.526880px;}
.y1df{bottom:971.266680px;}
.y19b{bottom:974.340000px;}
.y7b{bottom:980.448480px;}
.y9f{bottom:981.704880px;}
.y218{bottom:983.509920px;}
.y13f{bottom:986.209200px;}
.y42{bottom:993.228480px;}
.y25f{bottom:993.774240px;}
.ye2{bottom:994.472640px;}
.y23b{bottom:994.486320px;}
.y7a{bottom:1004.394240px;}
.y64{bottom:1004.406480px;}
.y9e{bottom:1005.832800px;}
.y217{bottom:1006.727040px;}
.y2b1{bottom:1007.455680px;}
.y1de{bottom:1008.000000px;}
.y13e{bottom:1008.714240px;}
.y19a{bottom:1012.860000px;}
.y41{bottom:1017.174240px;}
.y25e{bottom:1017.720000px;}
.ye1{bottom:1018.600560px;}
.y23a{bottom:1018.614240px;}
.y79{bottom:1028.340000px;}
.yc1{bottom:1029.778560px;}
.y2b0{bottom:1030.672800px;}
.y13d{bottom:1031.219280px;}
.y23{bottom:1039.800000px;}
.y40{bottom:1041.120000px;}
.y9d{bottom:1042.546320px;}
.yc0{bottom:1053.724320px;}
.y25d{bottom:1056.411360px;}
.y9c{bottom:1066.492080px;}
.y22{bottom:1066.800000px;}
.y78{bottom:1068.660000px;}
.y166{bottom:1081.260000px;}
.y3f{bottom:1081.440000px;}
.y25c{bottom:1086.480000px;}
.y9b{bottom:1090.620000px;}
.y3e{bottom:1186.200000px;}
.y76{bottom:1191.240000px;}
.h8{height:32.130000px;}
.h17{height:33.114375px;}
.h9{height:37.968000px;}
.h16{height:38.252812px;}
.h13{height:42.820312px;}
.he{height:43.476562px;}
.h14{height:46.057500px;}
.h3{height:48.195000px;}
.hc{height:50.214844px;}
.h10{height:52.526250px;}
.h7{height:54.240000px;}
.h1d{height:56.929095px;}
.h6{height:56.952000px;}
.h19{height:56.998215px;}
.h15{height:57.029895px;}
.h18{height:57.078855px;}
.h1e{height:57.182535px;}
.h1a{height:57.248775px;}
.h1f{height:57.422070px;}
.h1c{height:57.447495px;}
.h2{height:65.088000px;}
.hb{height:70.300781px;}
.h1b{height:75.934688px;}
.h5{height:92.208000px;}
.h11{height:95.346562px;}
.h12{height:95.732483px;}
.h4{height:119.055004px;}
.hd{height:120.515625px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.hf{height:1263.060000px;}
.w2{width:637.794021px;}
.w5{width:892.440000px;}
.w3{width:892.500000px;}
.w6{width:892.620000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:153.450000px;}
.xf{left:179.959680px;}
.x4{left:203.484001px;}
.x10{left:206.969040px;}
.x11{left:221.025780px;}
.x7{left:235.500000px;}
.x9{left:317.400000px;}
.x8{left:333.450000px;}
.x12{left:439.389000px;}
.xe{left:442.822500px;}
.x3{left:454.959000px;}
.xd{left:479.340000px;}
.x5{left:512.700000px;}
.xb{left:586.350000px;}
.xa{left:599.100000px;}
.x6{left:624.000000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.258240pt;}
.ls71{letter-spacing:-1.295360pt;}
.ls1b{letter-spacing:-1.118720pt;}
.ls84{letter-spacing:-0.942080pt;}
.ls78{letter-spacing:-0.883200pt;}
.ls15{letter-spacing:-0.824320pt;}
.ls17{letter-spacing:-0.765440pt;}
.ls14{letter-spacing:-0.706560pt;}
.ls30{letter-spacing:-0.647680pt;}
.ls45{letter-spacing:-0.588800pt;}
.ls18{letter-spacing:-0.529920pt;}
.ls2f{letter-spacing:-0.471040pt;}
.ls16{letter-spacing:-0.412160pt;}
.ls19{letter-spacing:-0.353280pt;}
.ls5c{letter-spacing:-0.300160pt;}
.ls4d{letter-spacing:-0.294400pt;}
.ls60{letter-spacing:-0.257280pt;}
.ls64{letter-spacing:-0.255360pt;}
.ls12{letter-spacing:-0.235520pt;}
.ls46{letter-spacing:-0.214400pt;}
.ls1c{letter-spacing:-0.213760pt;}
.ls22{letter-spacing:-0.212480pt;}
.ls44{letter-spacing:-0.176640pt;}
.ls47{letter-spacing:-0.128640pt;}
.ls1a{letter-spacing:-0.117760pt;}
.ls94{letter-spacing:-0.106880pt;}
.ls2e{letter-spacing:-0.096000pt;}
.ls66{letter-spacing:-0.085120pt;}
.ls13{letter-spacing:-0.058880pt;}
.ls1f{letter-spacing:-0.053120pt;}
.ls72{letter-spacing:-0.042880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.017664pt;}
.ls86{letter-spacing:0.023552pt;}
.ls48{letter-spacing:0.042880pt;}
.ls24{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.053120pt;}
.lse{letter-spacing:0.058880pt;}
.ls43{letter-spacing:0.070656pt;}
.ls6b{letter-spacing:0.076544pt;}
.ls65{letter-spacing:0.085120pt;}
.ls5{letter-spacing:0.117760pt;}
.ls56{letter-spacing:0.123648pt;}
.ls93{letter-spacing:0.129536pt;}
.lsd{letter-spacing:0.141312pt;}
.ls67{letter-spacing:0.147200pt;}
.ls28{letter-spacing:0.164864pt;}
.ls32{letter-spacing:0.170752pt;}
.ls11{letter-spacing:0.213760pt;}
.ls2{letter-spacing:0.235520pt;}
.ls5e{letter-spacing:0.257280pt;}
.ls20{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.288000pt;}
.ls3b{letter-spacing:0.294400pt;}
.ls6d{letter-spacing:0.323840pt;}
.ls3a{letter-spacing:0.353280pt;}
.ls36{letter-spacing:0.359168pt;}
.ls1{letter-spacing:0.373333pt;}
.ls39{letter-spacing:0.376832pt;}
.ls8a{letter-spacing:0.435712pt;}
.ls34{letter-spacing:0.765440pt;}
.ls5d{letter-spacing:0.800768pt;}
.ls89{letter-spacing:0.818432pt;}
.ls5f{letter-spacing:1.222080pt;}
.ls8c{letter-spacing:1.389568pt;}
.ls2d{letter-spacing:1.413120pt;}
.ls9{letter-spacing:1.466112pt;}
.ls92{letter-spacing:1.507328pt;}
.ls91{letter-spacing:1.519104pt;}
.ls7d{letter-spacing:1.866496pt;}
.ls33{letter-spacing:2.060800pt;}
.ls59{letter-spacing:2.432000pt;}
.ls83{letter-spacing:2.673152pt;}
.ls2a{letter-spacing:2.690816pt;}
.ls31{letter-spacing:2.708480pt;}
.ls5b{letter-spacing:2.787200pt;}
.ls8b{letter-spacing:3.332608pt;}
.ls8{letter-spacing:3.356160pt;}
.ls4{letter-spacing:3.944960pt;}
.ls4b{letter-spacing:4.592640pt;}
.ls6{letter-spacing:5.240320pt;}
.ls75{letter-spacing:5.299200pt;}
.ls96{letter-spacing:5.322752pt;}
.lsa{letter-spacing:5.888000pt;}
.ls95{letter-spacing:5.929216pt;}
.ls3d{letter-spacing:6.535680pt;}
.ls74{letter-spacing:7.130368pt;}
.ls55{letter-spacing:7.183360pt;}
.ls8e{letter-spacing:7.201024pt;}
.ls4c{letter-spacing:7.825152pt;}
.ls3c{letter-spacing:7.831040pt;}
.ls50{letter-spacing:8.413952pt;}
.lsc{letter-spacing:8.478720pt;}
.ls41{letter-spacing:9.067520pt;}
.ls7f{letter-spacing:9.715200pt;}
.ls7b{letter-spacing:10.333440pt;}
.lsb{letter-spacing:10.362880pt;}
.ls7c{letter-spacing:10.409984pt;}
.ls6a{letter-spacing:10.433536pt;}
.ls3e{letter-spacing:10.468864pt;}
.ls38{letter-spacing:11.010560pt;}
.ls3{letter-spacing:11.658240pt;}
.ls7{letter-spacing:11.699456pt;}
.ls4a{letter-spacing:12.305920pt;}
.ls97{letter-spacing:12.416000pt;}
.ls3f{letter-spacing:12.953600pt;}
.ls63{letter-spacing:13.571840pt;}
.ls2c{letter-spacing:13.601280pt;}
.ls58{letter-spacing:14.190080pt;}
.ls4f{letter-spacing:14.248960pt;}
.ls57{letter-spacing:14.837760pt;}
.ls4e{letter-spacing:15.090944pt;}
.ls6f{letter-spacing:16.133120pt;}
.ls88{letter-spacing:16.780800pt;}
.ls37{letter-spacing:17.428480pt;}
.ls85{letter-spacing:17.976064pt;}
.ls42{letter-spacing:18.076160pt;}
.ls61{letter-spacing:18.664960pt;}
.lsf{letter-spacing:19.312640pt;}
.ls29{letter-spacing:19.960320pt;}
.ls26{letter-spacing:20.608000pt;}
.ls73{letter-spacing:21.255680pt;}
.ls51{letter-spacing:21.320448pt;}
.ls54{letter-spacing:21.897472pt;}
.ls82{letter-spacing:22.556928pt;}
.ls81{letter-spacing:23.198720pt;}
.ls7e{letter-spacing:23.787520pt;}
.ls6c{letter-spacing:24.435200pt;}
.ls2b{letter-spacing:25.082880pt;}
.ls70{letter-spacing:26.378240pt;}
.ls8d{letter-spacing:27.025920pt;}
.ls40{letter-spacing:27.673600pt;}
.ls8f{letter-spacing:28.321280pt;}
.ls69{letter-spacing:29.557760pt;}
.ls49{letter-spacing:30.853120pt;}
.ls6e{letter-spacing:31.500800pt;}
.ls5a{letter-spacing:32.148480pt;}
.ls87{letter-spacing:34.209280pt;}
.ls53{letter-spacing:35.328000pt;}
.ls35{letter-spacing:35.975680pt;}
.ls76{letter-spacing:36.623360pt;}
.ls7a{letter-spacing:39.155200pt;}
.ls90{letter-spacing:39.802880pt;}
.ls1e{letter-spacing:39.813120pt;}
.ls77{letter-spacing:40.450560pt;}
.ls79{letter-spacing:43.630080pt;}
.ls27{letter-spacing:52.756480pt;}
.ls80{letter-spacing:57.761280pt;}
.ls52{letter-spacing:59.050752pt;}
.ls1d{letter-spacing:78.192640pt;}
.ls62{letter-spacing:110.060160pt;}
.ls25{letter-spacing:158.396160pt;}
.ls10{letter-spacing:754.565120pt;}
.ws4d{word-spacing:-58.880000pt;}
.ws2{word-spacing:-24.368640pt;}
.ws4c{word-spacing:-24.154880pt;}
.ws162{word-spacing:-24.048000pt;}
.ws9{word-spacing:-23.941120pt;}
.wsfc{word-spacing:-19.152000pt;}
.wsfb{word-spacing:-18.981760pt;}
.ws1{word-spacing:-14.773333pt;}
.ws158{word-spacing:-13.660160pt;}
.wsb8{word-spacing:-13.601280pt;}
.ws43{word-spacing:-13.542400pt;}
.ws8{word-spacing:-13.424640pt;}
.ws89{word-spacing:-13.365760pt;}
.ws3{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.248000pt;}
.ws13e{word-spacing:-13.189120pt;}
.ws88{word-spacing:-13.130240pt;}
.ws6{word-spacing:-13.071360pt;}
.wsb7{word-spacing:-13.012480pt;}
.ws5{word-spacing:-12.953600pt;}
.wsa4{word-spacing:-12.894720pt;}
.ws4f{word-spacing:-12.835840pt;}
.ws4{word-spacing:-12.776960pt;}
.ws136{word-spacing:-12.718080pt;}
.ws50{word-spacing:-12.659200pt;}
.ws6f{word-spacing:-12.600320pt;}
.ws70{word-spacing:-12.541440pt;}
.ws4e{word-spacing:-12.482560pt;}
.ws159{word-spacing:-12.423680pt;}
.ws44{word-spacing:-11.952000pt;}
.ws4b{word-spacing:-11.136000pt;}
.ws8c{word-spacing:-9.733760pt;}
.ws12e{word-spacing:-9.690880pt;}
.ws12c{word-spacing:-9.648000pt;}
.wsdd{word-spacing:-9.562240pt;}
.ws8b{word-spacing:-9.476480pt;}
.ws12d{word-spacing:-9.433600pt;}
.wsdc{word-spacing:-9.390720pt;}
.ws8a{word-spacing:-8.389120pt;}
.ws5b{word-spacing:-3.650560pt;}
.ws116{word-spacing:-3.473920pt;}
.ws151{word-spacing:-3.356160pt;}
.ws5a{word-spacing:-3.179520pt;}
.ws83{word-spacing:-3.002880pt;}
.ws84{word-spacing:-2.826240pt;}
.ws132{word-spacing:-2.708480pt;}
.wsee{word-spacing:-2.649600pt;}
.ws31{word-spacing:-2.531840pt;}
.ws87{word-spacing:-2.355200pt;}
.ws32{word-spacing:-2.178560pt;}
.wsa1{word-spacing:-2.001920pt;}
.ws86{word-spacing:-1.943040pt;}
.ws6e{word-spacing:-1.884160pt;}
.ws6d{word-spacing:-1.707520pt;}
.ws73{word-spacing:-1.530880pt;}
.wsf2{word-spacing:-1.243520pt;}
.wsf4{word-spacing:-1.236480pt;}
.ws9a{word-spacing:-1.059840pt;}
.ws13d{word-spacing:-0.942080pt;}
.ws71{word-spacing:-0.912000pt;}
.ws1f{word-spacing:-0.883200pt;}
.ws117{word-spacing:-0.824320pt;}
.wsf7{word-spacing:-0.765440pt;}
.wsb4{word-spacing:-0.706560pt;}
.ws23{word-spacing:-0.647680pt;}
.ws9b{word-spacing:-0.641280pt;}
.ws20{word-spacing:-0.471040pt;}
.ws21{word-spacing:-0.412160pt;}
.ws155{word-spacing:-0.353280pt;}
.ws4a{word-spacing:-0.336000pt;}
.ws24{word-spacing:-0.294400pt;}
.ws52{word-spacing:-0.240000pt;}
.ws166{word-spacing:-0.235520pt;}
.ws157{word-spacing:-0.128640pt;}
.ws7b{word-spacing:-0.117760pt;}
.ws46{word-spacing:-0.106240pt;}
.wsfe{word-spacing:-0.085120pt;}
.ws7f{word-spacing:-0.058880pt;}
.ws47{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.042880pt;}
.ws13{word-spacing:0.058880pt;}
.ws112{word-spacing:0.085120pt;}
.ws45{word-spacing:0.117760pt;}
.wsa3{word-spacing:0.128640pt;}
.ws51{word-spacing:0.144000pt;}
.ws22{word-spacing:0.176640pt;}
.ws49{word-spacing:0.212480pt;}
.wsec{word-spacing:0.214400pt;}
.ws12{word-spacing:0.235520pt;}
.wsef{word-spacing:0.257280pt;}
.wsf9{word-spacing:0.294400pt;}
.wsf3{word-spacing:0.300160pt;}
.ws3b{word-spacing:0.353280pt;}
.ws48{word-spacing:0.371840pt;}
.ws169{word-spacing:0.412160pt;}
.ws12f{word-spacing:0.427520pt;}
.wsac{word-spacing:0.471040pt;}
.wsc2{word-spacing:0.529920pt;}
.ws99{word-spacing:0.588800pt;}
.wsd3{word-spacing:0.647680pt;}
.ws17{word-spacing:0.706560pt;}
.ws1d{word-spacing:0.765440pt;}
.ws63{word-spacing:0.824320pt;}
.wsaf{word-spacing:0.942080pt;}
.ws75{word-spacing:1.000960pt;}
.ws26{word-spacing:1.118720pt;}
.ws2f{word-spacing:1.295360pt;}
.wsf0{word-spacing:1.329280pt;}
.ws16b{word-spacing:1.354240pt;}
.ws146{word-spacing:1.413120pt;}
.wsf1{word-spacing:1.415040pt;}
.ws30{word-spacing:1.472000pt;}
.ws135{word-spacing:1.530880pt;}
.wsa{word-spacing:1.648640pt;}
.wsb2{word-spacing:1.825280pt;}
.ws16c{word-spacing:1.884160pt;}
.ws28{word-spacing:1.943040pt;}
.wse9{word-spacing:1.972480pt;}
.wsbb{word-spacing:2.001920pt;}
.ws14f{word-spacing:2.060800pt;}
.ws72{word-spacing:2.119680pt;}
.wsb1{word-spacing:2.296320pt;}
.wsbc{word-spacing:2.472960pt;}
.ws68{word-spacing:2.590720pt;}
.ws29{word-spacing:2.767360pt;}
.ws69{word-spacing:2.944000pt;}
.ws2b{word-spacing:3.238400pt;}
.ws2a{word-spacing:3.415040pt;}
.ws2c{word-spacing:3.591680pt;}
.ws1c{word-spacing:3.768320pt;}
.ws10a{word-spacing:3.827200pt;}
.wseb{word-spacing:3.859200pt;}
.wsea{word-spacing:3.944960pt;}
.ws1b{word-spacing:4.003840pt;}
.ws15d{word-spacing:4.062720pt;}
.ws1e{word-spacing:4.180480pt;}
.ws11{word-spacing:4.474880pt;}
.ws10{word-spacing:4.592640pt;}
.wsf{word-spacing:4.651520pt;}
.wsb0{word-spacing:4.828160pt;}
.wsbf{word-spacing:5.004800pt;}
.wsdb{word-spacing:5.122560pt;}
.ws14c{word-spacing:5.181440pt;}
.wsb5{word-spacing:5.299200pt;}
.ws25{word-spacing:5.475840pt;}
.ws172{word-spacing:5.652480pt;}
.ws128{word-spacing:5.770240pt;}
.ws96{word-spacing:5.829120pt;}
.ws5c{word-spacing:5.946880pt;}
.ws5d{word-spacing:6.123520pt;}
.ws9d{word-spacing:6.359040pt;}
.ws2d{word-spacing:6.417920pt;}
.ws2e{word-spacing:6.594560pt;}
.wsc3{word-spacing:6.712320pt;}
.ws35{word-spacing:6.771200pt;}
.wsd7{word-spacing:7.065600pt;}
.ws127{word-spacing:7.124480pt;}
.ws7d{word-spacing:7.242240pt;}
.wsd8{word-spacing:7.301120pt;}
.ws14b{word-spacing:7.360000pt;}
.ws33{word-spacing:7.418880pt;}
.wsd9{word-spacing:7.654400pt;}
.ws11e{word-spacing:7.713280pt;}
.ws8e{word-spacing:7.889920pt;}
.ws3c{word-spacing:8.066560pt;}
.ws60{word-spacing:8.360960pt;}
.ws3a{word-spacing:8.537600pt;}
.ws39{word-spacing:8.714240pt;}
.ws16f{word-spacing:8.890880pt;}
.wsab{word-spacing:8.949760pt;}
.ws90{word-spacing:9.008640pt;}
.ws15a{word-spacing:9.067520pt;}
.ws92{word-spacing:9.126400pt;}
.ws74{word-spacing:9.303040pt;}
.ws16d{word-spacing:9.420800pt;}
.ws170{word-spacing:9.479680pt;}
.ws11c{word-spacing:9.597440pt;}
.ws16e{word-spacing:9.656320pt;}
.ws156{word-spacing:9.715200pt;}
.ws8f{word-spacing:9.774080pt;}
.ws91{word-spacing:9.950720pt;}
.ws129{word-spacing:10.245120pt;}
.ws36{word-spacing:10.421760pt;}
.ws19{word-spacing:10.598400pt;}
.ws55{word-spacing:10.775040pt;}
.ws16{word-spacing:10.892800pt;}
.ws18{word-spacing:11.069440pt;}
.ws10b{word-spacing:11.128320pt;}
.ws15{word-spacing:11.246080pt;}
.ws56{word-spacing:11.422720pt;}
.ws61{word-spacing:11.540480pt;}
.ws27{word-spacing:11.717120pt;}
.ws1a{word-spacing:11.834880pt;}
.ws14{word-spacing:11.893760pt;}
.wse4{word-spacing:12.188160pt;}
.ws95{word-spacing:12.364800pt;}
.wsad{word-spacing:12.541440pt;}
.wsc{word-spacing:12.718080pt;}
.wse{word-spacing:12.835840pt;}
.wsb{word-spacing:13.012480pt;}
.ws137{word-spacing:13.130240pt;}
.wsd{word-spacing:13.189120pt;}
.ws120{word-spacing:13.483520pt;}
.ws100{word-spacing:13.660160pt;}
.ws9e{word-spacing:13.836800pt;}
.ws11b{word-spacing:14.072320pt;}
.ws106{word-spacing:14.248960pt;}
.ws9c{word-spacing:14.425600pt;}
.wsda{word-spacing:14.720000pt;}
.wsc5{word-spacing:14.896640pt;}
.wsc6{word-spacing:15.073280pt;}
.wsfa{word-spacing:15.544320pt;}
.ws114{word-spacing:15.720960pt;}
.ws130{word-spacing:16.015360pt;}
.ws80{word-spacing:16.192000pt;}
.ws81{word-spacing:16.368640pt;}
.wsbd{word-spacing:16.663040pt;}
.wsbe{word-spacing:16.839680pt;}
.ws150{word-spacing:16.957440pt;}
.ws7e{word-spacing:17.016320pt;}
.ws133{word-spacing:17.310720pt;}
.ws66{word-spacing:17.487360pt;}
.ws67{word-spacing:17.664000pt;}
.wsb3{word-spacing:17.958400pt;}
.ws13a{word-spacing:18.076160pt;}
.ws9f{word-spacing:18.135040pt;}
.wsdf{word-spacing:18.311680pt;}
.wsa0{word-spacing:18.488320pt;}
.wsf6{word-spacing:18.547200pt;}
.ws121{word-spacing:18.723840pt;}
.wsaa{word-spacing:18.782720pt;}
.wse6{word-spacing:18.900480pt;}
.ws3e{word-spacing:19.194880pt;}
.wsf5{word-spacing:19.312640pt;}
.ws122{word-spacing:19.371520pt;}
.ws3f{word-spacing:19.548160pt;}
.ws131{word-spacing:19.842560pt;}
.ws62{word-spacing:20.019200pt;}
.ws40{word-spacing:20.195840pt;}
.ws113{word-spacing:20.490240pt;}
.ws82{word-spacing:20.666880pt;}
.ws76{word-spacing:20.843520pt;}
.ws11a{word-spacing:21.137920pt;}
.wsc7{word-spacing:21.314560pt;}
.ws5e{word-spacing:21.491200pt;}
.wsd4{word-spacing:21.785600pt;}
.wsd5{word-spacing:21.962240pt;}
.wsde{word-spacing:22.138880pt;}
.ws110{word-spacing:22.433280pt;}
.ws104{word-spacing:22.609920pt;}
.wsc4{word-spacing:22.786560pt;}
.ws14a{word-spacing:23.080960pt;}
.wscc{word-spacing:23.257600pt;}
.ws105{word-spacing:23.375360pt;}
.wsae{word-spacing:23.434240pt;}
.ws142{word-spacing:23.669760pt;}
.ws143{word-spacing:23.787520pt;}
.wscd{word-spacing:23.846400pt;}
.wsce{word-spacing:24.023040pt;}
.wsb6{word-spacing:24.317440pt;}
.ws34{word-spacing:24.494080pt;}
.wsa5{word-spacing:24.670720pt;}
.ws8d{word-spacing:24.965120pt;}
.ws6b{word-spacing:25.141760pt;}
.ws6a{word-spacing:25.318400pt;}
.ws145{word-spacing:25.612800pt;}
.ws144{word-spacing:25.789440pt;}
.wse3{word-spacing:25.966080pt;}
.wsed{word-spacing:26.437120pt;}
.ws103{word-spacing:26.613760pt;}
.ws15e{word-spacing:26.908160pt;}
.ws97{word-spacing:27.084800pt;}
.ws85{word-spacing:27.261440pt;}
.ws111{word-spacing:27.555840pt;}
.ws53{word-spacing:27.732480pt;}
.ws98{word-spacing:27.909120pt;}
.ws124{word-spacing:28.203520pt;}
.wsd2{word-spacing:28.556800pt;}
.wse8{word-spacing:28.792320pt;}
.ws42{word-spacing:28.968960pt;}
.ws41{word-spacing:29.145600pt;}
.ws10e{word-spacing:29.440000pt;}
.ws10f{word-spacing:29.616640pt;}
.ws134{word-spacing:29.793280pt;}
.ws11d{word-spacing:30.087680pt;}
.wsff{word-spacing:30.264320pt;}
.wsa9{word-spacing:30.735360pt;}
.ws12a{word-spacing:30.912000pt;}
.wse5{word-spacing:31.088640pt;}
.wsa8{word-spacing:31.383040pt;}
.wsa7{word-spacing:31.559680pt;}
.ws58{word-spacing:31.736320pt;}
.ws59{word-spacing:32.030720pt;}
.ws10c{word-spacing:32.207360pt;}
.ws57{word-spacing:32.384000pt;}
.ws12b{word-spacing:32.855040pt;}
.ws10d{word-spacing:33.031680pt;}
.ws93{word-spacing:33.443840pt;}
.ws94{word-spacing:33.620480pt;}
.wsc8{word-spacing:33.914880pt;}
.wsc9{word-spacing:34.268160pt;}
.wsca{word-spacing:34.739200pt;}
.ws6c{word-spacing:34.915840pt;}
.wsd0{word-spacing:35.210240pt;}
.wsd1{word-spacing:35.386880pt;}
.wsf8{word-spacing:35.563520pt;}
.ws11f{word-spacing:35.857920pt;}
.ws3d{word-spacing:36.034560pt;}
.ws77{word-spacing:36.211200pt;}
.wsd6{word-spacing:36.505600pt;}
.ws139{word-spacing:36.623360pt;}
.ws147{word-spacing:36.858880pt;}
.ws123{word-spacing:37.329920pt;}
.ws126{word-spacing:37.506560pt;}
.ws101{word-spacing:37.800960pt;}
.wsa6{word-spacing:37.977600pt;}
.ws149{word-spacing:38.154240pt;}
.ws37{word-spacing:38.389760pt;}
.ws141{word-spacing:38.566400pt;}
.ws38{word-spacing:38.743040pt;}
.ws78{word-spacing:39.390720pt;}
.ws13c{word-spacing:39.685120pt;}
.ws138{word-spacing:40.038400pt;}
.ws154{word-spacing:40.332800pt;}
.ws153{word-spacing:40.509440pt;}
.ws152{word-spacing:40.686080pt;}
.wsc1{word-spacing:41.098240pt;}
.wsc0{word-spacing:41.157120pt;}
.ws125{word-spacing:41.981440pt;}
.ws160{word-spacing:42.452480pt;}
.ws15f{word-spacing:42.629120pt;}
.ws168{word-spacing:43.512320pt;}
.ws140{word-spacing:43.865600pt;}
.ws109{word-spacing:44.513280pt;}
.ws13b{word-spacing:45.455360pt;}
.ws115{word-spacing:45.808640pt;}
.ws13f{word-spacing:46.456320pt;}
.ws164{word-spacing:47.575040pt;}
.ws165{word-spacing:47.751680pt;}
.ws167{word-spacing:48.163840pt;}
.ws54{word-spacing:48.340480pt;}
.ws163{word-spacing:48.811520pt;}
.ws102{word-spacing:48.988160pt;}
.ws65{word-spacing:49.459200pt;}
.ws64{word-spacing:49.635840pt;}
.ws108{word-spacing:50.283520pt;}
.ws107{word-spacing:50.577920pt;}
.ws148{word-spacing:50.931200pt;}
.ws161{word-spacing:51.225600pt;}
.ws119{word-spacing:51.402240pt;}
.ws118{word-spacing:51.578880pt;}
.ws7c{word-spacing:52.226560pt;}
.ws5f{word-spacing:52.697600pt;}
.ws16a{word-spacing:53.109760pt;}
.wsb9{word-spacing:53.463040pt;}
.wse7{word-spacing:56.701440pt;}
.wscf{word-spacing:57.172480pt;}
.ws7a{word-spacing:57.820160pt;}
.ws79{word-spacing:57.996800pt;}
.wscb{word-spacing:59.233280pt;}
.ws14d{word-spacing:62.471680pt;}
.ws14e{word-spacing:63.060480pt;}
.wse0{word-spacing:64.002560pt;}
.wse2{word-spacing:64.179200pt;}
.wse1{word-spacing:64.355840pt;}
.ws15c{word-spacing:68.183040pt;}
.ws15b{word-spacing:68.654080pt;}
.wsfd{word-spacing:74.895360pt;}
.ws171{word-spacing:76.544000pt;}
.wsba{word-spacing:77.015040pt;}
._d{margin-left:-11.608704pt;}
._e{margin-left:-10.642773pt;}
._a{margin-left:-9.686315pt;}
._c{margin-left:-8.530005pt;}
._8{margin-left:-7.536640pt;}
._b{margin-left:-5.748864pt;}
._9{margin-left:-4.703573pt;}
._7{margin-left:-3.613867pt;}
._3{margin-left:-1.826048pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.258667pt;}
._2{width:2.272000pt;}
._2a{width:3.194027pt;}
._5{width:4.121600pt;}
._4{width:5.305856pt;}
._15{width:6.947840pt;}
._1c{width:8.338773pt;}
._25{width:9.545387pt;}
._6{width:10.480640pt;}
._1d{width:12.224853pt;}
._29{width:14.608896pt;}
._16{width:16.397653pt;}
._1e{width:17.296811pt;}
._11{width:18.311680pt;}
._17{width:19.811755pt;}
._f{width:21.196800pt;}
._1f{width:22.668800pt;}
._18{width:24.212309pt;}
._12{width:25.134848pt;}
._22{width:26.053973pt;}
._1a{width:28.085760pt;}
._24{width:30.236587pt;}
._21{width:31.773013pt;}
._19{width:33.738240pt;}
._26{width:34.893653pt;}
._13{width:35.930453pt;}
._27{width:37.506560pt;}
._1b{width:38.507520pt;}
._28{width:40.192853pt;}
._2c{width:44.177579pt;}
._10{width:49.922560pt;}
._23{width:51.009963pt;}
._2d{width:53.232128pt;}
._14{width:57.784405pt;}
._20{width:63.532288pt;}
._2b{width:68.351403pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fsd{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.133333pt;}
.y77{bottom:52.320000pt;}
.y5{bottom:59.133337pt;}
.y63{bottom:64.641920pt;}
.y4{bottom:86.333337pt;}
.y3d{bottom:98.533333pt;}
.y3c{bottom:116.133333pt;}
.y20{bottom:123.790666pt;}
.y3b{bottom:133.733333pt;}
.y25b{bottom:139.036640pt;}
.ye0{bottom:139.038080pt;}
.y13c{bottom:139.043680pt;}
.y161{bottom:139.045120pt;}
.y309{bottom:140.739840pt;}
.y1ba{bottom:142.685440pt;}
.y296{bottom:142.878080pt;}
.y62{bottom:143.594240pt;}
.y17d{bottom:144.073600pt;}
.y280{bottom:145.279360pt;}
.y10f{bottom:145.900160pt;}
.y186{bottom:147.151360pt;}
.y2d1{bottom:148.947200pt;}
.y216{bottom:149.336960pt;}
.y1c1{bottom:149.412480pt;}
.y2af{bottom:150.423040pt;}
.y199{bottom:150.621440pt;}
.y322{bottom:150.669440pt;}
.y1ca{bottom:150.680320pt;}
.y2ef{bottom:153.312000pt;}
.ydf{bottom:153.595840pt;}
.y13b{bottom:153.601440pt;}
.y160{bottom:153.602880pt;}
.y11c{bottom:154.540800pt;}
.y239{bottom:154.570240pt;}
.ybf{bottom:155.836160pt;}
.y103{bottom:157.249280pt;}
.y295{bottom:157.435840pt;}
.y9a{bottom:159.238400pt;}
.y1d3{bottom:159.331200pt;}
.y25a{bottom:160.000000pt;}
.y308{bottom:162.024960pt;}
.y1b9{bottom:163.970560pt;}
.y61{bottom:164.879360pt;}
.y17c{bottom:165.358720pt;}
.y27f{bottom:166.564480pt;}
.y10e{bottom:167.185280pt;}
.y15f{bottom:168.321440pt;}
.y185{bottom:168.436480pt;}
.y2d0{bottom:170.232320pt;}
.y215{bottom:170.622080pt;}
.y1c0{bottom:170.697600pt;}
.y2ae{bottom:171.708160pt;}
.y198{bottom:171.906560pt;}
.y321{bottom:171.954560pt;}
.y1c9{bottom:171.965440pt;}
.y13a{bottom:173.600000pt;}
.yde{bottom:174.720000pt;}
.y2ee{bottom:174.759040pt;}
.y17{bottom:175.052000pt;}
.y259{bottom:175.520000pt;}
.y11b{bottom:175.825920pt;}
.y238{bottom:175.855360pt;}
.ybe{bottom:177.283200pt;}
.y102{bottom:178.534400pt;}
.y294{bottom:178.560000pt;}
.y99{bottom:180.523520pt;}
.y1d2{bottom:180.616320pt;}
.y1b8{bottom:185.417600pt;}
.y60{bottom:186.164480pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y17b{bottom:186.805760pt;}
.y139{bottom:186.878080pt;}
.y27e{bottom:187.849600pt;}
.y15e{bottom:188.320000pt;}
.y1dd{bottom:188.470400pt;}
.y184{bottom:189.883520pt;}
.ydd{bottom:190.080000pt;}
.y2cf{bottom:191.679360pt;}
.y214{bottom:191.907200pt;}
.y1bf{bottom:191.982720pt;}
.y2ad{bottom:193.155200pt;}
.y197{bottom:193.353600pt;}
.y1c8{bottom:193.412480pt;}
.y293{bottom:193.920000pt;}
.y307{bottom:194.821120pt;}
.y2ed{bottom:196.044160pt;}
.y11a{bottom:197.272960pt;}
.y237{bottom:197.302400pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.ybd{bottom:198.568320pt;}
.y101{bottom:199.819520pt;}
.y138{bottom:201.435840pt;}
.y15d{bottom:201.600000pt;}
.y98{bottom:201.970560pt;}
.y1d1{bottom:202.063360pt;}
.y258{bottom:203.330560pt;}
.y320{bottom:204.588800pt;}
.y332{bottom:206.074880pt;}
.y1b7{bottom:206.702720pt;}
.y5f{bottom:207.611520pt;}
.ydc{bottom:207.645440pt;}
.y17a{bottom:208.090880pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y27d{bottom:209.296640pt;}
.y1d8{bottom:209.917440pt;}
.y183{bottom:211.168640pt;}
.y213{bottom:213.354240pt;}
.y1be{bottom:213.429760pt;}
.y196{bottom:214.638720pt;}
.y1c7{bottom:214.697600pt;}
.y306{bottom:216.106240pt;}
.y2ec{bottom:217.329280pt;}
.y119{bottom:218.558080pt;}
.y236{bottom:218.587520pt;}
.ybc{bottom:219.853440pt;}
.y100{bottom:221.266560pt;}
.y137{bottom:222.560000pt;}
.y1d0{bottom:223.348480pt;}
.y2ce{bottom:224.313600pt;}
.y257{bottom:224.615680pt;}
.y2ac{bottom:225.789440pt;}
.y31f{bottom:226.035840pt;}
.y331{bottom:227.287040pt;}
.y1b6{bottom:227.987840pt;}
.y5e{bottom:228.896640pt;}
.ydb{bottom:228.930560pt;}
.y179{bottom:229.376000pt;}
.y3a{bottom:230.266667pt;}
.y27c{bottom:230.581760pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1d7{bottom:231.202560pt;}
.y182{bottom:232.453760pt;}
.y97{bottom:234.604800pt;}
.y212{bottom:234.639360pt;}
.y15c{bottom:234.656640pt;}
.y1bd{bottom:234.714880pt;}
.y195{bottom:235.923840pt;}
.y1c6{bottom:235.982720pt;}
.y136{bottom:237.920000pt;}
.y2eb{bottom:238.776320pt;}
.y118{bottom:239.843200pt;}
.y235{bottom:239.872640pt;}
.y1fb{bottom:240.302720pt;}
.ybb{bottom:241.300480pt;}
.y292{bottom:241.999360pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yff{bottom:242.551680pt;}
.y1cf{bottom:244.633600pt;}
.y2cd{bottom:245.598720pt;}
.y256{bottom:246.062720pt;}
.y2ab{bottom:247.074560pt;}
.y305{bottom:248.740480pt;}
.y1b5{bottom:249.434880pt;}
.y5d{bottom:250.181760pt;}
.yda{bottom:250.215680pt;}
.y39{bottom:250.266667pt;}
.y178{bottom:250.823040pt;}
.y27b{bottom:251.866880pt;}
.y1d6{bottom:252.487680pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y181{bottom:253.900800pt;}
.y96{bottom:255.889920pt;}
.y211{bottom:255.924480pt;}
.y15b{bottom:255.941760pt;}
.y1bc{bottom:256.000000pt;}
.y194{bottom:257.370880pt;}
.y1c5{bottom:257.429760pt;}
.y31e{bottom:258.670080pt;}
.y330{bottom:259.921280pt;}
.y2ea{bottom:260.061440pt;}
.y117{bottom:261.290240pt;}
.y234{bottom:261.319680pt;}
.y1fa{bottom:261.587840pt;}
.yba{bottom:262.585600pt;}
.y291{bottom:263.284480pt;}
.yfe{bottom:263.836800pt;}
.y2cc{bottom:266.883840pt;}
.y255{bottom:267.347840pt;}
.y2aa{bottom:268.521600pt;}
.y135{bottom:268.913280pt;}
.y304{bottom:270.025600pt;}
.y1b4{bottom:270.720000pt;}
.y5c{bottom:271.628800pt;}
.yd9{bottom:271.662720pt;}
.y177{bottom:272.108160pt;}
.y1d5{bottom:273.934720pt;}
.y180{bottom:275.185920pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y95{bottom:277.175040pt;}
.y210{bottom:277.371520pt;}
.y15a{bottom:277.388800pt;}
.y1ce{bottom:277.429760pt;}
.y38{bottom:277.733333pt;}
.y193{bottom:278.656000pt;}
.y1c4{bottom:278.714880pt;}
.y32f{bottom:281.368320pt;}
.y116{bottom:282.575360pt;}
.y233{bottom:282.604800pt;}
.y1f9{bottom:282.872960pt;}
.yb9{bottom:283.870720pt;}
.y27a{bottom:284.501120pt;}
.y290{bottom:284.569600pt;}
.yfd{bottom:285.283840pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y2cb{bottom:288.330880pt;}
.y254{bottom:288.632960pt;}
.y2a9{bottom:289.806720pt;}
.y134{bottom:290.198400pt;}
.y1bb{bottom:290.400000pt;}
.y31d{bottom:291.304320pt;}
.y303{bottom:291.472640pt;}
.y2e9{bottom:292.695680pt;}
.y5b{bottom:292.913920pt;}
.yd8{bottom:292.947840pt;}
.y176{bottom:293.393280pt;}
.y1d4{bottom:295.219840pt;}
.y17f{bottom:296.471040pt;}
.y37{bottom:297.733333pt;}
.y94{bottom:298.622080pt;}
.y159{bottom:298.673920pt;}
.y1cd{bottom:298.714880pt;}
.y192{bottom:299.941120pt;}
.y1c3{bottom:300.000000pt;}
.y32e{bottom:302.653440pt;}
.y115{bottom:303.860480pt;}
.y1f8{bottom:304.192640pt;}
.y1b3{bottom:304.960000pt;}
.y165{bottom:305.317760pt;}
.y279{bottom:305.948160pt;}
.y28f{bottom:306.016640pt;}
.yfc{bottom:306.568960pt;}
.ye{bottom:309.452000pt;}
.y2ca{bottom:309.616000pt;}
.y20f{bottom:310.005760pt;}
.y253{bottom:310.080000pt;}
.y2a8{bottom:311.091840pt;}
.y133{bottom:311.645440pt;}
.y31c{bottom:312.589440pt;}
.y302{bottom:312.757760pt;}
.y2e8{bottom:313.980800pt;}
.y5a{bottom:314.199040pt;}
.yd7{bottom:314.232960pt;}
.y175{bottom:314.840320pt;}
.y232{bottom:315.239040pt;}
.yb8{bottom:316.504960pt;}
.y36{bottom:317.733333pt;}
.y17e{bottom:317.918080pt;}
.y93{bottom:319.907200pt;}
.y158{bottom:319.959040pt;}
.y1cc{bottom:320.000000pt;}
.y191{bottom:321.388160pt;}
.y114{bottom:325.307520pt;}
.y1f7{bottom:325.477760pt;}
.y164{bottom:326.602880pt;}
.y278{bottom:327.233280pt;}
.y28e{bottom:327.301760pt;}
.y10d{bottom:327.854080pt;}
.y2c9{bottom:330.901120pt;}
.y20e{bottom:331.290880pt;}
.y132{bottom:332.930560pt;}
.y31b{bottom:334.036480pt;}
.y1c2{bottom:334.400000pt;}
.y32d{bottom:335.287680pt;}
.y2e7{bottom:335.427840pt;}
.yd6{bottom:335.680000pt;}
.y174{bottom:336.125440pt;}
.yb7{bottom:337.952000pt;}
.yfb{bottom:339.203200pt;}
.y92{bottom:341.192320pt;}
.y157{bottom:341.406080pt;}
.y190{bottom:342.673280pt;}
.y2a7{bottom:343.726080pt;}
.yd{bottom:343.809333pt;}
.y252{bottom:344.320000pt;}
.y35{bottom:345.333333pt;}
.y301{bottom:345.392000pt;}
.y113{bottom:346.592640pt;}
.y1f6{bottom:346.762880pt;}
.y59{bottom:346.833280pt;}
.y163{bottom:347.888000pt;}
.y277{bottom:348.518400pt;}
.y28d{bottom:348.586880pt;}
.y1dc{bottom:349.301120pt;}
.y2c8{bottom:352.348160pt;}
.y1b2{bottom:352.528640pt;}
.y20d{bottom:352.576000pt;}
.y131{bottom:354.215680pt;}
.y1cb{bottom:354.400000pt;}
.y31a{bottom:355.321600pt;}
.y32c{bottom:356.572800pt;}
.y2e6{bottom:356.712960pt;}
.y173{bottom:357.410560pt;}
.y231{bottom:357.485440pt;}
.yb6{bottom:359.237120pt;}
.yfa{bottom:360.488320pt;}
.y91{bottom:362.639360pt;}
.yc{bottom:362.706666pt;}
.y18f{bottom:363.958400pt;}
.y2a6{bottom:365.173120pt;}
.y300{bottom:366.839040pt;}
.y112{bottom:367.877760pt;}
.y1f5{bottom:368.209920pt;}
.y58{bottom:368.280320pt;}
.y162{bottom:369.335040pt;}
.y276{bottom:369.965440pt;}
.y1db{bottom:370.586240pt;}
.yd5{bottom:371.348160pt;}
.y2c7{bottom:373.633280pt;}
.y1b1{bottom:373.975680pt;}
.y20c{bottom:374.023040pt;}
.y156{bottom:374.040320pt;}
.y130{bottom:375.662720pt;}
.y32b{bottom:378.019840pt;}
.y230{bottom:378.284800pt;}
.y172{bottom:378.857600pt;}
.yb5{bottom:380.522240pt;}
.y28c{bottom:381.383040pt;}
.yf9{bottom:381.935360pt;}
.y90{bottom:383.924480pt;}
.y18e{bottom:385.405440pt;}
.y2a5{bottom:386.458240pt;}
.y319{bottom:387.955840pt;}
.y2ff{bottom:388.124160pt;}
.y111{bottom:389.324800pt;}
.y2e5{bottom:389.347200pt;}
.y1f4{bottom:389.495040pt;}
.y57{bottom:389.565440pt;}
.y275{bottom:391.250560pt;}
.y1da{bottom:391.871360pt;}
.y251{bottom:391.883520pt;}
.y2c6{bottom:394.918400pt;}
.y1b0{bottom:395.260800pt;}
.y20b{bottom:395.308160pt;}
.y155{bottom:395.325440pt;}
.y12f{bottom:396.947840pt;}
.y22f{bottom:398.922240pt;}
.y32a{bottom:399.304960pt;}
.y171{bottom:400.142720pt;}
.yb4{bottom:401.969280pt;}
.y28b{bottom:402.668160pt;}
.yf8{bottom:403.220480pt;}
.yd4{bottom:404.000000pt;}
.y18d{bottom:406.690560pt;}
.y2a4{bottom:407.743360pt;}
.y318{bottom:409.402880pt;}
.y2fe{bottom:409.409280pt;}
.y1f3{bottom:410.780160pt;}
.y2e4{bottom:410.794240pt;}
.y56{bottom:410.850560pt;}
.y274{bottom:412.535680pt;}
.y1d9{bottom:413.318400pt;}
.y250{bottom:413.330560pt;}
.y2c5{bottom:416.365440pt;}
.y1af{bottom:416.545920pt;}
.y8f{bottom:416.558720pt;}
.y20a{bottom:416.593280pt;}
.y154{bottom:416.610560pt;}
.y12e{bottom:418.232960pt;}
.y22e{bottom:419.559680pt;}
.y170{bottom:421.427840pt;}
.yb3{bottom:423.254400pt;}
.y28a{bottom:423.953280pt;}
.yf7{bottom:424.505600pt;}
.y34{bottom:426.133333pt;}
.y18c{bottom:427.975680pt;}
.y2a3{bottom:429.190400pt;}
.y329{bottom:431.939200pt;}
.y2e3{bottom:432.079360pt;}
.y1f2{bottom:432.227200pt;}
.y55{bottom:432.297600pt;}
.y273{bottom:433.982720pt;}
.y110{bottom:434.603520pt;}
.y24f{bottom:434.615680pt;}
.y2c4{bottom:437.650560pt;}
.y1ae{bottom:437.992960pt;}
.y8e{bottom:438.005760pt;}
.y209{bottom:438.040320pt;}
.y153{bottom:438.057600pt;}
.y12d{bottom:439.652480pt;}
.y22d{bottom:440.197120pt;}
.y317{bottom:442.037120pt;}
.y2fd{bottom:442.043520pt;}
.y16f{bottom:442.874880pt;}
.y75{bottom:443.842560pt;}
.yb2{bottom:444.539520pt;}
.y33{bottom:445.066667pt;}
.y289{bottom:445.400320pt;}
.yf6{bottom:445.952640pt;}
.y18b{bottom:449.422720pt;}
.y2a2{bottom:450.475520pt;}
.y2e2{bottom:453.364480pt;}
.y328{bottom:453.386240pt;}
.y54{bottom:453.582720pt;}
.y272{bottom:455.267840pt;}
.yd3{bottom:455.888640pt;}
.y24e{bottom:455.900800pt;}
.y2c3{bottom:458.935680pt;}
.y8d{bottom:459.290880pt;}
.y208{bottom:459.325440pt;}
.y152{bottom:459.342720pt;}
.y22c{bottom:460.834560pt;}
.y12c{bottom:460.937600pt;}
.yb{bottom:462.990669pt;}
.y316{bottom:463.322240pt;}
.y2fc{bottom:463.490560pt;}
.y32{bottom:463.866667pt;}
.y16e{bottom:464.160000pt;}
.y1f1{bottom:464.861440pt;}
.yb1{bottom:465.986560pt;}
.y288{bottom:466.685440pt;}
.yf5{bottom:467.237760pt;}
.y1ad{bottom:470.627200pt;}
.y18a{bottom:470.707840pt;}
.y2a1{bottom:471.760640pt;}
.y327{bottom:474.671360pt;}
.y2e1{bottom:474.811520pt;}
.y53{bottom:474.867840pt;}
.y74{bottom:476.476800pt;}
.yd2{bottom:477.335680pt;}
.y24d{bottom:477.347840pt;}
.ya{bottom:478.990666pt;}
.y2c2{bottom:480.382720pt;}
.y8c{bottom:480.576000pt;}
.y207{bottom:480.610560pt;}
.y151{bottom:480.627840pt;}
.y22b{bottom:481.472000pt;}
.y12b{bottom:482.222720pt;}
.y31{bottom:484.533333pt;}
.y2fb{bottom:484.775680pt;}
.y1f0{bottom:486.146560pt;}
.yb0{bottom:487.271680pt;}
.y271{bottom:487.902080pt;}
.y287{bottom:487.970560pt;}
.yf4{bottom:488.522880pt;}
.y1ac{bottom:491.912320pt;}
.y189{bottom:491.992960pt;}
.y2a0{bottom:493.207680pt;}
.y9{bottom:494.990666pt;}
.y315{bottom:495.956480pt;}
.y2e0{bottom:496.096640pt;}
.y52{bottom:496.314880pt;}
.y16d{bottom:498.392320pt;}
.yd1{bottom:498.620800pt;}
.y24c{bottom:498.632960pt;}
.y2c1{bottom:501.667840pt;}
.y8b{bottom:502.023040pt;}
.y206{bottom:502.057600pt;}
.y150{bottom:502.074880pt;}
.y22a{bottom:502.271360pt;}
.y12a{bottom:503.669760pt;}
.y30{bottom:504.533333pt;}
.y2fa{bottom:506.060800pt;}
.y326{bottom:507.305600pt;}
.y1ef{bottom:507.593600pt;}
.yaf{bottom:508.556800pt;}
.y73{bottom:508.640000pt;}
.y270{bottom:509.349120pt;}
.y286{bottom:509.417600pt;}
.yf3{bottom:509.969920pt;}
.y1ab{bottom:513.359360pt;}
.y188{bottom:513.440000pt;}
.y29f{bottom:514.492800pt;}
.y2df{bottom:517.381760pt;}
.y314{bottom:517.403520pt;}
.y51{bottom:517.600000pt;}
.yd0{bottom:519.905920pt;}
.y24b{bottom:519.918080pt;}
.y229{bottom:522.908800pt;}
.y2c0{bottom:522.952960pt;}
.y14f{bottom:523.276800pt;}
.y8a{bottom:523.308160pt;}
.y205{bottom:523.342720pt;}
.y2f{bottom:524.533333pt;}
.y129{bottom:524.954880pt;}
.y16c{bottom:525.120000pt;}
.y325{bottom:528.590720pt;}
.y1ee{bottom:528.878720pt;}
.yae{bottom:530.003840pt;}
.y26f{bottom:530.634240pt;}
.y285{bottom:530.702720pt;}
.yf2{bottom:531.255040pt;}
.y72{bottom:532.480000pt;}
.y1aa{bottom:534.644480pt;}
.y29e{bottom:535.777920pt;}
.y2f9{bottom:538.856960pt;}
.ycf{bottom:541.352960pt;}
.y24a{bottom:541.365120pt;}
.y281{bottom:542.604160pt;}
.y228{bottom:543.546240pt;}
.y2bf{bottom:544.400000pt;}
.y14e{bottom:544.561920pt;}
.y89{bottom:544.593280pt;}
.y204{bottom:544.627840pt;}
.y128{bottom:546.240000pt;}
.y187{bottom:547.680000pt;}
.y2de{bottom:550.016000pt;}
.y313{bottom:550.037760pt;}
.y1ed{bottom:550.163840pt;}
.yad{bottom:551.288960pt;}
.y26e{bottom:551.919360pt;}
.y284{bottom:551.987840pt;}
.y10c{bottom:552.540160pt;}
.y50{bottom:553.280000pt;}
.y1a9{bottom:555.929600pt;}
.y71{bottom:556.320000pt;}
.y29d{bottom:557.224960pt;}
.y2f8{bottom:560.142080pt;}
.yce{bottom:562.638080pt;}
.y249{bottom:562.650240pt;}
.yf1{bottom:563.889280pt;}
.y28{bottom:564.133333pt;}
.y227{bottom:564.183680pt;}
.y2be{bottom:565.685120pt;}
.y14d{bottom:566.008960pt;}
.y88{bottom:566.040320pt;}
.y203{bottom:566.074880pt;}
.y312{bottom:571.322880pt;}
.y2dd{bottom:571.463040pt;}
.y1ec{bottom:571.610880pt;}
.yac{bottom:572.574080pt;}
.y16b{bottom:572.719360pt;}
.y26d{bottom:573.366400pt;}
.y283{bottom:573.434880pt;}
.y8{bottom:573.786667pt;}
.y10b{bottom:573.987200pt;}
.y1a8{bottom:577.376640pt;}
.y29c{bottom:578.510080pt;}
.y2e{bottom:579.600000pt;}
.y70{bottom:580.160000pt;}
.y127{bottom:581.907840pt;}
.ycd{bottom:583.923200pt;}
.y248{bottom:583.935360pt;}
.y226{bottom:584.821120pt;}
.yf0{bottom:585.336320pt;}
.y14c{bottom:587.294080pt;}
.y202{bottom:587.360000pt;}
.y27{bottom:588.133333pt;}
.y311{bottom:592.608000pt;}
.y7{bottom:592.685334pt;}
.y2dc{bottom:592.748160pt;}
.y2f7{bottom:592.776320pt;}
.y1eb{bottom:592.896000pt;}
.y4f{bottom:594.004480pt;}
.yab{bottom:594.021120pt;}
.y26c{bottom:594.651520pt;}
.y10a{bottom:595.272320pt;}
.y1a7{bottom:598.661760pt;}
.y2d{bottom:599.600000pt;}
.y29b{bottom:599.795200pt;}
.y6f{bottom:603.840000pt;}
.y324{bottom:603.957120pt;}
.ycc{bottom:605.370240pt;}
.y247{bottom:605.382400pt;}
.y225{bottom:605.458560pt;}
.yef{bottom:606.621440pt;}
.y2bd{bottom:607.931520pt;}
.y87{bottom:608.286720pt;}
.y14b{bottom:608.579200pt;}
.y2db{bottom:614.033280pt;}
.y2f6{bottom:614.061440pt;}
.y1ea{bottom:614.181120pt;}
.y126{bottom:614.720000pt;}
.yaa{bottom:615.306240pt;}
.y4e{bottom:615.451520pt;}
.y26b{bottom:615.936640pt;}
.y109{bottom:616.557440pt;}
.y29a{bottom:621.242240pt;}
.y201{bottom:621.600000pt;}
.y310{bottom:625.404160pt;}
.y224{bottom:626.257920pt;}
.ycb{bottom:626.655360pt;}
.y246{bottom:626.667520pt;}
.y2c{bottom:627.066667pt;}
.yee{bottom:627.906560pt;}
.y6e{bottom:628.156800pt;}
.y86{bottom:628.924160pt;}
.y14a{bottom:630.026240pt;}
.y1a6{bottom:631.296000pt;}
.y2da{bottom:635.480320pt;}
.y2f5{bottom:635.508480pt;}
.y1e9{bottom:635.628160pt;}
.ya9{bottom:636.591360pt;}
.y4d{bottom:636.736640pt;}
.y26a{bottom:637.383680pt;}
.y108{bottom:638.004480pt;}
.y2bc{bottom:639.770880pt;}
.y299{bottom:642.527360pt;}
.y6{bottom:645.598667pt;}
.y30f{bottom:646.689280pt;}
.y223{bottom:646.895360pt;}
.yca{bottom:647.940480pt;}
.yed{bottom:649.353600pt;}
.y85{bottom:649.561600pt;}
.y149{bottom:651.311360pt;}
.y1a5{bottom:652.581120pt;}
.y2b{bottom:654.666667pt;}
.y2d9{bottom:656.765440pt;}
.y2f4{bottom:656.793600pt;}
.y1e8{bottom:656.913280pt;}
.y4c{bottom:658.021760pt;}
.ya8{bottom:658.038400pt;}
.y269{bottom:658.668800pt;}
.y107{bottom:659.289600pt;}
.y245{bottom:659.301760pt;}
.y6d{bottom:660.320000pt;}
.y2bb{bottom:661.217920pt;}
.y298{bottom:663.812480pt;}
.y222{bottom:667.532800pt;}
.y30e{bottom:667.974400pt;}
.y125{bottom:667.975680pt;}
.y3{bottom:668.977329pt;}
.y200{bottom:669.372800pt;}
.yc9{bottom:669.387520pt;}
.y84{bottom:670.199040pt;}
.yec{bottom:670.638720pt;}
.y148{bottom:672.596480pt;}
.y1a4{bottom:674.028160pt;}
.y2d8{bottom:678.050560pt;}
.y1e7{bottom:678.198400pt;}
.ya7{bottom:679.323520pt;}
.y26{bottom:679.333333pt;}
.y4b{bottom:679.468800pt;}
.y268{bottom:679.953920pt;}
.y106{bottom:680.574720pt;}
.y244{bottom:680.586880pt;}
.y2a{bottom:682.133333pt;}
.y2ba{bottom:682.503040pt;}
.y6c{bottom:684.160000pt;}
.y221{bottom:688.170240pt;}
.y30d{bottom:689.421440pt;}
.y124{bottom:689.422720pt;}
.y2f3{bottom:689.427840pt;}
.y1ff{bottom:690.657920pt;}
.yc8{bottom:690.672640pt;}
.y83{bottom:690.836480pt;}
.yeb{bottom:691.923840pt;}
.y147{bottom:694.043520pt;}
.y1a3{bottom:695.313280pt;}
.y2d7{bottom:699.497600pt;}
.y1e6{bottom:699.645440pt;}
.y323{bottom:700.608640pt;}
.y4a{bottom:700.753920pt;}
.y282{bottom:701.400960pt;}
.y105{bottom:702.021760pt;}
.y243{bottom:702.033920pt;}
.y2b9{bottom:703.788160pt;}
.y297{bottom:706.206080pt;}
.y6b{bottom:708.000000pt;}
.y220{bottom:708.807680pt;}
.y29{bottom:709.733333pt;}
.y123{bottom:710.707840pt;}
.y2f2{bottom:710.874880pt;}
.y82{bottom:711.635840pt;}
.y1fe{bottom:711.943040pt;}
.ya6{bottom:711.957760pt;}
.y267{bottom:712.588160pt;}
.yea{bottom:713.370880pt;}
.y146{bottom:715.328640pt;}
.y1a2{bottom:716.598400pt;}
.y25{bottom:719.333333pt;}
.y2d6{bottom:720.782720pt;}
.y1e5{bottom:720.930560pt;}
.y49{bottom:722.039040pt;}
.y30c{bottom:722.055680pt;}
.y104{bottom:723.306880pt;}
.y242{bottom:723.319040pt;}
.y2b8{bottom:725.235200pt;}
.y21f{bottom:729.445120pt;}
.y6a{bottom:731.680000pt;}
.y122{bottom:731.992960pt;}
.y2f1{bottom:732.160000pt;}
.y1fd{bottom:733.390080pt;}
.yc7{bottom:733.404800pt;}
.y266{bottom:734.035200pt;}
.ye9{bottom:734.656000pt;}
.y1a1{bottom:738.045440pt;}
.y2d5{bottom:742.067840pt;}
.y1e4{bottom:742.215680pt;}
.y30b{bottom:743.340800pt;}
.y81{bottom:743.475200pt;}
.y16a{bottom:743.486080pt;}
.ya5{bottom:744.592000pt;}
.y241{bottom:744.604160pt;}
.y2b7{bottom:746.520320pt;}
.y21e{bottom:750.244480pt;}
.y121{bottom:753.394560pt;}
.yc6{bottom:754.689920pt;}
.y48{bottom:754.835200pt;}
.y265{bottom:755.320320pt;}
.y69{bottom:755.520000pt;}
.ye8{bottom:755.941120pt;}
.y145{bottom:756.603520pt;}
.y1a0{bottom:759.330560pt;}
.y24{bottom:759.333333pt;}
.y2d4{bottom:763.514880pt;}
.y1e3{bottom:763.662720pt;}
.y30a{bottom:764.625920pt;}
.y80{bottom:764.760320pt;}
.y169{bottom:764.771200pt;}
.y1fc{bottom:765.877120pt;}
.ya4{bottom:766.039040pt;}
.y240{bottom:766.051200pt;}
.y2b6{bottom:767.805440pt;}
.y2f0{bottom:767.840000pt;}
.y21d{bottom:770.881920pt;}
.y120{bottom:774.679680pt;}
.yc5{bottom:775.975040pt;}
.y47{bottom:776.120320pt;}
.y264{bottom:776.605440pt;}
.y144{bottom:776.608000pt;}
.ye7{bottom:777.388160pt;}
.y68{bottom:779.360000pt;}
.y19f{bottom:780.615680pt;}
.y2{bottom:781.661334pt;}
.y2d3{bottom:784.800000pt;}
.y1e2{bottom:784.947840pt;}
.y7f{bottom:786.045440pt;}
.y168{bottom:786.056320pt;}
.ya3{bottom:787.324160pt;}
.y23f{bottom:787.336320pt;}
.y2b5{bottom:789.252480pt;}
.y21c{bottom:791.519360pt;}
.y11f{bottom:795.964800pt;}
.y143{bottom:796.612480pt;}
.y46{bottom:797.405440pt;}
.yc4{bottom:797.422080pt;}
.y263{bottom:798.052480pt;}
.ye6{bottom:798.673280pt;}
.y19e{bottom:802.062720pt;}
.y67{bottom:803.200000pt;}
.y1e1{bottom:806.232960pt;}
.y7e{bottom:807.492480pt;}
.y167{bottom:807.503360pt;}
.ya2{bottom:808.609280pt;}
.y23e{bottom:808.621440pt;}
.y2b4{bottom:810.537600pt;}
.y21b{bottom:812.156800pt;}
.y142{bottom:816.616960pt;}
.y11e{bottom:817.411840pt;}
.yc3{bottom:818.707200pt;}
.y45{bottom:818.852480pt;}
.y262{bottom:819.337600pt;}
.ye5{bottom:819.958400pt;}
.y2d2{bottom:820.480000pt;}
.y19d{bottom:823.347840pt;}
.y66{bottom:827.537280pt;}
.y1e0{bottom:827.680000pt;}
.y7d{bottom:828.777600pt;}
.ya1{bottom:830.056320pt;}
.y23d{bottom:830.068480pt;}
.y2b3{bottom:831.822720pt;}
.y21a{bottom:832.794240pt;}
.y141{bottom:836.621440pt;}
.y11d{bottom:838.696960pt;}
.yc2{bottom:839.992320pt;}
.y44{bottom:840.137600pt;}
.y261{bottom:840.622720pt;}
.ye4{bottom:841.405440pt;}
.y19c{bottom:844.632960pt;}
.y7c{bottom:850.062720pt;}
.ya0{bottom:851.341440pt;}
.y23c{bottom:851.353600pt;}
.y2b2{bottom:853.269760pt;}
.y219{bottom:853.431680pt;}
.y140{bottom:856.625920pt;}
.y1{bottom:859.312000pt;}
.y65{bottom:860.171520pt;}
.y43{bottom:861.422720pt;}
.y260{bottom:862.069760pt;}
.ye3{bottom:862.690560pt;}
.y1df{bottom:863.348160pt;}
.y19b{bottom:866.080000pt;}
.y7b{bottom:871.509760pt;}
.y9f{bottom:872.626560pt;}
.y218{bottom:874.231040pt;}
.y13f{bottom:876.630400pt;}
.y42{bottom:882.869760pt;}
.y25f{bottom:883.354880pt;}
.ye2{bottom:883.975680pt;}
.y23b{bottom:883.987840pt;}
.y7a{bottom:892.794880pt;}
.y64{bottom:892.805760pt;}
.y9e{bottom:894.073600pt;}
.y217{bottom:894.868480pt;}
.y2b1{bottom:895.516160pt;}
.y1de{bottom:896.000000pt;}
.y13e{bottom:896.634880pt;}
.y19a{bottom:900.320000pt;}
.y41{bottom:904.154880pt;}
.y25e{bottom:904.640000pt;}
.ye1{bottom:905.422720pt;}
.y23a{bottom:905.434880pt;}
.y79{bottom:914.080000pt;}
.yc1{bottom:915.358720pt;}
.y2b0{bottom:916.153600pt;}
.y13d{bottom:916.639360pt;}
.y23{bottom:924.266667pt;}
.y40{bottom:925.440000pt;}
.y9d{bottom:926.707840pt;}
.yc0{bottom:936.643840pt;}
.y25d{bottom:939.032320pt;}
.y9c{bottom:947.992960pt;}
.y22{bottom:948.266667pt;}
.y78{bottom:949.920000pt;}
.y166{bottom:961.120000pt;}
.y3f{bottom:961.280000pt;}
.y25c{bottom:965.760000pt;}
.y9b{bottom:969.440000pt;}
.y3e{bottom:1054.400000pt;}
.y76{bottom:1058.880000pt;}
.h8{height:28.560000pt;}
.h17{height:29.435000pt;}
.h9{height:33.749333pt;}
.h16{height:34.002500pt;}
.h13{height:38.062500pt;}
.he{height:38.645833pt;}
.h14{height:40.940000pt;}
.h3{height:42.840000pt;}
.hc{height:44.635417pt;}
.h10{height:46.690000pt;}
.h7{height:48.213333pt;}
.h1d{height:50.603640pt;}
.h6{height:50.624000pt;}
.h19{height:50.665080pt;}
.h15{height:50.693240pt;}
.h18{height:50.736760pt;}
.h1e{height:50.828920pt;}
.h1a{height:50.887800pt;}
.h1f{height:51.041840pt;}
.h1c{height:51.064440pt;}
.h2{height:57.856000pt;}
.hb{height:62.489583pt;}
.h1b{height:67.497500pt;}
.h5{height:81.962667pt;}
.h11{height:84.752500pt;}
.h12{height:85.095540pt;}
.h4{height:105.826671pt;}
.hd{height:107.125000pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.hf{height:1122.720000pt;}
.w2{width:566.928019pt;}
.w5{width:793.280000pt;}
.w3{width:793.333333pt;}
.w6{width:793.440000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:136.400000pt;}
.xf{left:159.964160pt;}
.x4{left:180.874667pt;}
.x10{left:183.972480pt;}
.x11{left:196.467360pt;}
.x7{left:209.333333pt;}
.x9{left:282.133333pt;}
.x8{left:296.400000pt;}
.x12{left:390.568000pt;}
.xe{left:393.620000pt;}
.x3{left:404.408000pt;}
.xd{left:426.080000pt;}
.x5{left:455.733333pt;}
.xb{left:521.200000pt;}
.xa{left:532.533333pt;}
.x6{left:554.666667pt;}
}




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