
    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_b3ebb42c569b31d1283df824.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009000;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_a9aa6df3ddae62030f16da6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_03a775e03ea283bdc03c5ed9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011000;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_f13ca5c294ad51c55e76d3c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925000;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_59bdb852ded13d154ed82c6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989000;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_7a8ce59a18823a3605a1f50d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719000;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_a2624db99d4858196b3ef51c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_c6992ed24d4a7eabe3125836.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_e2a684f9fb6832f4972ed20e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919922;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_0dec474aa30ea22da074d2cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914551;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_e4ce5412cfd4a70adfe7fd58.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919922;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_333516a92258e4f7e78f5fe4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914551;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_5a27c8177d46a7066da0c135.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3d8c6d61e597b6596b0e9feb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2786431b4048c157d64ab073.woff2')format("woff");}.fff{font-family:fff;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_261cd08b8a2324b29c3134f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1c240f4a697fc970b3196b26.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.980000;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);}
.v3{vertical-align:-17.364000px;}
.v5{vertical-align:-10.164000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.994000px;}
.v2{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.lsb{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000017px;}
.ls1c{letter-spacing:0.000500px;}
.lsd{letter-spacing:0.002100px;}
.lse{letter-spacing:0.002700px;}
.ls18{letter-spacing:0.002725px;}
.ls7{letter-spacing:0.002850px;}
.ls8{letter-spacing:0.004200px;}
.ls13{letter-spacing:0.004350px;}
.ls19{letter-spacing:0.005108px;}
.ls2b{letter-spacing:0.101620px;}
.ls30{letter-spacing:0.152429px;}
.ls28{letter-spacing:0.203239px;}
.ls2c{letter-spacing:0.228500px;}
.ls25{letter-spacing:0.254049px;}
.ls2e{letter-spacing:0.276500px;}
.ls2d{letter-spacing:0.282500px;}
.ls2a{letter-spacing:0.288500px;}
.ls22{letter-spacing:0.304859px;}
.ls26{letter-spacing:0.355669px;}
.ls23{letter-spacing:0.457288px;}
.ls29{letter-spacing:0.508098px;}
.ls27{letter-spacing:0.558908px;}
.ls2f{letter-spacing:0.711337px;}
.ls24{letter-spacing:0.863767px;}
.ls1{letter-spacing:2.689920px;}
.lsc{letter-spacing:2.984725px;}
.ls1d{letter-spacing:2.985623px;}
.ls1b{letter-spacing:2.987108px;}
.ls1f{letter-spacing:2.987686px;}
.ls4{letter-spacing:2.987700px;}
.ls1e{letter-spacing:2.988476px;}
.ls5{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.988780px;}
.ls1a{letter-spacing:2.990725px;}
.ls20{letter-spacing:2.994583px;}
.ls6{letter-spacing:10.958100px;}
.ls31{letter-spacing:13.913700px;}
.ls12{letter-spacing:17.390100px;}
.lsa{letter-spacing:17.392200px;}
.ls11{letter-spacing:17.396100px;}
.ls9{letter-spacing:17.398200px;}
.ls21{letter-spacing:18.890100px;}
.ls0{letter-spacing:19.939200px;}
.ls16{letter-spacing:35.864100px;}
.ls10{letter-spacing:35.865986px;}
.ls15{letter-spacing:35.870100px;}
.lsf{letter-spacing:65.450700px;}
.ls2{letter-spacing:71.732400px;}
.ls17{letter-spacing:1547.660100px;}
.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;}
}
.ws6{word-spacing:-17.932800px;}
.ws17{word-spacing:-16.363650px;}
.ws9{word-spacing:-14.943900px;}
.wsd{word-spacing:-11.955150px;}
.ws2c{word-spacing:-11.597772px;}
.ws30{word-spacing:-10.865757px;}
.ws31{word-spacing:-10.765418px;}
.ws2b{word-spacing:-10.631291px;}
.ws2f{word-spacing:-9.960278px;}
.ws4f{word-spacing:-3.048556px;}
.ws5{word-spacing:-2.743718px;}
.ws5b{word-spacing:-0.914576px;}
.ws62{word-spacing:-0.762147px;}
.ws5e{word-spacing:-0.609718px;}
.ws60{word-spacing:-0.558908px;}
.ws5a{word-spacing:-0.508098px;}
.ws5d{word-spacing:-0.406478px;}
.ws58{word-spacing:-0.355669px;}
.ws5c{word-spacing:-0.304859px;}
.ws5f{word-spacing:-0.254049px;}
.ws63{word-spacing:-0.203239px;}
.ws61{word-spacing:-0.152429px;}
.ws3{word-spacing:-0.071731px;}
.ws26{word-spacing:-0.065455px;}
.wsf{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.ws2e{word-spacing:-0.050810px;}
.wsb{word-spacing:-0.047821px;}
.ws13{word-spacing:0.000000px;}
.wsa{word-spacing:1.673717px;}
.ws18{word-spacing:1.832729px;}
.wse{word-spacing:1.956574px;}
.ws2d{word-spacing:1.958625px;}
.ws20{word-spacing:1.959364px;}
.wsc{word-spacing:1.960645px;}
.ws2{word-spacing:2.008166px;}
.ws1{word-spacing:2.008474px;}
.ws4{word-spacing:2.205734px;}
.ws0{word-spacing:2.410162px;}
.ws4d{word-spacing:2.446009px;}
.ws33{word-spacing:2.447746px;}
.ws47{word-spacing:2.448220px;}
.ws11{word-spacing:2.448974px;}
.ws10{word-spacing:2.449421px;}
.ws23{word-spacing:2.450182px;}
.ws4a{word-spacing:2.450221px;}
.ws54{word-spacing:2.450425px;}
.ws52{word-spacing:2.450536px;}
.ws56{word-spacing:2.450786px;}
.ws7{word-spacing:2.450800px;}
.ws1c{word-spacing:2.452009px;}
.ws29{word-spacing:2.452145px;}
.ws21{word-spacing:2.452955px;}
.ws4e{word-spacing:2.453070px;}
.ws27{word-spacing:2.453250px;}
.ws44{word-spacing:2.453746px;}
.ws1e{word-spacing:2.454094px;}
.ws3d{word-spacing:2.455343px;}
.ws3f{word-spacing:2.455837px;}
.ws1d{word-spacing:6.635092px;}
.ws59{word-spacing:6.638425px;}
.ws53{word-spacing:8.129568px;}
.ws12{word-spacing:12.850955px;}
.ws8{word-spacing:12.851545px;}
.ws1b{word-spacing:14.901991px;}
.ws14{word-spacing:15.242778px;}
.ws57{word-spacing:16.559024px;}
.ws35{word-spacing:16.565697px;}
.ws32{word-spacing:16.566193px;}
.ws19{word-spacing:17.334924px;}
.ws55{word-spacing:17.336624px;}
.ws24{word-spacing:17.337852px;}
.ws22{word-spacing:17.338230px;}
.ws48{word-spacing:17.339692px;}
.ws2a{word-spacing:17.339697px;}
.ws28{word-spacing:17.340193px;}
.ws45{word-spacing:17.342194px;}
.ws41{word-spacing:17.342695px;}
.ws3c{word-spacing:17.343195px;}
.ws3b{word-spacing:17.343695px;}
.ws3e{word-spacing:17.344196px;}
.ws46{word-spacing:17.344696px;}
.ws42{word-spacing:17.345197px;}
.ws3a{word-spacing:17.345692px;}
.ws36{word-spacing:17.345697px;}
.ws34{word-spacing:17.346193px;}
.ws4b{word-spacing:17.346197px;}
.ws38{word-spacing:17.346693px;}
.ws40{word-spacing:17.346698px;}
.ws39{word-spacing:17.347193px;}
.ws43{word-spacing:17.348194px;}
.ws15{word-spacing:20.802048px;}
.ws49{word-spacing:20.922097px;}
.ws25{word-spacing:30.536690px;}
.ws4c{word-spacing:35.814693px;}
.ws16{word-spacing:35.952750px;}
.ws6d{word-spacing:56.798407px;}
.ws51{word-spacing:61.124189px;}
.ws6e{word-spacing:64.927889px;}
.ws6a{word-spacing:81.492824px;}
.ws64{word-spacing:84.343522px;}
.ws66{word-spacing:84.354959px;}
.ws68{word-spacing:101.510796px;}
.ws65{word-spacing:111.378824px;}
.ws6f{word-spacing:129.653426px;}
.ws37{word-spacing:133.068925px;}
.ws70{word-spacing:141.270824px;}
.ws6b{word-spacing:149.976980px;}
.ws6c{word-spacing:155.954690px;}
.ws69{word-spacing:181.968514px;}
.ws50{word-spacing:211.844726px;}
.ws67{word-spacing:356.681005px;}
.ws1f{word-spacing:1238.251554px;}
._8{margin-left:-26.540366px;}
._b{margin-left:-6.635092px;}
._1{margin-left:-5.308109px;}
._f{margin-left:-4.184292px;}
._2{margin-left:-2.980440px;}
._0{margin-left:-1.549390px;}
._a{width:1.481274px;}
._e{width:2.603475px;}
._6{width:4.423394px;}
._1b{width:5.482288px;}
._7{width:6.635092px;}
._1c{width:11.178156px;}
._4{width:17.717390px;}
._3{width:19.152230px;}
._5{width:21.270562px;}
._c{width:22.285576px;}
._15{width:30.228214px;}
._14{width:35.865360px;}
._d{width:58.719746px;}
._1d{width:59.775670px;}
._10{width:71.853835px;}
._18{width:76.457784px;}
._17{width:77.647888px;}
._2c{width:79.484368px;}
._1e{width:80.939447px;}
._20{width:93.980359px;}
._22{width:99.298859px;}
._2a{width:102.196016px;}
._1f{width:105.857812px;}
._28{width:107.404834px;}
._2e{width:112.378128px;}
._24{width:128.400389px;}
._23{width:137.359553px;}
._21{width:141.967050px;}
._25{width:145.493810px;}
._30{width:154.818804px;}
._31{width:159.421525px;}
._9{width:172.853248px;}
._2b{width:198.813646px;}
._26{width:207.779986px;}
._29{width:210.589439px;}
._27{width:211.964278px;}
._12{width:219.663410px;}
._2f{width:232.299569px;}
._2d{width:237.368908px;}
._32{width:255.959119px;}
._19{width:336.177974px;}
._1a{width:871.780466px;}
._11{width:943.489730px;}
._13{width:994.606208px;}
._16{width:1569.393861px;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:28.975353px;}
.fs6{font-size:29.887800px;}
.fsb{font-size:30.927391px;}
.fs17{font-size:31.317580px;}
.fsf{font-size:31.601530px;}
.fs14{font-size:32.597272px;}
.fsc{font-size:34.793315px;}
.fs18{font-size:35.232278px;}
.fs10{font-size:35.551722px;}
.fs15{font-size:39.841111px;}
.fsd{font-size:42.525163px;}
.fs19{font-size:43.061673px;}
.fs11{font-size:43.452104px;}
.fs16{font-size:43.463030px;}
.fs5{font-size:45.429600px;}
.fse{font-size:46.391087px;}
.fs1a{font-size:46.976370px;}
.fs12{font-size:47.402295px;}
.fs4{font-size:47.820600px;}
.fsa{font-size:50.809800px;}
.fs9{font-size:53.797800px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs8{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs7{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:7.427227px;}
.yaa{bottom:7.489493px;}
.y11b{bottom:17.966410px;}
.yae{bottom:20.053746px;}
.yd5{bottom:20.265349px;}
.yc4{bottom:23.919670px;}
.yea{bottom:31.128375px;}
.y10c{bottom:36.620926px;}
.yc3{bottom:38.416884px;}
.yad{bottom:42.282808px;}
.yd4{bottom:42.978949px;}
.yc1{bottom:44.215770px;}
.ye8{bottom:44.954044px;}
.ye9{bottom:45.941592px;}
.y10b{bottom:49.297643px;}
.y10a{bottom:50.203123px;}
.yc2{bottom:51.947618px;}
.y120{bottom:53.198688px;}
.y10d{bottom:57.446961px;}
.yac{bottom:60.645947px;}
.yd3{bottom:61.742357px;}
.y109{bottom:63.785319px;}
.y11d{bottom:63.964106px;}
.y11f{bottom:67.878803px;}
.y101{bottom:73.745597px;}
.yab{bottom:75.143161px;}
.yd2{bottom:76.555575px;}
.y11c{bottom:78.644222px;}
.y119{bottom:79.622896px;}
.y104{bottom:84.611355px;}
.y100{bottom:86.422314px;}
.yc0{bottom:87.707414px;}
.ye7{bottom:89.393696px;}
.yaf{bottom:90.606857px;}
.yd6{bottom:92.356340px;}
.y118{bottom:93.324337px;}
.y103{bottom:98.193551px;}
.y11e{bottom:100.175058px;}
.ybf{bottom:102.204629px;}
.ye6{bottom:104.206913px;}
.y102{bottom:110.870268px;}
.ybd{bottom:115.735362px;}
.ye4{bottom:118.032583px;}
.yba{bottom:125.400172px;}
.ye1{bottom:127.908061px;}
.yff{bottom:128.074384px;}
.ybc{bottom:130.232577px;}
.ye3{bottom:132.845800px;}
.yfb{bottom:140.751101px;}
.yf6{bottom:143.467541px;}
.ybb{bottom:143.763311px;}
.yb5{bottom:144.729792px;}
.ye2{bottom:146.671470px;}
.y110{bottom:148.851000px;}
.y11a{bottom:157.916847px;}
.ybe{bottom:159.227006px;}
.y54{bottom:159.451500px;}
.ye5{bottom:162.472235px;}
.y122{bottom:162.810219px;}
.y10f{bottom:163.794000px;}
.yfe{bottom:167.010015px;}
.y270{bottom:168.418500px;}
.ydb{bottom:169.385070px;}
.y187{bottom:171.427500px;}
.y112{bottom:171.618288px;}
.y142{bottom:172.926000px;}
.y262{bottom:174.396000px;}
.y9c{bottom:175.588500px;}
.yf8{bottom:176.970293px;}
.y298{bottom:178.080000px;}
.y23e{bottom:178.398000px;}
.y10e{bottom:178.738500px;}
.y53{bottom:180.373500px;}
.yfd{bottom:180.592212px;}
.y79{bottom:181.530000px;}
.y1e5{bottom:182.953500px;}
.y165{bottom:183.373500px;}
.y2d{bottom:183.853500px;}
.y116{bottom:184.341055px;}
.yb2{bottom:186.288474px;}
.y26f{bottom:189.339000px;}
.yf7{bottom:190.552490px;}
.y186{bottom:192.349500px;}
.y141{bottom:193.848000px;}
.yf9{bottom:195.079889px;}
.y261{bottom:195.318000px;}
.yd8{bottom:196.048861px;}
.y9b{bottom:196.510500px;}
.yf5{bottom:197.796328px;}
.y297{bottom:199.000500px;}
.y23d{bottom:199.320000px;}
.y1cc{bottom:199.468500px;}
.yb1{bottom:199.819207px;}
.y52{bottom:201.295500px;}
.y78{bottom:202.450500px;}
.y164{bottom:204.294000px;}
.y2c{bottom:204.775500px;}
.y115{bottom:206.850566px;}
.y2c7{bottom:210.153000px;}
.y26e{bottom:210.261000px;}
.yfc{bottom:210.473045px;}
.y1e4{bottom:211.981500px;}
.y185{bottom:213.271500px;}
.y140{bottom:214.770000px;}
.y124{bottom:215.658635px;}
.yee{bottom:216.097500px;}
.y260{bottom:216.238500px;}
.y205{bottom:216.690000px;}
.ydd{bottom:216.787365px;}
.y9a{bottom:217.431000px;}
.yc5{bottom:219.148827px;}
.y296{bottom:219.922500px;}
.y23c{bottom:220.240500px;}
.y51{bottom:222.216000px;}
.y77{bottom:223.372500px;}
.y163{bottom:225.216000px;}
.y114{bottom:225.445379px;}
.y2b{bottom:225.697500px;}
.y1cb{bottom:228.496500px;}
.y123{bottom:230.338751px;}
.y2c6{bottom:231.073500px;}
.y26d{bottom:231.183000px;}
.ydc{bottom:231.600582px;}
.y1e3{bottom:232.903500px;}
.y1a5{bottom:233.292000px;}
.y184{bottom:234.192000px;}
.y13f{bottom:235.690500px;}
.y25f{bottom:237.160500px;}
.y204{bottom:237.612000px;}
.y99{bottom:238.353000px;}
.y113{bottom:240.125495px;}
.y295{bottom:240.844500px;}
.y23b{bottom:241.162500px;}
.y50{bottom:243.138000px;}
.ycf{bottom:245.236500px;}
.y2a{bottom:246.619500px;}
.y1ca{bottom:249.417000px;}
.y2c5{bottom:251.995500px;}
.y26c{bottom:252.105000px;}
.y162{bottom:252.115500px;}
.y1e2{bottom:253.825500px;}
.y1a4{bottom:254.212500px;}
.y183{bottom:255.114000px;}
.y117{bottom:255.784285px;}
.yb8{bottom:255.875104px;}
.y13e{bottom:256.612500px;}
.y121{bottom:257.741634px;}
.y25e{bottom:258.082500px;}
.y203{bottom:258.534000px;}
.y76{bottom:259.239000px;}
.y98{bottom:259.275000px;}
.ydf{bottom:261.227017px;}
.y23a{bottom:262.084500px;}
.yc6{bottom:262.640471px;}
.yfa{bottom:263.896353px;}
.y4f{bottom:264.060000px;}
.yce{bottom:266.158500px;}
.y29{bottom:267.540000px;}
.y106{bottom:270.234711px;}
.y1c9{bottom:270.339000px;}
.yb7{bottom:270.372319px;}
.y2c4{bottom:272.917500px;}
.y26b{bottom:273.025500px;}
.y161{bottom:273.036000px;}
.y1e1{bottom:274.746000px;}
.y182{bottom:276.036000px;}
.yde{bottom:276.040234px;}
.yef{bottom:276.573070px;}
.y294{bottom:276.709500px;}
.y202{bottom:279.454500px;}
.y75{bottom:280.159500px;}
.y1a3{bottom:286.209000px;}
.ycd{bottom:287.080500px;}
.yf3{bottom:288.344307px;}
.y28{bottom:288.462000px;}
.y1c8{bottom:291.261000px;}
.y97{bottom:292.152000px;}
.y13b{bottom:292.467000px;}
.y2c3{bottom:293.838000px;}
.y25d{bottom:293.947500px;}
.y160{bottom:293.958000px;}
.y4e{bottom:295.201500px;}
.y1e0{bottom:295.668000px;}
.yb4{bottom:296.467305px;}
.y293{bottom:297.631500px;}
.y239{bottom:297.949500px;}
.y13d{bottom:298.444500px;}
.yb6{bottom:299.366748px;}
.y201{bottom:300.376500px;}
.y74{bottom:301.081500px;}
.yda{bottom:302.704025px;}
.yca{bottom:306.762000px;}
.y1a2{bottom:307.131000px;}
.y13a{bottom:307.411500px;}
.ycc{bottom:308.001000px;}
.y181{bottom:308.913000px;}
.yb0{bottom:309.031558px;}
.yf2{bottom:309.170342px;}
.y27{bottom:309.384000px;}
.yd7{bottom:310.604408px;}
.yb3{bottom:310.964519px;}
.y1c7{bottom:312.181500px;}
.y96{bottom:313.072500px;}
.y2c2{bottom:314.760000px;}
.y25c{bottom:314.869500px;}
.y15f{bottom:314.880000px;}
.y4d{bottom:316.123500px;}
.y1df{bottom:316.590000px;}
.y108{bottom:317.319660px;}
.yd9{bottom:317.517243px;}
.y292{bottom:318.553500px;}
.y238{bottom:318.871500px;}
.y13c{bottom:319.366500px;}
.y200{bottom:321.298500px;}
.yc9{bottom:321.705000px;}
.y73{bottom:322.003500px;}
.y139{bottom:322.356000px;}
.yb9{bottom:323.528772px;}
.yf1{bottom:326.374458px;}
.y1a1{bottom:328.053000px;}
.ycb{bottom:328.923000px;}
.y180{bottom:329.833500px;}
.y26{bottom:330.304500px;}
.ye0{bottom:330.355364px;}
.y107{bottom:330.901857px;}
.y1c6{bottom:333.103500px;}
.y95{bottom:333.994500px;}
.y2c1{bottom:335.682000px;}
.y25b{bottom:335.790000px;}
.y15e{bottom:335.800500px;}
.yc8{bottom:336.649500px;}
.y4c{bottom:337.044000px;}
.y138{bottom:337.299000px;}
.y1de{bottom:337.510500px;}
.y291{bottom:339.474000px;}
.y237{bottom:339.793500px;}
.yf0{bottom:339.956655px;}
.y206{bottom:342.219000px;}
.y1ff{bottom:342.220500px;}
.y72{bottom:342.924000px;}
.y26a{bottom:350.734500px;}
.y17f{bottom:350.755500px;}
.y25{bottom:351.226500px;}
.yc7{bottom:351.592500px;}
.y137{bottom:352.243500px;}
.y1c5{bottom:354.025500px;}
.yf4{bottom:354.444332px;}
.y105{bottom:356.255291px;}
.y2c0{bottom:356.604000px;}
.y25a{bottom:356.712000px;}
.y15d{bottom:356.722500px;}
.y4b{bottom:357.966000px;}
.y1dd{bottom:358.432500px;}
.y1a0{bottom:360.048000px;}
.y290{bottom:360.396000px;}
.y236{bottom:360.714000px;}
.y1fe{bottom:363.141000px;}
.y71{bottom:363.846000px;}
.y94{bottom:366.871500px;}
.y269{bottom:371.656500px;}
.y17e{bottom:371.677500px;}
.y24{bottom:372.148500px;}
.y136{bottom:373.165500px;}
.y1c4{bottom:374.946000px;}
.y2bf{bottom:377.524500px;}
.y259{bottom:377.634000px;}
.y15c{bottom:377.644500px;}
.y4a{bottom:378.888000px;}
.y1dc{bottom:379.354500px;}
.y19f{bottom:380.970000px;}
.y28f{bottom:381.318000px;}
.y235{bottom:381.636000px;}
.y1fd{bottom:384.063000px;}
.y70{bottom:384.768000px;}
.y93{bottom:387.793500px;}
.ya9{bottom:389.271620px;}
.y268{bottom:392.577000px;}
.y17d{bottom:392.598000px;}
.y23{bottom:393.069000px;}
.y1c3{bottom:395.868000px;}
.y2be{bottom:398.446500px;}
.y258{bottom:398.556000px;}
.y1db{bottom:400.275000px;}
.y28e{bottom:402.238500px;}
.y234{bottom:402.558000px;}
.y15b{bottom:404.544000px;}
.y1fc{bottom:404.985000px;}
.y6f{bottom:405.688500px;}
.y135{bottom:406.042500px;}
.y92{bottom:408.714000px;}
.y49{bottom:410.029500px;}
.y19e{bottom:412.966500px;}
.y267{bottom:413.499000px;}
.y1f{bottom:413.848500px;}
.y22{bottom:413.991000px;}
.y1c2{bottom:416.790000px;}
.y2bd{bottom:419.368500px;}
.y29e{bottom:419.476500px;}
.y1da{bottom:421.197000px;}
.y233{bottom:423.478500px;}
.y15a{bottom:425.464500px;}
.y1fb{bottom:425.905500px;}
.y134{bottom:426.963000px;}
.y17c{bottom:428.464500px;}
.y1e{bottom:428.791500px;}
.y91{bottom:429.636000px;}
.y48{bottom:430.951500px;}
.y19d{bottom:433.888500px;}
.y257{bottom:434.421000px;}
.y21{bottom:434.913000px;}
.y1c1{bottom:437.712000px;}
.y28d{bottom:438.105000px;}
.y6e{bottom:438.565500px;}
.y2bc{bottom:440.289000px;}
.y29d{bottom:440.398500px;}
.y1d9{bottom:442.119000px;}
.y1d{bottom:443.736000px;}
.y232{bottom:444.400500px;}
.y159{bottom:446.386500px;}
.y1f9{bottom:446.827500px;}
.y17b{bottom:449.386500px;}
.y90{bottom:450.558000px;}
.y47{bottom:451.873500px;}
.y133{bottom:453.862500px;}
.y19c{bottom:454.810500px;}
.y256{bottom:455.343000px;}
.y20{bottom:455.835000px;}
.y1c0{bottom:458.632500px;}
.y28c{bottom:459.025500px;}
.y6d{bottom:459.487500px;}
.y2bb{bottom:461.211000px;}
.y1c{bottom:463.020000px;}
.y1d8{bottom:463.041000px;}
.y1f8{bottom:467.749500px;}
.y46{bottom:472.794000px;}
.y132{bottom:474.784500px;}
.y255{bottom:476.263500px;}
.y1b{bottom:476.755500px;}
.y158{bottom:479.263500px;}
.y1bf{bottom:479.554500px;}
.y28b{bottom:479.947500px;}
.y231{bottom:480.265500px;}
.y6c{bottom:480.409500px;}
.y2ba{bottom:482.133000px;}
.y8f{bottom:483.433500px;}
.y1d7{bottom:483.961500px;}
.y19b{bottom:485.926500px;}
.y1fa{bottom:488.670000px;}
.y1f7{bottom:488.671500px;}
.y17a{bottom:491.218500px;}
.y45{bottom:493.716000px;}
.y254{bottom:497.185500px;}
.y1a{bottom:497.677500px;}
.y157{bottom:500.184000px;}
.y1be{bottom:500.476500px;}
.y28a{bottom:500.869500px;}
.y230{bottom:501.187500px;}
.y6b{bottom:501.330000px;}
.y131{bottom:501.682500px;}
.y2b9{bottom:503.053500px;}
.y8e{bottom:504.355500px;}
.y1d6{bottom:504.883500px;}
.y179{bottom:512.140500px;}
.y44{bottom:514.638000px;}
.y1f6{bottom:517.698000px;}
.y253{bottom:518.107500px;}
.y19{bottom:518.599500px;}
.y1bd{bottom:521.397000px;}
.y289{bottom:521.790000px;}
.y22f{bottom:522.109500px;}
.y6a{bottom:522.252000px;}
.y130{bottom:522.604500px;}
.y2b8{bottom:523.975500px;}
.y8d{bottom:525.277500px;}
.y1d5{bottom:525.805500px;}
.y19a{bottom:527.379000px;}
.y156{bottom:536.050500px;}
.y252{bottom:539.028000px;}
.y178{bottom:539.038500px;}
.y18{bottom:539.520000px;}
.y1bc{bottom:542.319000px;}
.y288{bottom:542.712000px;}
.y22e{bottom:543.030000px;}
.y2b7{bottom:544.897500px;}
.y43{bottom:546.166500px;}
.y8c{bottom:546.199500px;}
.y1d4{bottom:546.726000px;}
.y199{bottom:548.301000px;}
.y12f{bottom:555.481500px;}
.y155{bottom:556.972500px;}
.y251{bottom:559.950000px;}
.y177{bottom:559.960500px;}
.y17{bottom:560.442000px;}
.y1bb{bottom:563.241000px;}
.y287{bottom:563.634000px;}
.y22d{bottom:563.952000px;}
.y2b6{bottom:565.819500px;}
.y42{bottom:567.087000px;}
.y8b{bottom:567.120000px;}
.y1d3{bottom:567.648000px;}
.y198{bottom:569.223000px;}
.y266{bottom:574.894500px;}
.y12e{bottom:576.403500px;}
.y154{bottom:577.893000px;}
.y250{bottom:580.872000px;}
.y176{bottom:580.882500px;}
.y16{bottom:581.364000px;}
.y1ba{bottom:584.161500px;}
.y286{bottom:584.556000px;}
.y22c{bottom:584.874000px;}
.y67{bottom:586.579500px;}
.y2b5{bottom:586.740000px;}
.y41{bottom:588.009000px;}
.y1d2{bottom:588.570000px;}
.y197{bottom:590.143500px;}
.y265{bottom:595.815000px;}
.y1af{bottom:598.815000px;}
.y24f{bottom:601.792500px;}
.y15{bottom:602.284500px;}
.y8a{bottom:602.986500px;}
.y1b9{bottom:605.083500px;}
.y285{bottom:605.476500px;}
.y22b{bottom:605.796000px;}
.y66{bottom:607.501500px;}
.y2b4{bottom:607.662000px;}
.y175{bottom:607.782000px;}
.y40{bottom:608.931000px;}
.y1f5{bottom:609.490500px;}
.y196{bottom:611.065500px;}
.y12d{bottom:612.268500px;}
.y264{bottom:616.737000px;}
.y1d1{bottom:617.598000px;}
.y153{bottom:619.726500px;}
.y1ae{bottom:619.737000px;}
.y29c{bottom:622.714500px;}
.y89{bottom:623.907000px;}
.y1b8{bottom:626.005500px;}
.y284{bottom:626.398500px;}
.y22a{bottom:626.716500px;}
.yed{bottom:627.088500px;}
.y65{bottom:628.423500px;}
.y2b3{bottom:628.584000px;}
.y174{bottom:628.702500px;}
.y3f{bottom:629.853000px;}
.y1f4{bottom:630.412500px;}
.y12c{bottom:633.190500px;}
.y24e{bottom:637.659000px;}
.y14{bottom:639.327000px;}
.y152{bottom:640.647000px;}
.y1ad{bottom:640.657500px;}
.yec{bottom:642.033000px;}
.y195{bottom:643.062000px;}
.y29b{bottom:643.636500px;}
.y88{bottom:644.829000px;}
.y1d0{bottom:646.624500px;}
.y1b7{bottom:646.927500px;}
.y229{bottom:647.638500px;}
.y64{bottom:649.344000px;}
.y2b2{bottom:649.504500px;}
.y173{bottom:649.624500px;}
.y3e{bottom:650.773500px;}
.y1f3{bottom:651.334500px;}
.y12b{bottom:654.111000px;}
.yeb{bottom:656.977500px;}
.y24d{bottom:658.579500px;}
.y151{bottom:661.569000px;}
.y283{bottom:662.263500px;}
.y194{bottom:663.984000px;}
.y1cf{bottom:667.546500px;}
.y1b6{bottom:667.848000px;}
.y228{bottom:668.560500px;}
.y69{bottom:670.375500px;}
.y2b1{bottom:670.426500px;}
.y3d{bottom:671.695500px;}
.y1f2{bottom:672.255000px;}
.y1ac{bottom:673.534500px;}
.y218{bottom:673.543500px;}
.y12a{bottom:675.033000px;}
.y63{bottom:678.372000px;}
.y24c{bottom:679.501500px;}
.y87{bottom:681.870000px;}
.y172{bottom:682.501500px;}
.y282{bottom:683.185500px;}
.y193{bottom:684.904500px;}
.y68{bottom:685.318500px;}
.y13{bottom:687.768000px;}
.y1ce{bottom:688.468500px;}
.y1b5{bottom:688.770000px;}
.y2b0{bottom:691.348500px;}
.y1f1{bottom:693.177000px;}
.y150{bottom:694.446000px;}
.y1ab{bottom:694.456500px;}
.y217{bottom:694.465500px;}
.yd0{bottom:694.661855px;}
.y129{bottom:695.955000px;}
.y24b{bottom:700.423500px;}
.y3c{bottom:703.129500px;}
.y171{bottom:703.422000px;}
.y281{bottom:704.107500px;}
.y227{bottom:704.425500px;}
.y12{bottom:705.700500px;}
.y1cd{bottom:709.389000px;}
.y1b4{bottom:709.692000px;}
.y2af{bottom:712.269000px;}
.y1f0{bottom:714.099000px;}
.y14f{bottom:715.368000px;}
.y1aa{bottom:715.377000px;}
.y216{bottom:715.387500px;}
.y192{bottom:716.901000px;}
.y24a{bottom:721.345500px;}
.y11{bottom:723.633000px;}
.y280{bottom:725.028000px;}
.y226{bottom:725.347500px;}
.y62{bottom:725.413500px;}
.y128{bottom:727.389000px;}
.y86{bottom:730.311000px;}
.y1b3{bottom:730.612500px;}
.y127{bottom:731.125500px;}
.y2ae{bottom:733.191000px;}
.y1ef{bottom:735.019500px;}
.y14e{bottom:736.288500px;}
.y170{bottom:736.299000px;}
.y215{bottom:736.308000px;}
.y191{bottom:737.823000px;}
.y10{bottom:741.565500px;}
.y249{bottom:742.266000px;}
.y27f{bottom:745.950000px;}
.y126{bottom:746.068500px;}
.y225{bottom:746.268000px;}
.y61{bottom:746.335500px;}
.y3b{bottom:747.510000px;}
.y85{bottom:751.233000px;}
.y2ad{bottom:754.113000px;}
.y1ee{bottom:755.941500px;}
.y14d{bottom:757.210500px;}
.y16f{bottom:757.221000px;}
.ya8{bottom:758.290500px;}
.y190{bottom:758.745000px;}
.yf{bottom:759.498000px;}
.y1b2{bottom:759.640500px;}
.y125{bottom:761.013000px;}
.y263{bottom:763.188000px;}
.y214{bottom:763.207500px;}
.y27e{bottom:766.872000px;}
.y224{bottom:767.190000px;}
.y60{bottom:767.256000px;}
.y3a{bottom:768.432000px;}
.y1a9{bottom:769.176000px;}
.y84{bottom:772.155000px;}
.y2ac{bottom:775.035000px;}
.y1ed{bottom:776.863500px;}
.ye{bottom:777.432000px;}
.y248{bottom:778.132500px;}
.ya7{bottom:779.212500px;}
.y29a{bottom:784.110000px;}
.y213{bottom:784.129500px;}
.y27d{bottom:787.794000px;}
.y223{bottom:788.112000px;}
.y5f{bottom:788.178000px;}
.y1b1{bottom:788.668500px;}
.y39{bottom:789.354000px;}
.y18f{bottom:789.861000px;}
.y14c{bottom:790.087500px;}
.y16e{bottom:790.098000px;}
.y83{bottom:793.075500px;}
.yd{bottom:795.364500px;}
.y2ab{bottom:795.955500px;}
.y1ec{bottom:797.785500px;}
.y111{bottom:798.691921px;}
.y247{bottom:799.053000px;}
.ya6{bottom:800.133000px;}
.y212{bottom:805.050000px;}
.y222{bottom:809.032500px;}
.y5e{bottom:809.100000px;}
.y1b0{bottom:809.590500px;}
.y38{bottom:810.276000px;}
.y14b{bottom:811.008000px;}
.y16d{bottom:811.018500px;}
.yc{bottom:813.297000px;}
.y82{bottom:813.997500px;}
.y2aa{bottom:816.877500px;}
.y1eb{bottom:818.706000px;}
.y246{bottom:819.975000px;}
.ya5{bottom:821.055000px;}
.y27c{bottom:823.659000px;}
.y211{bottom:825.972000px;}
.y221{bottom:829.954500px;}
.y37{bottom:831.196500px;}
.yb{bottom:831.229500px;}
.y18e{bottom:831.315000px;}
.y14a{bottom:831.930000px;}
.y1a8{bottom:831.940500px;}
.y81{bottom:834.919500px;}
.y2a9{bottom:837.799500px;}
.y1ea{bottom:839.628000px;}
.y5d{bottom:840.534000px;}
.y245{bottom:840.897000px;}
.ya4{bottom:841.977000px;}
.y27b{bottom:844.581000px;}
.y16c{bottom:846.885000px;}
.ya{bottom:849.162000px;}
.y36{bottom:852.118500px;}
.y18d{bottom:852.235500px;}
.y1a7{bottom:852.862500px;}
.y210{bottom:852.871500px;}
.y80{bottom:855.840000px;}
.y2a8{bottom:858.720000px;}
.y149{bottom:858.829500px;}
.y1e9{bottom:860.550000px;}
.y244{bottom:861.817500px;}
.ya3{bottom:862.897500px;}
.y27a{bottom:865.501500px;}
.y220{bottom:865.821000px;}
.y9{bottom:867.094500px;}
.y16b{bottom:867.805500px;}
.y35{bottom:873.040500px;}
.y18c{bottom:873.157500px;}
.y20f{bottom:873.793500px;}
.y7f{bottom:876.762000px;}
.y2a7{bottom:879.642000px;}
.y148{bottom:879.751500px;}
.y1e8{bottom:881.470500px;}
.y243{bottom:882.739500px;}
.ya2{bottom:883.819500px;}
.y8{bottom:885.028500px;}
.y5c{bottom:885.729000px;}
.y1a6{bottom:885.739500px;}
.y279{bottom:886.423500px;}
.y21f{bottom:886.741500px;}
.y34{bottom:893.961000px;}
.y20e{bottom:894.714000px;}
.y7e{bottom:897.684000px;}
.y2a6{bottom:900.564000px;}
.y147{bottom:900.672000px;}
.y1e7{bottom:902.392500px;}
.y7{bottom:902.961000px;}
.y242{bottom:903.661500px;}
.y18b{bottom:904.591500px;}
.ya1{bottom:904.741500px;}
.y5b{bottom:906.649500px;}
.y278{bottom:907.345500px;}
.y21e{bottom:907.663500px;}
.y16a{bottom:909.639000px;}
.y33{bottom:914.883000px;}
.y20d{bottom:915.636000px;}
.y7d{bottom:918.604500px;}
.y6{bottom:920.893500px;}
.y2a5{bottom:921.484500px;}
.y146{bottom:921.594000px;}
.y241{bottom:924.583500px;}
.ya0{bottom:925.662000px;}
.y5a{bottom:927.571500px;}
.y277{bottom:928.266000px;}
.y21d{bottom:928.585500px;}
.y169{bottom:930.561000px;}
.y1e6{bottom:931.420500px;}
.y32{bottom:935.805000px;}
.y20c{bottom:936.558000px;}
.y5{bottom:938.826000px;}
.y7c{bottom:939.526500px;}
.y2a4{bottom:942.406500px;}
.y240{bottom:945.504000px;}
.y9f{bottom:946.584000px;}
.y59{bottom:948.493500px;}
.y276{bottom:949.188000px;}
.y18a{bottom:949.374000px;}
.y21c{bottom:949.506000px;}
.y168{bottom:954.471000px;}
.y7b{bottom:960.448500px;}
.y2a3{bottom:963.328500px;}
.y20b{bottom:963.456000px;}
.y23f{bottom:966.426000px;}
.y9e{bottom:967.506000px;}
.y58{bottom:969.414000px;}
.y275{bottom:970.110000px;}
.y189{bottom:970.294500px;}
.y21b{bottom:970.428000px;}
.y31{bottom:972.846000px;}
.y167{bottom:975.393000px;}
.y4{bottom:977.680500px;}
.y7a{bottom:981.370500px;}
.y2a2{bottom:984.249000px;}
.y20a{bottom:984.378000px;}
.y299{bottom:987.348000px;}
.y145{bottom:990.336000px;}
.y274{bottom:991.030500px;}
.y188{bottom:991.216500px;}
.y21a{bottom:991.350000px;}
.y144{bottom:993.325500px;}
.y166{bottom:996.313500px;}
.y9d{bottom:998.940000px;}
.y57{bottom:1002.291000px;}
.y209{bottom:1005.300000px;}
.y3{bottom:1007.568000px;}
.y143{bottom:1008.268500px;}
.y273{bottom:1011.952500px;}
.y2a1{bottom:1013.277000px;}
.y2cb{bottom:1017.235500px;}
.y30{bottom:1020.223500px;}
.y219{bottom:1022.784000px;}
.y56{bottom:1023.213000px;}
.y208{bottom:1026.222000px;}
.y2ca{bottom:1032.180000px;}
.y272{bottom:1032.874500px;}
.y2a0{bottom:1034.199000px;}
.y2{bottom:1037.457000px;}
.y55{bottom:1044.135000px;}
.y2c9{bottom:1047.123000px;}
.y29f{bottom:1055.121000px;}
.y2c8{bottom:1062.067500px;}
.y207{bottom:1063.263000px;}
.y271{bottom:1064.308500px;}
.y1{bottom:1064.355000px;}
.y2f{bottom:1065.055500px;}
.y2e{bottom:1128.120000px;}
.h1a{height:20.401591px;}
.h7{height:20.592694px;}
.he{height:21.776024px;}
.h20{height:22.050757px;}
.h14{height:22.250687px;}
.h1b{height:22.617541px;}
.hf{height:24.141260px;}
.h21{height:24.445833px;}
.h15{height:24.667479px;}
.h1c{height:28.052188px;}
.h10{height:29.942034px;}
.h1e{height:30.156721px;}
.h22{height:30.319791px;}
.h16{height:30.594694px;}
.h1d{height:30.602387px;}
.h12{height:32.188347px;}
.h24{height:32.594444px;}
.h11{height:32.664037px;}
.h18{height:32.889972px;}
.h23{height:33.076136px;}
.h17{height:33.376030px;}
.h8{height:34.813397px;}
.h26{height:38.869497px;}
.h3{height:39.165235px;}
.h27{height:41.185388px;}
.hc{height:43.217759px;}
.h4{height:43.516637px;}
.h5{height:43.815515px;}
.hb{height:47.978222px;}
.h29{height:50.857497px;}
.h28{height:50.863497px;}
.h9{height:51.861658px;}
.h2{height:52.578970px;}
.h25{height:54.644393px;}
.h6{height:54.774749px;}
.h1{height:63.094588px;}
.ha{height:89.633925px;}
.h1f{height:276.825779px;}
.hd{height:342.375147px;}
.h13{height:349.612544px;}
.h19{height:373.912150px;}
.h0{height:1188.000000px;}
.w2{width:716.987008px;}
.w1{width:717.303510px;}
.w4{width:717.314400px;}
.w3{width:717.319350px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.043583px;}
.x20{left:11.382331px;}
.x38{left:12.687484px;}
.x1f{left:14.128948px;}
.x26{left:16.320070px;}
.x1e{left:17.550747px;}
.x21{left:18.850661px;}
.xb{left:22.715380px;}
.x10{left:26.037658px;}
.x7{left:27.064544px;}
.x6{left:29.752570px;}
.x9{left:34.373557px;}
.x8{left:37.695835px;}
.xa{left:40.595278px;}
.x39{left:45.723349px;}
.x37{left:49.203787px;}
.x4c{left:53.122816px;}
.x36{left:66.096644px;}
.x3a{left:99.712581px;}
.x1{left:108.000000px;}
.x5{left:116.967000px;}
.x4b{left:120.892319px;}
.x2{left:125.932500px;}
.x58{left:143.865000px;}
.x59{left:161.799000px;}
.x56{left:182.524232px;}
.x53{left:196.638556px;}
.x54{left:204.146819px;}
.x46{left:222.221167px;}
.x25{left:226.822060px;}
.x2f{left:231.590069px;}
.x24{left:234.413834px;}
.x2a{left:235.725426px;}
.xf{left:237.908410px;}
.x29{left:240.339121px;}
.x1c{left:242.574706px;}
.x3b{left:243.712168px;}
.x1d{left:245.398637px;}
.x17{left:246.621845px;}
.xe{left:249.506181px;}
.x16{left:251.137118px;}
.x4a{left:257.011403px;}
.x48{left:271.343445px;}
.x23{left:273.792303px;}
.x51{left:284.856872px;}
.x57{left:287.334142px;}
.xd{left:292.363572px;}
.x52{left:293.955490px;}
.x5e{left:296.011500px;}
.x50{left:302.992932px;}
.x22{left:309.097138px;}
.x1b{left:311.693192px;}
.x47{left:319.192393px;}
.x2e{left:328.122869px;}
.xc{left:336.564980px;}
.x15{left:355.652980px;}
.x28{left:367.347034px;}
.x70{left:381.511500px;}
.x44{left:384.386938px;}
.x45{left:385.900791px;}
.x43{left:387.711751px;}
.x67{left:397.642500px;}
.x6c{left:399.390000px;}
.x6a{left:412.944000px;}
.x65{left:419.983500px;}
.x68{left:424.930500px;}
.x42{left:432.122700px;}
.x5d{left:434.367000px;}
.x40{left:453.557109px;}
.x3f{left:479.009576px;}
.x5a{left:482.119500px;}
.x41{left:483.805794px;}
.x4{left:489.591000px;}
.x71{left:505.744500px;}
.x2b{left:564.470832px;}
.x18{left:568.354296px;}
.x3c{left:578.668945px;}
.x2c{left:589.591580px;}
.x55{left:591.701874px;}
.x19{left:592.939156px;}
.x13{left:596.155730px;}
.x3d{left:600.796607px;}
.x27{left:608.524728px;}
.x3{left:610.117500px;}
.x14{left:611.468413px;}
.x49{left:612.765918px;}
.x12{left:617.252193px;}
.x2d{left:623.322510px;}
.x1a{left:625.950521px;}
.x3e{left:631.724401px;}
.x4f{left:643.571617px;}
.x35{left:648.787036px;}
.x4d{left:650.697589px;}
.x31{left:652.861695px;}
.x30{left:655.380061px;}
.x33{left:659.709386px;}
.x4e{left:661.677093px;}
.x32{left:662.821973px;}
.x34{left:665.538412px;}
.x6e{left:696.621000px;}
.x6d{left:703.987500px;}
.x5b{left:706.990500px;}
.x63{left:713.910000px;}
.x6f{left:715.195500px;}
.x61{left:717.646500px;}
.x66{left:721.741500px;}
.x60{left:725.118000px;}
.x6b{left:726.358500px;}
.x5f{left:728.854500px;}
.x64{left:732.589500px;}
.x69{left:737.626500px;}
.x5c{left:781.012500px;}
.x62{left:813.381000px;}
@media print{
.v3{vertical-align:-15.434667pt;}
.v5{vertical-align:-9.034667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.661333pt;}
.v2{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000015pt;}
.ls1c{letter-spacing:0.000445pt;}
.lsd{letter-spacing:0.001867pt;}
.lse{letter-spacing:0.002400pt;}
.ls18{letter-spacing:0.002422pt;}
.ls7{letter-spacing:0.002533pt;}
.ls8{letter-spacing:0.003733pt;}
.ls13{letter-spacing:0.003867pt;}
.ls19{letter-spacing:0.004541pt;}
.ls2b{letter-spacing:0.090329pt;}
.ls30{letter-spacing:0.135493pt;}
.ls28{letter-spacing:0.180657pt;}
.ls2c{letter-spacing:0.203111pt;}
.ls25{letter-spacing:0.225821pt;}
.ls2e{letter-spacing:0.245778pt;}
.ls2d{letter-spacing:0.251111pt;}
.ls2a{letter-spacing:0.256445pt;}
.ls22{letter-spacing:0.270986pt;}
.ls26{letter-spacing:0.316150pt;}
.ls23{letter-spacing:0.406478pt;}
.ls29{letter-spacing:0.451643pt;}
.ls27{letter-spacing:0.496807pt;}
.ls2f{letter-spacing:0.632300pt;}
.ls24{letter-spacing:0.767793pt;}
.ls1{letter-spacing:2.391040pt;}
.lsc{letter-spacing:2.653089pt;}
.ls1d{letter-spacing:2.653887pt;}
.ls1b{letter-spacing:2.655207pt;}
.ls1f{letter-spacing:2.655721pt;}
.ls4{letter-spacing:2.655733pt;}
.ls1e{letter-spacing:2.656423pt;}
.ls5{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.656693pt;}
.ls1a{letter-spacing:2.658422pt;}
.ls20{letter-spacing:2.661852pt;}
.ls6{letter-spacing:9.740533pt;}
.ls31{letter-spacing:12.367733pt;}
.ls12{letter-spacing:15.457867pt;}
.lsa{letter-spacing:15.459733pt;}
.ls11{letter-spacing:15.463200pt;}
.ls9{letter-spacing:15.465067pt;}
.ls21{letter-spacing:16.791200pt;}
.ls0{letter-spacing:17.723733pt;}
.ls16{letter-spacing:31.879200pt;}
.ls10{letter-spacing:31.880877pt;}
.ls15{letter-spacing:31.884533pt;}
.lsf{letter-spacing:58.178400pt;}
.ls2{letter-spacing:63.762133pt;}
.ls17{letter-spacing:1375.697867pt;}
.ws6{word-spacing:-15.940267pt;}
.ws17{word-spacing:-14.545467pt;}
.ws9{word-spacing:-13.283467pt;}
.wsd{word-spacing:-10.626800pt;}
.ws2c{word-spacing:-10.309130pt;}
.ws30{word-spacing:-9.658451pt;}
.ws31{word-spacing:-9.569261pt;}
.ws2b{word-spacing:-9.450036pt;}
.ws2f{word-spacing:-8.853580pt;}
.ws4f{word-spacing:-2.709827pt;}
.ws5{word-spacing:-2.438861pt;}
.ws5b{word-spacing:-0.812957pt;}
.ws62{word-spacing:-0.677464pt;}
.ws5e{word-spacing:-0.541971pt;}
.ws60{word-spacing:-0.496807pt;}
.ws5a{word-spacing:-0.451643pt;}
.ws5d{word-spacing:-0.361314pt;}
.ws58{word-spacing:-0.316150pt;}
.ws5c{word-spacing:-0.270986pt;}
.ws5f{word-spacing:-0.225821pt;}
.ws63{word-spacing:-0.180657pt;}
.ws61{word-spacing:-0.135493pt;}
.ws3{word-spacing:-0.063761pt;}
.ws26{word-spacing:-0.058182pt;}
.wsf{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047820pt;}
.ws2e{word-spacing:-0.045164pt;}
.wsb{word-spacing:-0.042507pt;}
.ws13{word-spacing:0.000000pt;}
.wsa{word-spacing:1.487748pt;}
.ws18{word-spacing:1.629092pt;}
.wse{word-spacing:1.739177pt;}
.ws2d{word-spacing:1.741000pt;}
.ws20{word-spacing:1.741657pt;}
.wsc{word-spacing:1.742795pt;}
.ws2{word-spacing:1.785037pt;}
.ws1{word-spacing:1.785310pt;}
.ws4{word-spacing:1.960653pt;}
.ws0{word-spacing:2.142366pt;}
.ws4d{word-spacing:2.174230pt;}
.ws33{word-spacing:2.175774pt;}
.ws47{word-spacing:2.176195pt;}
.ws11{word-spacing:2.176866pt;}
.ws10{word-spacing:2.177263pt;}
.ws23{word-spacing:2.177939pt;}
.ws4a{word-spacing:2.177974pt;}
.ws54{word-spacing:2.178156pt;}
.ws52{word-spacing:2.178254pt;}
.ws56{word-spacing:2.178477pt;}
.ws7{word-spacing:2.178489pt;}
.ws1c{word-spacing:2.179564pt;}
.ws29{word-spacing:2.179684pt;}
.ws21{word-spacing:2.180404pt;}
.ws4e{word-spacing:2.180507pt;}
.ws27{word-spacing:2.180667pt;}
.ws44{word-spacing:2.181107pt;}
.ws1e{word-spacing:2.181417pt;}
.ws3d{word-spacing:2.182527pt;}
.ws3f{word-spacing:2.182966pt;}
.ws1d{word-spacing:5.897859pt;}
.ws59{word-spacing:5.900822pt;}
.ws53{word-spacing:7.226283pt;}
.ws12{word-spacing:11.423071pt;}
.ws8{word-spacing:11.423596pt;}
.ws1b{word-spacing:13.246214pt;}
.ws14{word-spacing:13.549136pt;}
.ws57{word-spacing:14.719133pt;}
.ws35{word-spacing:14.725064pt;}
.ws32{word-spacing:14.725505pt;}
.ws19{word-spacing:15.408821pt;}
.ws55{word-spacing:15.410333pt;}
.ws24{word-spacing:15.411424pt;}
.ws22{word-spacing:15.411760pt;}
.ws48{word-spacing:15.413060pt;}
.ws2a{word-spacing:15.413064pt;}
.ws28{word-spacing:15.413505pt;}
.ws45{word-spacing:15.415284pt;}
.ws41{word-spacing:15.415729pt;}
.ws3c{word-spacing:15.416173pt;}
.ws3b{word-spacing:15.416618pt;}
.ws3e{word-spacing:15.417063pt;}
.ws46{word-spacing:15.417508pt;}
.ws42{word-spacing:15.417953pt;}
.ws3a{word-spacing:15.418393pt;}
.ws36{word-spacing:15.418397pt;}
.ws34{word-spacing:15.418838pt;}
.ws4b{word-spacing:15.418842pt;}
.ws38{word-spacing:15.419283pt;}
.ws40{word-spacing:15.419287pt;}
.ws39{word-spacing:15.419727pt;}
.ws43{word-spacing:15.420617pt;}
.ws15{word-spacing:18.490709pt;}
.ws49{word-spacing:18.597420pt;}
.ws25{word-spacing:27.143724pt;}
.ws4c{word-spacing:31.835283pt;}
.ws16{word-spacing:31.958000pt;}
.ws6d{word-spacing:50.487473pt;}
.ws51{word-spacing:54.332613pt;}
.ws6e{word-spacing:57.713679pt;}
.ws6a{word-spacing:72.438066pt;}
.ws64{word-spacing:74.972019pt;}
.ws66{word-spacing:74.982186pt;}
.ws68{word-spacing:90.231819pt;}
.ws65{word-spacing:99.003399pt;}
.ws6f{word-spacing:115.247490pt;}
.ws37{word-spacing:118.283489pt;}
.ws70{word-spacing:125.574066pt;}
.ws6b{word-spacing:133.312871pt;}
.ws6c{word-spacing:138.626391pt;}
.ws69{word-spacing:161.749790pt;}
.ws50{word-spacing:188.306423pt;}
.ws67{word-spacing:317.049782pt;}
.ws1f{word-spacing:1100.668048pt;}
._8{margin-left:-23.591437pt;}
._b{margin-left:-5.897859pt;}
._1{margin-left:-4.718319pt;}
._f{margin-left:-3.719371pt;}
._2{margin-left:-2.649280pt;}
._0{margin-left:-1.377235pt;}
._a{width:1.316688pt;}
._e{width:2.314200pt;}
._6{width:3.931906pt;}
._1b{width:4.873145pt;}
._7{width:5.897859pt;}
._1c{width:9.936139pt;}
._4{width:15.748791pt;}
._3{width:17.024205pt;}
._5{width:18.907166pt;}
._c{width:19.809401pt;}
._15{width:26.869523pt;}
._14{width:31.880320pt;}
._d{width:52.195330pt;}
._1d{width:53.133929pt;}
._10{width:63.870076pt;}
._18{width:67.962475pt;}
._17{width:69.020345pt;}
._2c{width:70.652771pt;}
._1e{width:71.946175pt;}
._20{width:83.538097pt;}
._22{width:88.265652pt;}
._2a{width:90.840903pt;}
._1f{width:94.095833pt;}
._28{width:95.470963pt;}
._2e{width:99.891669pt;}
._24{width:114.133679pt;}
._23{width:122.097380pt;}
._21{width:126.192933pt;}
._25{width:129.327831pt;}
._30{width:137.616715pt;}
._31{width:141.708022pt;}
._9{width:153.647331pt;}
._2b{width:176.723241pt;}
._26{width:184.693321pt;}
._29{width:187.190612pt;}
._27{width:188.412691pt;}
._12{width:195.256365pt;}
._2f{width:206.488506pt;}
._2d{width:210.994585pt;}
._32{width:227.519217pt;}
._19{width:298.824866pt;}
._1a{width:774.915970pt;}
._11{width:838.657538pt;}
._13{width:884.094407pt;}
._16{width:1395.016766pt;}
.fs13{font-size:25.755870pt;}
.fs6{font-size:26.566933pt;}
.fsb{font-size:27.491014pt;}
.fs17{font-size:27.837849pt;}
.fsf{font-size:28.090249pt;}
.fs14{font-size:28.975353pt;}
.fsc{font-size:30.927391pt;}
.fs18{font-size:31.317580pt;}
.fs10{font-size:31.601530pt;}
.fs15{font-size:35.414321pt;}
.fsd{font-size:37.800145pt;}
.fs19{font-size:38.277042pt;}
.fs11{font-size:38.624093pt;}
.fs16{font-size:38.633804pt;}
.fs5{font-size:40.381867pt;}
.fse{font-size:41.236522pt;}
.fs1a{font-size:41.756774pt;}
.fs12{font-size:42.135374pt;}
.fs4{font-size:42.507200pt;}
.fsa{font-size:45.164267pt;}
.fs9{font-size:47.820267pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs8{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs7{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:6.601980pt;}
.yaa{bottom:6.657327pt;}
.y11b{bottom:15.970142pt;}
.yae{bottom:17.825552pt;}
.yd5{bottom:18.013643pt;}
.yc4{bottom:21.261929pt;}
.yea{bottom:27.669666pt;}
.y10c{bottom:32.551934pt;}
.yc3{bottom:34.148342pt;}
.yad{bottom:37.584718pt;}
.yd4{bottom:38.203510pt;}
.yc1{bottom:39.302907pt;}
.ye8{bottom:39.959150pt;}
.ye9{bottom:40.836971pt;}
.y10b{bottom:43.820127pt;}
.y10a{bottom:44.624998pt;}
.yc2{bottom:46.175660pt;}
.y120{bottom:47.287722pt;}
.y10d{bottom:51.063965pt;}
.yac{bottom:53.907508pt;}
.yd3{bottom:54.882095pt;}
.y109{bottom:56.698062pt;}
.y11d{bottom:56.856983pt;}
.y11f{bottom:60.336714pt;}
.y101{bottom:65.551642pt;}
.yab{bottom:66.793921pt;}
.yd2{bottom:68.049400pt;}
.y11c{bottom:69.905975pt;}
.y119{bottom:70.775908pt;}
.y104{bottom:75.210093pt;}
.y100{bottom:76.819835pt;}
.yc0{bottom:77.962146pt;}
.ye7{bottom:79.461063pt;}
.yaf{bottom:80.539429pt;}
.yd6{bottom:82.094524pt;}
.y118{bottom:82.954967pt;}
.y103{bottom:87.283157pt;}
.y11e{bottom:89.044496pt;}
.ybf{bottom:90.848559pt;}
.ye6{bottom:92.628368pt;}
.y102{bottom:98.551350pt;}
.ybd{bottom:102.875878pt;}
.ye4{bottom:104.917852pt;}
.yba{bottom:111.466820pt;}
.ye1{bottom:113.696054pt;}
.yff{bottom:113.843897pt;}
.ybc{bottom:115.762291pt;}
.ye3{bottom:118.085156pt;}
.yfb{bottom:125.112090pt;}
.yf6{bottom:127.526703pt;}
.ybb{bottom:127.789610pt;}
.yb5{bottom:128.648704pt;}
.ye2{bottom:130.374640pt;}
.y110{bottom:132.312000pt;}
.y11a{bottom:140.370530pt;}
.ybe{bottom:141.535117pt;}
.y54{bottom:141.734667pt;}
.ye5{bottom:144.419764pt;}
.y122{bottom:144.720194pt;}
.y10f{bottom:145.594667pt;}
.yfe{bottom:148.453347pt;}
.y270{bottom:149.705333pt;}
.ydb{bottom:150.564506pt;}
.y187{bottom:152.380000pt;}
.y112{bottom:152.549589pt;}
.y142{bottom:153.712000pt;}
.y262{bottom:155.018667pt;}
.y9c{bottom:156.078667pt;}
.yf8{bottom:157.306927pt;}
.y298{bottom:158.293333pt;}
.y23e{bottom:158.576000pt;}
.y10e{bottom:158.878667pt;}
.y53{bottom:160.332000pt;}
.yfd{bottom:160.526411pt;}
.y79{bottom:161.360000pt;}
.y1e5{bottom:162.625333pt;}
.y165{bottom:162.998667pt;}
.y2d{bottom:163.425333pt;}
.y116{bottom:163.858715pt;}
.yb2{bottom:165.589754pt;}
.y26f{bottom:168.301333pt;}
.yf7{bottom:169.379991pt;}
.y186{bottom:170.977333pt;}
.y141{bottom:172.309333pt;}
.yf9{bottom:173.404346pt;}
.y261{bottom:173.616000pt;}
.yd8{bottom:174.265654pt;}
.y9b{bottom:174.676000pt;}
.yf5{bottom:175.818958pt;}
.y297{bottom:176.889333pt;}
.y23d{bottom:177.173333pt;}
.y1cc{bottom:177.305333pt;}
.yb1{bottom:177.617073pt;}
.y52{bottom:178.929333pt;}
.y78{bottom:179.956000pt;}
.y164{bottom:181.594667pt;}
.y2c{bottom:182.022667pt;}
.y115{bottom:183.867170pt;}
.y2c7{bottom:186.802667pt;}
.y26e{bottom:186.898667pt;}
.yfc{bottom:187.087151pt;}
.y1e4{bottom:188.428000pt;}
.y185{bottom:189.574667pt;}
.y140{bottom:190.906667pt;}
.y124{bottom:191.696565pt;}
.yee{bottom:192.086667pt;}
.y260{bottom:192.212000pt;}
.y205{bottom:192.613333pt;}
.ydd{bottom:192.699880pt;}
.y9a{bottom:193.272000pt;}
.yc5{bottom:194.798957pt;}
.y296{bottom:195.486667pt;}
.y23c{bottom:195.769333pt;}
.y51{bottom:197.525333pt;}
.y77{bottom:198.553333pt;}
.y163{bottom:200.192000pt;}
.y114{bottom:200.395892pt;}
.y2b{bottom:200.620000pt;}
.y1cb{bottom:203.108000pt;}
.y123{bottom:204.745556pt;}
.y2c6{bottom:205.398667pt;}
.y26d{bottom:205.496000pt;}
.ydc{bottom:205.867184pt;}
.y1e3{bottom:207.025333pt;}
.y1a5{bottom:207.370667pt;}
.y184{bottom:208.170667pt;}
.y13f{bottom:209.502667pt;}
.y25f{bottom:210.809333pt;}
.y204{bottom:211.210667pt;}
.y99{bottom:211.869333pt;}
.y113{bottom:213.444884pt;}
.y295{bottom:214.084000pt;}
.y23b{bottom:214.366667pt;}
.y50{bottom:216.122667pt;}
.ycf{bottom:217.988000pt;}
.y2a{bottom:219.217333pt;}
.y1ca{bottom:221.704000pt;}
.y2c5{bottom:223.996000pt;}
.y26c{bottom:224.093333pt;}
.y162{bottom:224.102667pt;}
.y1e2{bottom:225.622667pt;}
.y1a4{bottom:225.966667pt;}
.y183{bottom:226.768000pt;}
.y117{bottom:227.363809pt;}
.yb8{bottom:227.444537pt;}
.y13e{bottom:228.100000pt;}
.y121{bottom:229.103674pt;}
.y25e{bottom:229.406667pt;}
.y203{bottom:229.808000pt;}
.y76{bottom:230.434667pt;}
.y98{bottom:230.466667pt;}
.ydf{bottom:232.201793pt;}
.y23a{bottom:232.964000pt;}
.yc6{bottom:233.458196pt;}
.yfa{bottom:234.574536pt;}
.y4f{bottom:234.720000pt;}
.yce{bottom:236.585333pt;}
.y29{bottom:237.813333pt;}
.y106{bottom:240.208632pt;}
.y1c9{bottom:240.301333pt;}
.yb7{bottom:240.330950pt;}
.y2c4{bottom:242.593333pt;}
.y26b{bottom:242.689333pt;}
.y161{bottom:242.698667pt;}
.y1e1{bottom:244.218667pt;}
.y182{bottom:245.365333pt;}
.yde{bottom:245.369097pt;}
.yef{bottom:245.842729pt;}
.y294{bottom:245.964000pt;}
.y202{bottom:248.404000pt;}
.y75{bottom:249.030667pt;}
.y1a3{bottom:254.408000pt;}
.ycd{bottom:255.182667pt;}
.yf3{bottom:256.306051pt;}
.y28{bottom:256.410667pt;}
.y1c8{bottom:258.898667pt;}
.y97{bottom:259.690667pt;}
.y13b{bottom:259.970667pt;}
.y2c3{bottom:261.189333pt;}
.y25d{bottom:261.286667pt;}
.y160{bottom:261.296000pt;}
.y4e{bottom:262.401333pt;}
.y1e0{bottom:262.816000pt;}
.yb4{bottom:263.526493pt;}
.y293{bottom:264.561333pt;}
.y239{bottom:264.844000pt;}
.y13d{bottom:265.284000pt;}
.yb6{bottom:266.103776pt;}
.y201{bottom:267.001333pt;}
.y74{bottom:267.628000pt;}
.yda{bottom:269.070245pt;}
.yca{bottom:272.677333pt;}
.y1a2{bottom:273.005333pt;}
.y13a{bottom:273.254667pt;}
.ycc{bottom:273.778667pt;}
.y181{bottom:274.589333pt;}
.yb0{bottom:274.694718pt;}
.yf2{bottom:274.818082pt;}
.y27{bottom:275.008000pt;}
.yd7{bottom:276.092807pt;}
.yb3{bottom:276.412906pt;}
.y1c7{bottom:277.494667pt;}
.y96{bottom:278.286667pt;}
.y2c2{bottom:279.786667pt;}
.y25c{bottom:279.884000pt;}
.y15f{bottom:279.893333pt;}
.y4d{bottom:280.998667pt;}
.y1df{bottom:281.413333pt;}
.y108{bottom:282.061920pt;}
.yd9{bottom:282.237549pt;}
.y292{bottom:283.158667pt;}
.y238{bottom:283.441333pt;}
.y13c{bottom:283.881333pt;}
.y200{bottom:285.598667pt;}
.yc9{bottom:285.960000pt;}
.y73{bottom:286.225333pt;}
.y139{bottom:286.538667pt;}
.yb9{bottom:287.581131pt;}
.yf1{bottom:290.110630pt;}
.y1a1{bottom:291.602667pt;}
.ycb{bottom:292.376000pt;}
.y180{bottom:293.185333pt;}
.y26{bottom:293.604000pt;}
.ye0{bottom:293.649213pt;}
.y107{bottom:294.134984pt;}
.y1c6{bottom:296.092000pt;}
.y95{bottom:296.884000pt;}
.y2c1{bottom:298.384000pt;}
.y25b{bottom:298.480000pt;}
.y15e{bottom:298.489333pt;}
.yc8{bottom:299.244000pt;}
.y4c{bottom:299.594667pt;}
.y138{bottom:299.821333pt;}
.y1de{bottom:300.009333pt;}
.y291{bottom:301.754667pt;}
.y237{bottom:302.038667pt;}
.yf0{bottom:302.183693pt;}
.y206{bottom:304.194667pt;}
.y1ff{bottom:304.196000pt;}
.y72{bottom:304.821333pt;}
.y26a{bottom:311.764000pt;}
.y17f{bottom:311.782667pt;}
.y25{bottom:312.201333pt;}
.yc7{bottom:312.526667pt;}
.y137{bottom:313.105333pt;}
.y1c5{bottom:314.689333pt;}
.yf4{bottom:315.061628pt;}
.y105{bottom:316.671370pt;}
.y2c0{bottom:316.981333pt;}
.y25a{bottom:317.077333pt;}
.y15d{bottom:317.086667pt;}
.y4b{bottom:318.192000pt;}
.y1dd{bottom:318.606667pt;}
.y1a0{bottom:320.042667pt;}
.y290{bottom:320.352000pt;}
.y236{bottom:320.634667pt;}
.y1fe{bottom:322.792000pt;}
.y71{bottom:323.418667pt;}
.y94{bottom:326.108000pt;}
.y269{bottom:330.361333pt;}
.y17e{bottom:330.380000pt;}
.y24{bottom:330.798667pt;}
.y136{bottom:331.702667pt;}
.y1c4{bottom:333.285333pt;}
.y2bf{bottom:335.577333pt;}
.y259{bottom:335.674667pt;}
.y15c{bottom:335.684000pt;}
.y4a{bottom:336.789333pt;}
.y1dc{bottom:337.204000pt;}
.y19f{bottom:338.640000pt;}
.y28f{bottom:338.949333pt;}
.y235{bottom:339.232000pt;}
.y1fd{bottom:341.389333pt;}
.y70{bottom:342.016000pt;}
.y93{bottom:344.705333pt;}
.ya9{bottom:346.019217pt;}
.y268{bottom:348.957333pt;}
.y17d{bottom:348.976000pt;}
.y23{bottom:349.394667pt;}
.y1c3{bottom:351.882667pt;}
.y2be{bottom:354.174667pt;}
.y258{bottom:354.272000pt;}
.y1db{bottom:355.800000pt;}
.y28e{bottom:357.545333pt;}
.y234{bottom:357.829333pt;}
.y15b{bottom:359.594667pt;}
.y1fc{bottom:359.986667pt;}
.y6f{bottom:360.612000pt;}
.y135{bottom:360.926667pt;}
.y92{bottom:363.301333pt;}
.y49{bottom:364.470667pt;}
.y19e{bottom:367.081333pt;}
.y267{bottom:367.554667pt;}
.y1f{bottom:367.865333pt;}
.y22{bottom:367.992000pt;}
.y1c2{bottom:370.480000pt;}
.y2bd{bottom:372.772000pt;}
.y29e{bottom:372.868000pt;}
.y1da{bottom:374.397333pt;}
.y233{bottom:376.425333pt;}
.y15a{bottom:378.190667pt;}
.y1fb{bottom:378.582667pt;}
.y134{bottom:379.522667pt;}
.y17c{bottom:380.857333pt;}
.y1e{bottom:381.148000pt;}
.y91{bottom:381.898667pt;}
.y48{bottom:383.068000pt;}
.y19d{bottom:385.678667pt;}
.y257{bottom:386.152000pt;}
.y21{bottom:386.589333pt;}
.y1c1{bottom:389.077333pt;}
.y28d{bottom:389.426667pt;}
.y6e{bottom:389.836000pt;}
.y2bc{bottom:391.368000pt;}
.y29d{bottom:391.465333pt;}
.y1d9{bottom:392.994667pt;}
.y1d{bottom:394.432000pt;}
.y232{bottom:395.022667pt;}
.y159{bottom:396.788000pt;}
.y1f9{bottom:397.180000pt;}
.y17b{bottom:399.454667pt;}
.y90{bottom:400.496000pt;}
.y47{bottom:401.665333pt;}
.y133{bottom:403.433333pt;}
.y19c{bottom:404.276000pt;}
.y256{bottom:404.749333pt;}
.y20{bottom:405.186667pt;}
.y1c0{bottom:407.673333pt;}
.y28c{bottom:408.022667pt;}
.y6d{bottom:408.433333pt;}
.y2bb{bottom:409.965333pt;}
.y1c{bottom:411.573333pt;}
.y1d8{bottom:411.592000pt;}
.y1f8{bottom:415.777333pt;}
.y46{bottom:420.261333pt;}
.y132{bottom:422.030667pt;}
.y255{bottom:423.345333pt;}
.y1b{bottom:423.782667pt;}
.y158{bottom:426.012000pt;}
.y1bf{bottom:426.270667pt;}
.y28b{bottom:426.620000pt;}
.y231{bottom:426.902667pt;}
.y6c{bottom:427.030667pt;}
.y2ba{bottom:428.562667pt;}
.y8f{bottom:429.718667pt;}
.y1d7{bottom:430.188000pt;}
.y19b{bottom:431.934667pt;}
.y1fa{bottom:434.373333pt;}
.y1f7{bottom:434.374667pt;}
.y17a{bottom:436.638667pt;}
.y45{bottom:438.858667pt;}
.y254{bottom:441.942667pt;}
.y1a{bottom:442.380000pt;}
.y157{bottom:444.608000pt;}
.y1be{bottom:444.868000pt;}
.y28a{bottom:445.217333pt;}
.y230{bottom:445.500000pt;}
.y6b{bottom:445.626667pt;}
.y131{bottom:445.940000pt;}
.y2b9{bottom:447.158667pt;}
.y8e{bottom:448.316000pt;}
.y1d6{bottom:448.785333pt;}
.y179{bottom:455.236000pt;}
.y44{bottom:457.456000pt;}
.y1f6{bottom:460.176000pt;}
.y253{bottom:460.540000pt;}
.y19{bottom:460.977333pt;}
.y1bd{bottom:463.464000pt;}
.y289{bottom:463.813333pt;}
.y22f{bottom:464.097333pt;}
.y6a{bottom:464.224000pt;}
.y130{bottom:464.537333pt;}
.y2b8{bottom:465.756000pt;}
.y8d{bottom:466.913333pt;}
.y1d5{bottom:467.382667pt;}
.y19a{bottom:468.781333pt;}
.y156{bottom:476.489333pt;}
.y252{bottom:479.136000pt;}
.y178{bottom:479.145333pt;}
.y18{bottom:479.573333pt;}
.y1bc{bottom:482.061333pt;}
.y288{bottom:482.410667pt;}
.y22e{bottom:482.693333pt;}
.y2b7{bottom:484.353333pt;}
.y43{bottom:485.481333pt;}
.y8c{bottom:485.510667pt;}
.y1d4{bottom:485.978667pt;}
.y199{bottom:487.378667pt;}
.y12f{bottom:493.761333pt;}
.y155{bottom:495.086667pt;}
.y251{bottom:497.733333pt;}
.y177{bottom:497.742667pt;}
.y17{bottom:498.170667pt;}
.y1bb{bottom:500.658667pt;}
.y287{bottom:501.008000pt;}
.y22d{bottom:501.290667pt;}
.y2b6{bottom:502.950667pt;}
.y42{bottom:504.077333pt;}
.y8b{bottom:504.106667pt;}
.y1d3{bottom:504.576000pt;}
.y198{bottom:505.976000pt;}
.y266{bottom:511.017333pt;}
.y12e{bottom:512.358667pt;}
.y154{bottom:513.682667pt;}
.y250{bottom:516.330667pt;}
.y176{bottom:516.340000pt;}
.y16{bottom:516.768000pt;}
.y1ba{bottom:519.254667pt;}
.y286{bottom:519.605333pt;}
.y22c{bottom:519.888000pt;}
.y67{bottom:521.404000pt;}
.y2b5{bottom:521.546667pt;}
.y41{bottom:522.674667pt;}
.y1d2{bottom:523.173333pt;}
.y197{bottom:524.572000pt;}
.y265{bottom:529.613333pt;}
.y1af{bottom:532.280000pt;}
.y24f{bottom:534.926667pt;}
.y15{bottom:535.364000pt;}
.y8a{bottom:535.988000pt;}
.y1b9{bottom:537.852000pt;}
.y285{bottom:538.201333pt;}
.y22b{bottom:538.485333pt;}
.y66{bottom:540.001333pt;}
.y2b4{bottom:540.144000pt;}
.y175{bottom:540.250667pt;}
.y40{bottom:541.272000pt;}
.y1f5{bottom:541.769333pt;}
.y196{bottom:543.169333pt;}
.y12d{bottom:544.238667pt;}
.y264{bottom:548.210667pt;}
.y1d1{bottom:548.976000pt;}
.y153{bottom:550.868000pt;}
.y1ae{bottom:550.877333pt;}
.y29c{bottom:553.524000pt;}
.y89{bottom:554.584000pt;}
.y1b8{bottom:556.449333pt;}
.y284{bottom:556.798667pt;}
.y22a{bottom:557.081333pt;}
.yed{bottom:557.412000pt;}
.y65{bottom:558.598667pt;}
.y2b3{bottom:558.741333pt;}
.y174{bottom:558.846667pt;}
.y3f{bottom:559.869333pt;}
.y1f4{bottom:560.366667pt;}
.y12c{bottom:562.836000pt;}
.y24e{bottom:566.808000pt;}
.y14{bottom:568.290667pt;}
.y152{bottom:569.464000pt;}
.y1ad{bottom:569.473333pt;}
.yec{bottom:570.696000pt;}
.y195{bottom:571.610667pt;}
.y29b{bottom:572.121333pt;}
.y88{bottom:573.181333pt;}
.y1d0{bottom:574.777333pt;}
.y1b7{bottom:575.046667pt;}
.y229{bottom:575.678667pt;}
.y64{bottom:577.194667pt;}
.y2b2{bottom:577.337333pt;}
.y173{bottom:577.444000pt;}
.y3e{bottom:578.465333pt;}
.y1f3{bottom:578.964000pt;}
.y12b{bottom:581.432000pt;}
.yeb{bottom:583.980000pt;}
.y24d{bottom:585.404000pt;}
.y151{bottom:588.061333pt;}
.y283{bottom:588.678667pt;}
.y194{bottom:590.208000pt;}
.y1cf{bottom:593.374667pt;}
.y1b6{bottom:593.642667pt;}
.y228{bottom:594.276000pt;}
.y69{bottom:595.889333pt;}
.y2b1{bottom:595.934667pt;}
.y3d{bottom:597.062667pt;}
.y1f2{bottom:597.560000pt;}
.y1ac{bottom:598.697333pt;}
.y218{bottom:598.705333pt;}
.y12a{bottom:600.029333pt;}
.y63{bottom:602.997333pt;}
.y24c{bottom:604.001333pt;}
.y87{bottom:606.106667pt;}
.y172{bottom:606.668000pt;}
.y282{bottom:607.276000pt;}
.y193{bottom:608.804000pt;}
.y68{bottom:609.172000pt;}
.y13{bottom:611.349333pt;}
.y1ce{bottom:611.972000pt;}
.y1b5{bottom:612.240000pt;}
.y2b0{bottom:614.532000pt;}
.y1f1{bottom:616.157333pt;}
.y150{bottom:617.285333pt;}
.y1ab{bottom:617.294667pt;}
.y217{bottom:617.302667pt;}
.yd0{bottom:617.477204pt;}
.y129{bottom:618.626667pt;}
.y24b{bottom:622.598667pt;}
.y3c{bottom:625.004000pt;}
.y171{bottom:625.264000pt;}
.y281{bottom:625.873333pt;}
.y227{bottom:626.156000pt;}
.y12{bottom:627.289333pt;}
.y1cd{bottom:630.568000pt;}
.y1b4{bottom:630.837333pt;}
.y2af{bottom:633.128000pt;}
.y1f0{bottom:634.754667pt;}
.y14f{bottom:635.882667pt;}
.y1aa{bottom:635.890667pt;}
.y216{bottom:635.900000pt;}
.y192{bottom:637.245333pt;}
.y24a{bottom:641.196000pt;}
.y11{bottom:643.229333pt;}
.y280{bottom:644.469333pt;}
.y226{bottom:644.753333pt;}
.y62{bottom:644.812000pt;}
.y128{bottom:646.568000pt;}
.y86{bottom:649.165333pt;}
.y1b3{bottom:649.433333pt;}
.y127{bottom:649.889333pt;}
.y2ae{bottom:651.725333pt;}
.y1ef{bottom:653.350667pt;}
.y14e{bottom:654.478667pt;}
.y170{bottom:654.488000pt;}
.y215{bottom:654.496000pt;}
.y191{bottom:655.842667pt;}
.y10{bottom:659.169333pt;}
.y249{bottom:659.792000pt;}
.y27f{bottom:663.066667pt;}
.y126{bottom:663.172000pt;}
.y225{bottom:663.349333pt;}
.y61{bottom:663.409333pt;}
.y3b{bottom:664.453333pt;}
.y85{bottom:667.762667pt;}
.y2ad{bottom:670.322667pt;}
.y1ee{bottom:671.948000pt;}
.y14d{bottom:673.076000pt;}
.y16f{bottom:673.085333pt;}
.ya8{bottom:674.036000pt;}
.y190{bottom:674.440000pt;}
.yf{bottom:675.109333pt;}
.y1b2{bottom:675.236000pt;}
.y125{bottom:676.456000pt;}
.y263{bottom:678.389333pt;}
.y214{bottom:678.406667pt;}
.y27e{bottom:681.664000pt;}
.y224{bottom:681.946667pt;}
.y60{bottom:682.005333pt;}
.y3a{bottom:683.050667pt;}
.y1a9{bottom:683.712000pt;}
.y84{bottom:686.360000pt;}
.y2ac{bottom:688.920000pt;}
.y1ed{bottom:690.545333pt;}
.ye{bottom:691.050667pt;}
.y248{bottom:691.673333pt;}
.ya7{bottom:692.633333pt;}
.y29a{bottom:696.986667pt;}
.y213{bottom:697.004000pt;}
.y27d{bottom:700.261333pt;}
.y223{bottom:700.544000pt;}
.y5f{bottom:700.602667pt;}
.y1b1{bottom:701.038667pt;}
.y39{bottom:701.648000pt;}
.y18f{bottom:702.098667pt;}
.y14c{bottom:702.300000pt;}
.y16e{bottom:702.309333pt;}
.y83{bottom:704.956000pt;}
.yd{bottom:706.990667pt;}
.y2ab{bottom:707.516000pt;}
.y1ec{bottom:709.142667pt;}
.y111{bottom:709.948374pt;}
.y247{bottom:710.269333pt;}
.ya6{bottom:711.229333pt;}
.y212{bottom:715.600000pt;}
.y222{bottom:719.140000pt;}
.y5e{bottom:719.200000pt;}
.y1b0{bottom:719.636000pt;}
.y38{bottom:720.245333pt;}
.y14b{bottom:720.896000pt;}
.y16d{bottom:720.905333pt;}
.yc{bottom:722.930667pt;}
.y82{bottom:723.553333pt;}
.y2aa{bottom:726.113333pt;}
.y1eb{bottom:727.738667pt;}
.y246{bottom:728.866667pt;}
.ya5{bottom:729.826667pt;}
.y27c{bottom:732.141333pt;}
.y211{bottom:734.197333pt;}
.y221{bottom:737.737333pt;}
.y37{bottom:738.841333pt;}
.yb{bottom:738.870667pt;}
.y18e{bottom:738.946667pt;}
.y14a{bottom:739.493333pt;}
.y1a8{bottom:739.502667pt;}
.y81{bottom:742.150667pt;}
.y2a9{bottom:744.710667pt;}
.y1ea{bottom:746.336000pt;}
.y5d{bottom:747.141333pt;}
.y245{bottom:747.464000pt;}
.ya4{bottom:748.424000pt;}
.y27b{bottom:750.738667pt;}
.y16c{bottom:752.786667pt;}
.ya{bottom:754.810667pt;}
.y36{bottom:757.438667pt;}
.y18d{bottom:757.542667pt;}
.y1a7{bottom:758.100000pt;}
.y210{bottom:758.108000pt;}
.y80{bottom:760.746667pt;}
.y2a8{bottom:763.306667pt;}
.y149{bottom:763.404000pt;}
.y1e9{bottom:764.933333pt;}
.y244{bottom:766.060000pt;}
.ya3{bottom:767.020000pt;}
.y27a{bottom:769.334667pt;}
.y220{bottom:769.618667pt;}
.y9{bottom:770.750667pt;}
.y16b{bottom:771.382667pt;}
.y35{bottom:776.036000pt;}
.y18c{bottom:776.140000pt;}
.y20f{bottom:776.705333pt;}
.y7f{bottom:779.344000pt;}
.y2a7{bottom:781.904000pt;}
.y148{bottom:782.001333pt;}
.y1e8{bottom:783.529333pt;}
.y243{bottom:784.657333pt;}
.ya2{bottom:785.617333pt;}
.y8{bottom:786.692000pt;}
.y5c{bottom:787.314667pt;}
.y1a6{bottom:787.324000pt;}
.y279{bottom:787.932000pt;}
.y21f{bottom:788.214667pt;}
.y34{bottom:794.632000pt;}
.y20e{bottom:795.301333pt;}
.y7e{bottom:797.941333pt;}
.y2a6{bottom:800.501333pt;}
.y147{bottom:800.597333pt;}
.y1e7{bottom:802.126667pt;}
.y7{bottom:802.632000pt;}
.y242{bottom:803.254667pt;}
.y18b{bottom:804.081333pt;}
.ya1{bottom:804.214667pt;}
.y5b{bottom:805.910667pt;}
.y278{bottom:806.529333pt;}
.y21e{bottom:806.812000pt;}
.y16a{bottom:808.568000pt;}
.y33{bottom:813.229333pt;}
.y20d{bottom:813.898667pt;}
.y7d{bottom:816.537333pt;}
.y6{bottom:818.572000pt;}
.y2a5{bottom:819.097333pt;}
.y146{bottom:819.194667pt;}
.y241{bottom:821.852000pt;}
.ya0{bottom:822.810667pt;}
.y5a{bottom:824.508000pt;}
.y277{bottom:825.125333pt;}
.y21d{bottom:825.409333pt;}
.y169{bottom:827.165333pt;}
.y1e6{bottom:827.929333pt;}
.y32{bottom:831.826667pt;}
.y20c{bottom:832.496000pt;}
.y5{bottom:834.512000pt;}
.y7c{bottom:835.134667pt;}
.y2a4{bottom:837.694667pt;}
.y240{bottom:840.448000pt;}
.y9f{bottom:841.408000pt;}
.y59{bottom:843.105333pt;}
.y276{bottom:843.722667pt;}
.y18a{bottom:843.888000pt;}
.y21c{bottom:844.005333pt;}
.y168{bottom:848.418667pt;}
.y7b{bottom:853.732000pt;}
.y2a3{bottom:856.292000pt;}
.y20b{bottom:856.405333pt;}
.y23f{bottom:859.045333pt;}
.y9e{bottom:860.005333pt;}
.y58{bottom:861.701333pt;}
.y275{bottom:862.320000pt;}
.y189{bottom:862.484000pt;}
.y21b{bottom:862.602667pt;}
.y31{bottom:864.752000pt;}
.y167{bottom:867.016000pt;}
.y4{bottom:869.049333pt;}
.y7a{bottom:872.329333pt;}
.y2a2{bottom:874.888000pt;}
.y20a{bottom:875.002667pt;}
.y299{bottom:877.642667pt;}
.y145{bottom:880.298667pt;}
.y274{bottom:880.916000pt;}
.y188{bottom:881.081333pt;}
.y21a{bottom:881.200000pt;}
.y144{bottom:882.956000pt;}
.y166{bottom:885.612000pt;}
.y9d{bottom:887.946667pt;}
.y57{bottom:890.925333pt;}
.y209{bottom:893.600000pt;}
.y3{bottom:895.616000pt;}
.y143{bottom:896.238667pt;}
.y273{bottom:899.513333pt;}
.y2a1{bottom:900.690667pt;}
.y2cb{bottom:904.209333pt;}
.y30{bottom:906.865333pt;}
.y219{bottom:909.141333pt;}
.y56{bottom:909.522667pt;}
.y208{bottom:912.197333pt;}
.y2ca{bottom:917.493333pt;}
.y272{bottom:918.110667pt;}
.y2a0{bottom:919.288000pt;}
.y2{bottom:922.184000pt;}
.y55{bottom:928.120000pt;}
.y2c9{bottom:930.776000pt;}
.y29f{bottom:937.885333pt;}
.y2c8{bottom:944.060000pt;}
.y207{bottom:945.122667pt;}
.y271{bottom:946.052000pt;}
.y1{bottom:946.093333pt;}
.y2f{bottom:946.716000pt;}
.y2e{bottom:1002.773333pt;}
.h1a{height:18.134748pt;}
.h7{height:18.304617pt;}
.he{height:19.356466pt;}
.h20{height:19.600673pt;}
.h14{height:19.778388pt;}
.h1b{height:20.104481pt;}
.hf{height:21.458898pt;}
.h21{height:21.729630pt;}
.h15{height:21.926648pt;}
.h1c{height:24.935278pt;}
.h10{height:26.615141pt;}
.h1e{height:26.805975pt;}
.h22{height:26.950925pt;}
.h16{height:27.195284pt;}
.h1d{height:27.202122pt;}
.h12{height:28.611864pt;}
.h24{height:28.972840pt;}
.h11{height:29.034699pt;}
.h18{height:29.235530pt;}
.h23{height:29.401010pt;}
.h17{height:29.667582pt;}
.h8{height:30.945242pt;}
.h26{height:34.550664pt;}
.h3{height:34.813542pt;}
.h27{height:36.609234pt;}
.hc{height:38.415786pt;}
.h4{height:38.681455pt;}
.h5{height:38.947124pt;}
.hb{height:42.647308pt;}
.h29{height:45.206664pt;}
.h28{height:45.211997pt;}
.h9{height:46.099251pt;}
.h2{height:46.736862pt;}
.h25{height:48.572794pt;}
.h6{height:48.688666pt;}
.h1{height:56.084078pt;}
.ha{height:79.674600pt;}
.h1f{height:246.067359pt;}
.hd{height:304.333464pt;}
.h13{height:310.766706pt;}
.h19{height:332.366355pt;}
.h0{height:1056.000000pt;}
.w2{width:637.321784pt;}
.w1{width:637.603120pt;}
.w4{width:637.612800pt;}
.w3{width:637.617200pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.372074pt;}
.x20{left:10.117628pt;}
.x38{left:11.277764pt;}
.x1f{left:12.559065pt;}
.x26{left:14.506729pt;}
.x1e{left:15.600664pt;}
.x21{left:16.756143pt;}
.xb{left:20.191449pt;}
.x10{left:23.144585pt;}
.x7{left:24.057373pt;}
.x6{left:26.446729pt;}
.x9{left:30.554273pt;}
.x8{left:33.507409pt;}
.xa{left:36.084692pt;}
.x39{left:40.642977pt;}
.x37{left:43.736699pt;}
.x4c{left:47.220281pt;}
.x36{left:58.752572pt;}
.x3a{left:88.633405pt;}
.x1{left:96.000000pt;}
.x5{left:103.970667pt;}
.x4b{left:107.459839pt;}
.x2{left:111.940000pt;}
.x58{left:127.880000pt;}
.x59{left:143.821333pt;}
.x56{left:162.243762pt;}
.x53{left:174.789828pt;}
.x54{left:181.463839pt;}
.x46{left:197.529926pt;}
.x25{left:201.619609pt;}
.x2f{left:205.857839pt;}
.x24{left:208.367852pt;}
.x2a{left:209.533712pt;}
.xf{left:211.474142pt;}
.x29{left:213.634774pt;}
.x1c{left:215.621960pt;}
.x3b{left:216.633038pt;}
.x1d{left:218.132122pt;}
.x17{left:219.219417pt;}
.xe{left:221.783272pt;}
.x16{left:223.232994pt;}
.x4a{left:228.454580pt;}
.x48{left:241.194174pt;}
.x23{left:243.370936pt;}
.x51{left:253.206108pt;}
.x57{left:255.408126pt;}
.xd{left:259.878731pt;}
.x52{left:261.293769pt;}
.x5e{left:263.121333pt;}
.x50{left:269.327050pt;}
.x22{left:274.753011pt;}
.x1b{left:277.060615pt;}
.x47{left:283.726572pt;}
.x2e{left:291.664772pt;}
.xc{left:299.168871pt;}
.x15{left:316.135982pt;}
.x28{left:326.530697pt;}
.x70{left:339.121333pt;}
.x44{left:341.677278pt;}
.x45{left:343.022926pt;}
.x43{left:344.632667pt;}
.x67{left:353.460000pt;}
.x6c{left:355.013333pt;}
.x6a{left:367.061333pt;}
.x65{left:373.318667pt;}
.x68{left:377.716000pt;}
.x42{left:384.109067pt;}
.x5d{left:386.104000pt;}
.x40{left:403.161875pt;}
.x3f{left:425.786290pt;}
.x5a{left:428.550667pt;}
.x41{left:430.049594pt;}
.x4{left:435.192000pt;}
.x71{left:449.550667pt;}
.x2b{left:501.751851pt;}
.x18{left:505.203818pt;}
.x3c{left:514.372396pt;}
.x2c{left:524.081404pt;}
.x55{left:525.957222pt;}
.x19{left:527.057027pt;}
.x13{left:529.916204pt;}
.x3d{left:534.041429pt;}
.x27{left:540.910869pt;}
.x3{left:542.326667pt;}
.x14{left:543.527478pt;}
.x49{left:544.680816pt;}
.x12{left:548.668616pt;}
.x2d{left:554.064453pt;}
.x1a{left:556.400463pt;}
.x3e{left:561.532801pt;}
.x4f{left:572.063659pt;}
.x35{left:576.699588pt;}
.x4d{left:578.397857pt;}
.x31{left:580.321507pt;}
.x30{left:582.560054pt;}
.x33{left:586.408343pt;}
.x4e{left:588.157416pt;}
.x32{left:589.175087pt;}
.x34{left:591.589700pt;}
.x6e{left:619.218667pt;}
.x6d{left:625.766667pt;}
.x5b{left:628.436000pt;}
.x63{left:634.586667pt;}
.x6f{left:635.729333pt;}
.x61{left:637.908000pt;}
.x66{left:641.548000pt;}
.x60{left:644.549333pt;}
.x6b{left:645.652000pt;}
.x5f{left:647.870667pt;}
.x64{left:651.190667pt;}
.x69{left:655.668000pt;}
.x5c{left:694.233333pt;}
.x62{left:723.005333pt;}
}




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