
    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_93c177ede48c8e5e2a36443b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_483a202cddc0f574eb16e6bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_5cab4a691b471c01906c9f8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_3ebaba1dd79c99a091c665c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_d3347ee12f8cd9d217126b70.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_f4d7c9752257eb745071e6a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_7bf6dce0788add23d253be92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c231b127acda021836163ee3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_9f659bc696d585ae01a041c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894531;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_8eda340cadeb62220ec57e0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705078;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_f729c5a54c9560752c6ebf2d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966797;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_4fe8a830c1dfa42cf276ec8b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_b25fc2bf28814aaec93c38cf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0e450d1b4b3ba76bb78c8f16.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.711000;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_9c25356bba2b8ac1b5ab1f8a.woff2')format("woff");}.fff{font-family:fff;line-height:0.689453;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_2408500cb20c5737bb183f79.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.075195;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-16.200000px;}
.v5{vertical-align:-1.841004px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.841004px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:19.079496px;}
.v7{vertical-align:21.188282px;}
.ls27{letter-spacing:-16.500000px;}
.ls53{letter-spacing:-12.960000px;}
.ls32{letter-spacing:-10.845000px;}
.ls7c{letter-spacing:-10.800000px;}
.ls51{letter-spacing:-10.755000px;}
.ls6c{letter-spacing:-10.710000px;}
.ls6a{letter-spacing:-10.620000px;}
.ls7b{letter-spacing:-10.575000px;}
.ls55{letter-spacing:-10.530000px;}
.ls54{letter-spacing:-10.440000px;}
.ls69{letter-spacing:-10.215000px;}
.ls4d{letter-spacing:-9.990000px;}
.ls79{letter-spacing:-9.630000px;}
.ls4f{letter-spacing:-9.180000px;}
.ls50{letter-spacing:-9.090000px;}
.ls56{letter-spacing:-8.325000px;}
.ls6e{letter-spacing:-4.995000px;}
.ls6b{letter-spacing:-4.770000px;}
.ls68{letter-spacing:-4.365000px;}
.ls6{letter-spacing:-1.500000px;}
.lsb{letter-spacing:-1.320000px;}
.ls7{letter-spacing:-0.975000px;}
.lsc{letter-spacing:-0.300000px;}
.ls5{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.000600px;}
.ls60{letter-spacing:0.007200px;}
.ls5f{letter-spacing:0.007800px;}
.ls31{letter-spacing:0.009000px;}
.ls34{letter-spacing:0.009600px;}
.ls33{letter-spacing:0.010200px;}
.ls76{letter-spacing:0.031200px;}
.ls2{letter-spacing:0.042000px;}
.ls77{letter-spacing:0.045000px;}
.ls1e{letter-spacing:0.060000px;}
.ls1c{letter-spacing:0.066000px;}
.ls38{letter-spacing:0.079800px;}
.ls39{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.120000px;}
.ls66{letter-spacing:0.124800px;}
.ls14{letter-spacing:0.132000px;}
.ls65{letter-spacing:0.135000px;}
.ls64{letter-spacing:0.142200px;}
.ls4{letter-spacing:0.168000px;}
.ls1f{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.195600px;}
.ls18{letter-spacing:0.198000px;}
.ls62{letter-spacing:0.225000px;}
.ls63{letter-spacing:0.238200px;}
.ls1b{letter-spacing:0.240000px;}
.ls61{letter-spacing:0.247200px;}
.ls13{letter-spacing:0.264000px;}
.ls75{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.300000px;}
.ls4c{letter-spacing:0.315000px;}
.ls4b{letter-spacing:0.316200px;}
.ls17{letter-spacing:0.330000px;}
.ls48{letter-spacing:0.350400px;}
.ls46{letter-spacing:0.360000px;}
.ls57{letter-spacing:0.367200px;}
.ls47{letter-spacing:0.369600px;}
.ls45{letter-spacing:0.387000px;}
.ls15{letter-spacing:0.396000px;}
.ls9{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.424800px;}
.ls12{letter-spacing:0.462000px;}
.lse{letter-spacing:0.528000px;}
.ls3b{letter-spacing:0.540000px;}
.ls3c{letter-spacing:0.547200px;}
.ls3a{letter-spacing:0.550200px;}
.ls71{letter-spacing:0.585000px;}
.ls22{letter-spacing:0.594000px;}
.ls70{letter-spacing:0.598200px;}
.ls72{letter-spacing:0.600000px;}
.ls44{letter-spacing:0.630000px;}
.ls5e{letter-spacing:0.633000px;}
.ls5d{letter-spacing:0.652200px;}
.ls43{letter-spacing:0.655800px;}
.ls24{letter-spacing:0.660000px;}
.ls3e{letter-spacing:0.675000px;}
.ls3f{letter-spacing:0.697800px;}
.ls3d{letter-spacing:0.698400px;}
.ls52{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.726000px;}
.ls1d{letter-spacing:0.792000px;}
.ls4e{letter-spacing:0.840000px;}
.ls1a{letter-spacing:0.858000px;}
.ls35{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.924000px;}
.ls30{letter-spacing:0.990000px;}
.ls25{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.122000px;}
.ls20{letter-spacing:1.188000px;}
.ls5b{letter-spacing:1.200000px;}
.ls59{letter-spacing:1.200600px;}
.ls74{letter-spacing:1.204200px;}
.ls5a{letter-spacing:1.215000px;}
.ls73{letter-spacing:1.221600px;}
.ls21{letter-spacing:1.254000px;}
.ls49{letter-spacing:1.255200px;}
.ls4a{letter-spacing:1.260000px;}
.ls11{letter-spacing:1.320000px;}
.ls42{letter-spacing:1.380000px;}
.ls19{letter-spacing:1.386000px;}
.ls40{letter-spacing:1.390200px;}
.ls41{letter-spacing:1.395000px;}
.ls58{letter-spacing:1.440000px;}
.ls28{letter-spacing:1.518000px;}
.ls26{letter-spacing:1.650000px;}
.ls23{letter-spacing:1.716000px;}
.ls37{letter-spacing:1.800000px;}
.ls36{letter-spacing:1.812600px;}
.ls29{letter-spacing:1.980000px;}
.ls2b{letter-spacing:2.112000px;}
.ls2d{letter-spacing:2.442000px;}
.ls2e{letter-spacing:2.506800px;}
.ls67{letter-spacing:4.260000px;}
.ls6f{letter-spacing:6.780000px;}
.ls78{letter-spacing:7.080000px;}
.ls6d{letter-spacing:7.620000px;}
.ls2a{letter-spacing:8.380800px;}
.ls7a{letter-spacing:8.700000px;}
.ls1{letter-spacing:10.656000px;}
.ls3{letter-spacing:12.510000px;}
.ls8{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.ws21{word-spacing:-66.000000px;}
.wsc{word-spacing:-17.754000px;}
.ws25{word-spacing:-17.688000px;}
.ws29{word-spacing:-17.490000px;}
.ws22{word-spacing:-17.424000px;}
.ws9{word-spacing:-17.358000px;}
.wsb{word-spacing:-17.292000px;}
.ws2a{word-spacing:-17.226000px;}
.wsd{word-spacing:-17.160000px;}
.ws26{word-spacing:-17.028000px;}
.ws27{word-spacing:-16.962000px;}
.wse{word-spacing:-16.896000px;}
.ws28{word-spacing:-16.830000px;}
.ws24{word-spacing:-16.764000px;}
.ws20{word-spacing:-16.698000px;}
.ws23{word-spacing:-16.632000px;}
.wsa{word-spacing:-16.500000px;}
.ws44{word-spacing:-16.440000px;}
.ws37{word-spacing:-16.380000px;}
.ws3f{word-spacing:-16.260000px;}
.ws39{word-spacing:-15.660000px;}
.ws3c{word-spacing:-15.360000px;}
.ws41{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.000000px;}
.ws2d{word-spacing:-13.050000px;}
.ws36{word-spacing:-12.645000px;}
.ws3e{word-spacing:-12.510000px;}
.ws45{word-spacing:-12.465000px;}
.ws35{word-spacing:-11.925000px;}
.ws38{word-spacing:-11.880000px;}
.ws4e{word-spacing:-11.835000px;}
.ws34{word-spacing:-11.790000px;}
.ws3b{word-spacing:-11.610000px;}
.ws40{word-spacing:-11.565000px;}
.ws51{word-spacing:-11.520000px;}
.ws48{word-spacing:-11.475000px;}
.ws4b{word-spacing:-11.385000px;}
.ws30{word-spacing:-11.340000px;}
.ws53{word-spacing:-11.295000px;}
.ws2e{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.750000px;}
.ws0{word-spacing:-9.324000px;}
.ws2{word-spacing:-8.775000px;}
.ws13{word-spacing:-8.368200px;}
.ws19{word-spacing:-7.096234px;}
.ws46{word-spacing:-6.885000px;}
.ws4a{word-spacing:-6.480000px;}
.ws4d{word-spacing:-6.255000px;}
.ws1e{word-spacing:-2.476987px;}
.ws15{word-spacing:-2.242678px;}
.ws1a{word-spacing:-1.205021px;}
.ws10{word-spacing:-0.635983px;}
.ws4{word-spacing:0.000000px;}
.ws43{word-spacing:5.400000px;}
.ws31{word-spacing:6.975000px;}
.ws33{word-spacing:7.020000px;}
.ws2f{word-spacing:7.110000px;}
.ws2c{word-spacing:8.730000px;}
.ws4f{word-spacing:9.225000px;}
.ws1c{word-spacing:9.774058px;}
.ws47{word-spacing:9.810000px;}
.ws3d{word-spacing:9.990000px;}
.ws42{word-spacing:10.123800px;}
.ws50{word-spacing:10.170000px;}
.ws49{word-spacing:10.215000px;}
.ws4c{word-spacing:10.299600px;}
.ws32{word-spacing:10.305000px;}
.ws52{word-spacing:10.395000px;}
.ws2b{word-spacing:10.440000px;}
.ws3a{word-spacing:15.030000px;}
.ws6{word-spacing:47.742316px;}
.ws1b{word-spacing:140.987434px;}
.ws18{word-spacing:172.485338px;}
.ws17{word-spacing:180.753120px;}
.ws14{word-spacing:201.506256px;}
.wsf{word-spacing:223.129685px;}
.ws12{word-spacing:258.242652px;}
.ws8{word-spacing:277.722316px;}
.ws11{word-spacing:299.916288px;}
.ws7{word-spacing:317.682316px;}
.ws16{word-spacing:324.585742px;}
.ws1f{word-spacing:537.238440px;}
.ws1d{word-spacing:538.510406px;}
._4e{margin-left:-1683.019642px;}
._42{margin-left:-1660.125600px;}
._5{margin-left:-1116.189600px;}
._6{margin-left:-780.235800px;}
._7{margin-left:-756.559800px;}
._2c{margin-left:-16.540200px;}
._50{margin-left:-15.000000px;}
._b{margin-left:-13.618200px;}
._1{margin-left:-10.662600px;}
._9{margin-left:-9.324000px;}
._52{margin-left:-7.269000px;}
._53{margin-left:-5.895947px;}
._48{margin-left:-3.759374px;}
._44{margin-left:-2.070000px;}
._a{margin-left:-1.033200px;}
._8{width:1.722000px;}
._4{width:3.553200px;}
._3{width:4.662000px;}
._c{width:5.805474px;}
._17{width:7.494000px;}
._40{width:8.568000px;}
._3f{width:9.678000px;}
._2{width:11.634000px;}
._0{width:13.344000px;}
._51{width:14.350800px;}
._43{width:16.499400px;}
._4f{width:29.607000px;}
._41{width:44.932200px;}
._4a{width:92.017332px;}
._45{width:109.624450px;}
._4c{width:112.169902px;}
._3a{width:114.462316px;}
._11{width:176.082316px;}
._15{width:179.382316px;}
._39{width:182.802316px;}
._26{width:192.822316px;}
._24{width:201.102316px;}
._27{width:212.742316px;}
._25{width:216.162316px;}
._16{width:229.302316px;}
._1d{width:236.082316px;}
._2f{width:237.702316px;}
._21{width:241.062316px;}
._1f{width:251.082316px;}
._22{width:256.062316px;}
._23{width:267.762316px;}
._36{width:275.768716px;}
._4b{width:283.513231px;}
._f{width:296.082316px;}
._2d{width:302.742316px;}
._38{width:305.982316px;}
._29{width:309.402316px;}
._49{width:316.581341px;}
._14{width:322.662316px;}
._13{width:329.322316px;}
._1c{width:332.742316px;}
._10{width:336.042316px;}
._20{width:339.402316px;}
._1e{width:342.762316px;}
._28{width:346.062316px;}
._3d{width:347.682316px;}
._e{width:349.362316px;}
._33{width:356.082316px;}
._32{width:362.742316px;}
._12{width:366.042316px;}
._3e{width:369.342316px;}
._2e{width:372.702316px;}
._31{width:379.362316px;}
._19{width:386.082316px;}
._1a{width:392.742316px;}
._1b{width:396.042316px;}
._2a{width:399.402316px;}
._3b{width:402.702316px;}
._30{width:412.722316px;}
._18{width:416.082316px;}
._37{width:419.382316px;}
._d{width:422.682316px;}
._34{width:426.042316px;}
._35{width:429.342316px;}
._3c{width:446.082316px;}
._47{width:508.956569px;}
._4d{width:514.293655px;}
._46{width:586.064858px;}
._2b{width:1157.565600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.000000px;}
.fsf{font-size:33.472800px;}
.fsa{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fse{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y147{bottom:0.983250px;}
.y12c{bottom:1.510650px;}
.y13b{bottom:1.511250px;}
.y128{bottom:1.512300px;}
.y14c{bottom:1.515421px;}
.y13e{bottom:1.516350px;}
.y152{bottom:1.516372px;}
.y143{bottom:1.516522px;}
.y132{bottom:1.975350px;}
.y14d{bottom:8.314200px;}
.y149{bottom:8.775428px;}
.y151{bottom:12.495450px;}
.y142{bottom:12.495600px;}
.y14b{bottom:12.954750px;}
.y148{bottom:24.993000px;}
.y153{bottom:30.287850px;}
.y145{bottom:46.433001px;}
.y144{bottom:62.709150px;}
.y140{bottom:63.176676px;}
.y13f{bottom:84.682950px;}
.y215{bottom:85.038900px;}
.y1ec{bottom:85.039050px;}
.y1{bottom:85.039350px;}
.y39{bottom:85.039500px;}
.y199{bottom:85.039650px;}
.y16c{bottom:85.039800px;}
.y13c{bottom:85.136850px;}
.y139{bottom:101.355223px;}
.y138{bottom:112.334301px;}
.y14f{bottom:118.146825px;}
.y112{bottom:119.055000px;}
.y11{bottom:119.055150px;}
.yd5{bottom:119.552100px;}
.y92{bottom:119.806650px;}
.y1eb{bottom:120.312000px;}
.y214{bottom:120.374550px;}
.ye9{bottom:120.664950px;}
.ybd{bottom:120.803550px;}
.y1c9{bottom:120.804000px;}
.y16b{bottom:120.894150px;}
.y241{bottom:121.174050px;}
.y26d{bottom:121.174800px;}
.y67{bottom:122.614500px;}
.y137{bottom:123.313379px;}
.y198{bottom:129.603150px;}
.y1b2{bottom:129.604950px;}
.y10{bottom:131.055150px;}
.y136{bottom:134.300826px;}
.y111{bottom:136.908750px;}
.yd4{bottom:137.148600px;}
.y91{bottom:137.403150px;}
.y1ea{bottom:137.908500px;}
.y213{bottom:138.190050px;}
.ye8{bottom:138.261450px;}
.ybc{bottom:138.400050px;}
.y1c8{bottom:138.400500px;}
.y16a{bottom:138.490650px;}
.y240{bottom:138.989700px;}
.y26c{bottom:138.990300px;}
.y66{bottom:139.817250px;}
.y135{bottom:145.279904px;}
.y197{bottom:147.199650px;}
.y1b1{bottom:147.201450px;}
.yf{bottom:149.433000px;}
.yd3{bottom:154.745100px;}
.y110{bottom:154.762500px;}
.y90{bottom:154.999650px;}
.y1e9{bottom:155.505000px;}
.ybb{bottom:155.996550px;}
.y1c7{bottom:155.997000px;}
.y169{bottom:156.087150px;}
.y134{bottom:156.258983px;}
.y23f{bottom:156.805200px;}
.y26b{bottom:156.805800px;}
.y65{bottom:157.019850px;}
.y1b0{bottom:164.797950px;}
.ye{bottom:167.811000px;}
.yd2{bottom:172.341600px;}
.y133{bottom:172.543500px;}
.y8f{bottom:172.596150px;}
.y10f{bottom:172.616250px;}
.y130{bottom:173.003023px;}
.y1e8{bottom:173.101500px;}
.yba{bottom:173.593050px;}
.y196{bottom:173.593500px;}
.y212{bottom:173.600100px;}
.y168{bottom:173.683650px;}
.y23e{bottom:174.620700px;}
.y26a{bottom:174.621300px;}
.y64{bottom:174.835350px;}
.y1af{bottom:182.394450px;}
.ye7{bottom:182.513550px;}
.yd{bottom:184.062900px;}
.yd1{bottom:189.938100px;}
.y1e7{bottom:190.698000px;}
.yb9{bottom:191.189550px;}
.y195{bottom:191.190000px;}
.y167{bottom:191.280150px;}
.y63{bottom:192.038250px;}
.y23d{bottom:192.436200px;}
.y269{bottom:192.436800px;}
.y12f{bottom:194.969548px;}
.yc{bottom:195.243900px;}
.ye6{bottom:198.500550px;}
.y10e{bottom:199.267350px;}
.y1c6{bottom:199.987350px;}
.y1ae{bottom:199.990950px;}
.y12e{bottom:200.199673px;}
.yb{bottom:206.424900px;}
.y8e{bottom:207.787350px;}
.y1e6{bottom:208.294500px;}
.yb8{bottom:208.786050px;}
.y194{bottom:208.786500px;}
.y166{bottom:208.876650px;}
.y62{bottom:209.241000px;}
.y23c{bottom:210.251700px;}
.y268{bottom:210.252300px;}
.ye5{bottom:214.487550px;}
.yd0{bottom:216.331950px;}
.y10d{bottom:217.121100px;}
.y1c5{bottom:217.583850px;}
.y1ad{bottom:217.587450px;}
.ya{bottom:223.983900px;}
.y1e5{bottom:225.891000px;}
.yb7{bottom:226.382550px;}
.y193{bottom:226.383000px;}
.y211{bottom:226.386000px;}
.y61{bottom:226.443750px;}
.y165{bottom:226.473150px;}
.y12d{bottom:227.454900px;}
.y12a{bottom:227.916278px;}
.y23b{bottom:228.067200px;}
.y267{bottom:228.067800px;}
.ye4{bottom:230.474550px;}
.ycf{bottom:233.928450px;}
.y10c{bottom:234.974850px;}
.y9{bottom:235.164900px;}
.y1c4{bottom:235.180350px;}
.y1ac{bottom:235.183950px;}
.y1e4{bottom:243.487500px;}
.y60{bottom:243.646500px;}
.yb6{bottom:243.979050px;}
.y192{bottom:243.979500px;}
.y210{bottom:243.982500px;}
.y129{bottom:244.133850px;}
.y23a{bottom:245.882700px;}
.y266{bottom:245.883300px;}
.y8{bottom:246.345900px;}
.ye3{bottom:246.461400px;}
.y14e{bottom:249.427147px;}
.yce{bottom:251.524950px;}
.y1c3{bottom:252.776850px;}
.y1ab{bottom:252.780450px;}
.y10b{bottom:252.828600px;}
.y164{bottom:252.867000px;}
.y5f{bottom:260.849250px;}
.y1e3{bottom:261.084000px;}
.yb5{bottom:261.575550px;}
.y191{bottom:261.576000px;}
.y20f{bottom:261.579000px;}
.y8d{bottom:261.801600px;}
.ye2{bottom:262.448400px;}
.y239{bottom:263.698200px;}
.y265{bottom:263.698800px;}
.y126{bottom:266.096250px;}
.ycd{bottom:269.121450px;}
.y1c2{bottom:270.373350px;}
.y1aa{bottom:270.376950px;}
.y163{bottom:270.463500px;}
.y10a{bottom:270.682350px;}
.y38{bottom:274.338600px;}
.ye1{bottom:278.435400px;}
.y5e{bottom:278.664750px;}
.y1e2{bottom:278.680500px;}
.y8c{bottom:279.004200px;}
.yb4{bottom:279.172050px;}
.y190{bottom:279.172500px;}
.y20e{bottom:279.175500px;}
.y238{bottom:281.513700px;}
.y264{bottom:281.514450px;}
.ycc{bottom:286.717950px;}
.y1c1{bottom:287.969850px;}
.y1a9{bottom:287.973450px;}
.y162{bottom:288.060000px;}
.y109{bottom:288.536100px;}
.y37{bottom:289.786650px;}
.ye0{bottom:294.422400px;}
.y5d{bottom:295.867500px;}
.y8b{bottom:296.206950px;}
.y1e1{bottom:296.277000px;}
.yb3{bottom:296.768550px;}
.y18f{bottom:296.769000px;}
.y20d{bottom:296.772000px;}
.y237{bottom:299.329200px;}
.y263{bottom:299.329950px;}
.y36{bottom:300.982650px;}
.ycb{bottom:304.314450px;}
.y1c0{bottom:305.566350px;}
.y161{bottom:305.656500px;}
.y108{bottom:306.389850px;}
.ydf{bottom:310.409400px;}
.y35{bottom:312.178650px;}
.y5c{bottom:313.070250px;}
.y8a{bottom:313.409700px;}
.y1e0{bottom:313.873500px;}
.yb2{bottom:314.365050px;}
.y18e{bottom:314.365500px;}
.y1a8{bottom:314.367300px;}
.y20c{bottom:314.368350px;}
.y236{bottom:317.144700px;}
.y262{bottom:317.145450px;}
.yca{bottom:321.910950px;}
.y1bf{bottom:323.162850px;}
.y160{bottom:323.253000px;}
.y34{bottom:323.374650px;}
.y107{bottom:324.243750px;}
.yde{bottom:326.396400px;}
.y5b{bottom:330.273000px;}
.y89{bottom:330.612600px;}
.y1df{bottom:331.470000px;}
.yb1{bottom:331.961550px;}
.y18d{bottom:331.962000px;}
.y1a7{bottom:331.963800px;}
.y20b{bottom:331.965000px;}
.y33{bottom:334.570650px;}
.y235{bottom:334.960200px;}
.y261{bottom:334.960950px;}
.y1be{bottom:340.759350px;}
.y15f{bottom:340.849500px;}
.y32{bottom:345.766650px;}
.y88{bottom:347.815350px;}
.y5a{bottom:348.088500px;}
.yc9{bottom:348.304800px;}
.y1de{bottom:349.066500px;}
.y18c{bottom:349.558500px;}
.y1a6{bottom:349.560300px;}
.y20a{bottom:349.561500px;}
.y106{bottom:350.894700px;}
.y234{bottom:352.775700px;}
.y260{bottom:352.776300px;}
.y31{bottom:356.962650px;}
.yb0{bottom:358.355400px;}
.y15e{bottom:358.446000px;}
.y87{bottom:365.018100px;}
.y59{bottom:365.291250px;}
.yc8{bottom:365.901300px;}
.y1dd{bottom:366.663000px;}
.y1bd{bottom:367.153050px;}
.y18b{bottom:367.155000px;}
.y1a5{bottom:367.156800px;}
.y209{bottom:367.158000px;}
.y30{bottom:368.158650px;}
.y105{bottom:368.748600px;}
.y233{bottom:370.591200px;}
.y25f{bottom:370.591800px;}
.yaf{bottom:375.951900px;}
.y15d{bottom:376.042500px;}
.y2f{bottom:379.354650px;}
.y86{bottom:382.220850px;}
.y58{bottom:382.494000px;}
.yc7{bottom:383.497800px;}
.y1dc{bottom:384.259500px;}
.y1bc{bottom:384.749700px;}
.y1a4{bottom:384.753300px;}
.y208{bottom:384.754500px;}
.y104{bottom:386.602350px;}
.y232{bottom:388.406550px;}
.y25e{bottom:388.407300px;}
.y2e{bottom:390.550650px;}
.yae{bottom:393.548400px;}
.y18a{bottom:393.548700px;}
.y15c{bottom:393.639000px;}
.y85{bottom:399.423600px;}
.y57{bottom:399.696750px;}
.yc6{bottom:401.094300px;}
.y2d{bottom:401.746650px;}
.y1db{bottom:401.856000px;}
.y1bb{bottom:402.346050px;}
.y1a3{bottom:402.349800px;}
.y207{bottom:402.350850px;}
.y103{bottom:404.456100px;}
.y231{bottom:406.222200px;}
.y25d{bottom:406.222800px;}
.yad{bottom:411.144900px;}
.y189{bottom:411.145350px;}
.y123{bottom:411.148650px;}
.y15b{bottom:411.235500px;}
.y2c{bottom:412.942650px;}
.y84{bottom:416.626350px;}
.y56{bottom:416.899500px;}
.yc5{bottom:418.690800px;}
.y1da{bottom:419.452500px;}
.y1ba{bottom:419.942550px;}
.y1a2{bottom:419.946300px;}
.y206{bottom:419.947500px;}
.y102{bottom:422.309850px;}
.y230{bottom:424.037700px;}
.y25c{bottom:424.038450px;}
.y2b{bottom:424.138650px;}
.yac{bottom:428.741400px;}
.y188{bottom:428.741850px;}
.y122{bottom:428.745150px;}
.y15a{bottom:428.832000px;}
.y83{bottom:433.829100px;}
.y55{bottom:434.102250px;}
.yc4{bottom:436.287300px;}
.y1d9{bottom:437.049000px;}
.y1b9{bottom:437.539050px;}
.y1a1{bottom:437.542800px;}
.y205{bottom:437.544000px;}
.y101{bottom:440.163600px;}
.y22f{bottom:441.853200px;}
.y25b{bottom:441.853800px;}
.yab{bottom:446.337900px;}
.y187{bottom:446.338350px;}
.y121{bottom:446.341650px;}
.y159{bottom:446.428500px;}
.y2a{bottom:448.090500px;}
.y54{bottom:451.305000px;}
.y82{bottom:451.644600px;}
.yc3{bottom:453.883800px;}
.y1b8{bottom:455.135550px;}
.y1a0{bottom:455.139300px;}
.y204{bottom:455.140350px;}
.y100{bottom:458.017350px;}
.y22e{bottom:459.668700px;}
.y25a{bottom:459.669450px;}
.y29{bottom:463.538550px;}
.yaa{bottom:463.934400px;}
.y186{bottom:463.934850px;}
.y120{bottom:463.938150px;}
.y158{bottom:464.025000px;}
.y1d8{bottom:464.718450px;}
.y53{bottom:468.507750px;}
.y81{bottom:468.847350px;}
.yc2{bottom:471.480300px;}
.y1b7{bottom:472.732200px;}
.y19f{bottom:472.735800px;}
.y203{bottom:472.737000px;}
.y28{bottom:474.734550px;}
.yff{bottom:475.871100px;}
.y22d{bottom:477.484200px;}
.y259{bottom:477.484800px;}
.y185{bottom:481.531350px;}
.y11f{bottom:481.534650px;}
.y157{bottom:481.621500px;}
.y52{bottom:485.710500px;}
.y27{bottom:485.930550px;}
.y80{bottom:486.050100px;}
.yc1{bottom:489.076800px;}
.ya9{bottom:490.328250px;}
.y1b6{bottom:490.328550px;}
.y19e{bottom:490.332300px;}
.y202{bottom:490.333350px;}
.yfe{bottom:493.724850px;}
.y22c{bottom:495.299700px;}
.y258{bottom:495.300450px;}
.y26{bottom:497.126550px;}
.y184{bottom:499.127850px;}
.y11e{bottom:499.131150px;}
.y156{bottom:499.218000px;}
.y51{bottom:502.913250px;}
.y7f{bottom:503.252850px;}
.yc0{bottom:506.673300px;}
.ya8{bottom:507.924750px;}
.y1b5{bottom:507.925050px;}
.y19d{bottom:507.928800px;}
.y201{bottom:507.930000px;}
.y25{bottom:508.322550px;}
.y1d7{bottom:512.078700px;}
.y22b{bottom:513.115200px;}
.y257{bottom:513.115800px;}
.y183{bottom:516.724200px;}
.y11d{bottom:516.727650px;}
.y155{bottom:516.814500px;}
.y24{bottom:519.518550px;}
.y50{bottom:520.116000px;}
.yfd{bottom:520.375950px;}
.y7e{bottom:520.455600px;}
.ya7{bottom:525.521250px;}
.y1b4{bottom:525.521550px;}
.y19c{bottom:525.525300px;}
.y200{bottom:525.526500px;}
.y1d6{bottom:529.675200px;}
.y23{bottom:530.714550px;}
.y22a{bottom:530.930700px;}
.y256{bottom:530.931450px;}
.y182{bottom:534.320850px;}
.y11c{bottom:534.324150px;}
.y4f{bottom:537.318750px;}
.y7d{bottom:537.658350px;}
.yfc{bottom:538.229700px;}
.y22{bottom:541.910550px;}
.ya6{bottom:543.117750px;}
.y1b3{bottom:543.118050px;}
.y1ff{bottom:543.123000px;}
.y154{bottom:543.208350px;}
.y1d5{bottom:547.271700px;}
.y229{bottom:548.746050px;}
.y255{bottom:548.746800px;}
.ybf{bottom:549.224550px;}
.y19b{bottom:551.919150px;}
.y11b{bottom:551.920650px;}
.y21{bottom:553.106550px;}
.y4e{bottom:554.521500px;}
.y7c{bottom:554.861100px;}
.yfb{bottom:556.083450px;}
.ya5{bottom:560.714250px;}
.y181{bottom:560.714700px;}
.y1fe{bottom:560.719500px;}
.y20{bottom:564.302550px;}
.y1d4{bottom:564.868200px;}
.ybe{bottom:565.211550px;}
.y228{bottom:566.561700px;}
.y254{bottom:566.562450px;}
.y11a{bottom:569.517150px;}
.y4d{bottom:571.724250px;}
.y7b{bottom:572.063850px;}
.yfa{bottom:573.937200px;}
.y1f{bottom:575.498550px;}
.ya4{bottom:578.310750px;}
.y180{bottom:578.311050px;}
.y1fd{bottom:578.315850px;}
.y1d3{bottom:582.464700px;}
.y227{bottom:584.377050px;}
.y253{bottom:584.377800px;}
.y1e{bottom:586.694550px;}
.y119{bottom:587.113650px;}
.y4c{bottom:588.927000px;}
.y7a{bottom:589.266600px;}
.y125{bottom:591.024000px;}
.yf9{bottom:591.790950px;}
.y14a{bottom:592.075500px;}
.y17f{bottom:595.907550px;}
.y1d{bottom:597.890550px;}
.y1d2{bottom:600.061200px;}
.y226{bottom:602.192700px;}
.y252{bottom:602.193300px;}
.ya3{bottom:604.704600px;}
.y118{bottom:604.710150px;}
.y79{bottom:606.469350px;}
.y4b{bottom:606.742650px;}
.y1c{bottom:609.086550px;}
.yf8{bottom:609.644700px;}
.y17e{bottom:613.504050px;}
.y1fc{bottom:613.507050px;}
.y150{bottom:614.043000px;}
.y1d1{bottom:617.657700px;}
.y225{bottom:620.008050px;}
.y251{bottom:620.008800px;}
.ya2{bottom:622.301100px;}
.y117{bottom:622.306650px;}
.y4a{bottom:623.945400px;}
.y78{bottom:624.284850px;}
.y146{bottom:625.027500px;}
.yf7{bottom:627.498450px;}
.y17d{bottom:631.100550px;}
.y1d0{bottom:635.254200px;}
.y224{bottom:637.823700px;}
.y250{bottom:637.824300px;}
.ya1{bottom:639.897600px;}
.y116{bottom:639.903150px;}
.y49{bottom:641.148000px;}
.y77{bottom:641.487600px;}
.yf6{bottom:645.352350px;}
.y141{bottom:646.470000px;}
.y17c{bottom:648.697200px;}
.y1cf{bottom:652.850700px;}
.y223{bottom:655.639200px;}
.y24f{bottom:655.639950px;}
.ya0{bottom:657.494100px;}
.y115{bottom:657.499650px;}
.y48{bottom:658.350750px;}
.y76{bottom:658.690500px;}
.yf5{bottom:663.206100px;}
.y1fb{bottom:666.292950px;}
.y17b{bottom:666.293550px;}
.y13d{bottom:668.436000px;}
.y1ce{bottom:670.447200px;}
.y222{bottom:673.454700px;}
.y24e{bottom:673.455300px;}
.y9f{bottom:675.090600px;}
.y47{bottom:675.553500px;}
.y75{bottom:675.893100px;}
.yf4{bottom:681.059850px;}
.y1fa{bottom:683.889450px;}
.y17a{bottom:683.890200px;}
.y1b{bottom:684.062100px;}
.y13a{bottom:690.403500px;}
.y221{bottom:691.270050px;}
.y24d{bottom:691.270800px;}
.y9e{bottom:692.687100px;}
.y114{bottom:692.690850px;}
.y46{bottom:692.756400px;}
.y74{bottom:693.095850px;}
.y1cd{bottom:698.116650px;}
.yf3{bottom:698.913600px;}
.y1f9{bottom:701.485950px;}
.y179{bottom:701.486550px;}
.y1a{bottom:704.099100px;}
.y220{bottom:709.085700px;}
.y24c{bottom:709.086300px;}
.y45{bottom:709.959150px;}
.y9d{bottom:710.283600px;}
.y113{bottom:710.287200px;}
.y73{bottom:710.298600px;}
.y1f8{bottom:719.082300px;}
.ydd{bottom:719.082750px;}
.y178{bottom:719.083050px;}
.y19{bottom:720.086100px;}
.yf2{bottom:725.564700px;}
.y21f{bottom:726.901200px;}
.y24b{bottom:726.901950px;}
.y44{bottom:727.161900px;}
.y72{bottom:727.501350px;}
.y9c{bottom:727.880100px;}
.y18{bottom:736.073100px;}
.y1f7{bottom:736.678950px;}
.ydc{bottom:736.679250px;}
.y177{bottom:736.679700px;}
.yf1{bottom:743.418300px;}
.y43{bottom:744.364650px;}
.y21e{bottom:744.716700px;}
.y24a{bottom:744.717300px;}
.y71{bottom:745.316850px;}
.y9b{bottom:745.476600px;}
.y1cc{bottom:745.476900px;}
.y1f6{bottom:754.275450px;}
.ydb{bottom:754.275750px;}
.y176{bottom:754.276050px;}
.y131{bottom:756.303000px;}
.y17{bottom:756.807450px;}
.yf0{bottom:761.272200px;}
.y42{bottom:761.567250px;}
.y70{bottom:762.519600px;}
.y21d{bottom:762.532050px;}
.y249{bottom:762.532800px;}
.y9a{bottom:763.073100px;}
.y1cb{bottom:763.073400px;}
.y1f5{bottom:771.871800px;}
.yda{bottom:771.872250px;}
.y175{bottom:771.872550px;}
.y16{bottom:774.403950px;}
.yef{bottom:779.125950px;}
.y41{bottom:779.382900px;}
.y6f{bottom:779.722350px;}
.y21c{bottom:780.347700px;}
.y248{bottom:780.348300px;}
.y99{bottom:780.669600px;}
.y1ca{bottom:780.670050px;}
.y1f4{bottom:789.468450px;}
.yd9{bottom:789.468750px;}
.y19a{bottom:789.469050px;}
.y40{bottom:796.585650px;}
.y6e{bottom:796.925100px;}
.yee{bottom:796.979700px;}
.y21b{bottom:798.163200px;}
.y247{bottom:798.163950px;}
.y98{bottom:798.266100px;}
.y174{bottom:798.266400px;}
.y1f3{bottom:807.064950px;}
.yd8{bottom:807.065250px;}
.y15{bottom:809.008350px;}
.y12b{bottom:811.219500px;}
.y3f{bottom:813.788400px;}
.y6d{bottom:814.128000px;}
.yed{bottom:814.833450px;}
.y97{bottom:815.862600px;}
.y173{bottom:815.862900px;}
.y21a{bottom:815.978700px;}
.y246{bottom:815.979450px;}
.y1f2{bottom:824.661450px;}
.yd7{bottom:824.661750px;}
.y14{bottom:830.608200px;}
.y3e{bottom:830.991150px;}
.y6c{bottom:831.330750px;}
.yec{bottom:832.687200px;}
.y96{bottom:833.459100px;}
.y172{bottom:833.459400px;}
.y219{bottom:833.794200px;}
.y245{bottom:833.794950px;}
.y1f1{bottom:842.257800px;}
.yd6{bottom:842.258250px;}
.y127{bottom:844.167000px;}
.y3d{bottom:848.193900px;}
.y6b{bottom:848.533500px;}
.yeb{bottom:850.540950px;}
.y95{bottom:851.055600px;}
.y171{bottom:851.055900px;}
.y218{bottom:851.609550px;}
.y244{bottom:851.610300px;}
.y13{bottom:856.460250px;}
.y6a{bottom:865.736250px;}
.yea{bottom:868.394850px;}
.y1f0{bottom:868.651650px;}
.y94{bottom:868.652100px;}
.y170{bottom:868.652400px;}
.y217{bottom:869.425200px;}
.y243{bottom:869.425800px;}
.y12{bottom:881.960250px;}
.y69{bottom:882.939000px;}
.y3c{bottom:886.014900px;}
.y1ef{bottom:886.248300px;}
.y93{bottom:886.248600px;}
.y16f{bottom:886.248900px;}
.y124{bottom:887.028600px;}
.y216{bottom:887.240700px;}
.y242{bottom:887.241450px;}
.y5{bottom:920.367150px;}
.y1ee{bottom:931.877700px;}
.y3b{bottom:931.878150px;}
.y16e{bottom:931.878450px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y1ed{bottom:949.474200px;}
.y68{bottom:949.474500px;}
.y3a{bottom:949.474650px;}
.y16d{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h20{height:9.936000px;}
.h1e{height:10.459500px;}
.h17{height:10.461000px;}
.h4{height:19.602000px;}
.h22{height:20.919000px;}
.h1a{height:21.444000px;}
.h1b{height:23.257712px;}
.hb{height:24.114111px;}
.h16{height:24.133889px;}
.h18{height:25.974893px;}
.h21{height:26.008366px;}
.hf{height:28.813477px;}
.he{height:28.854492px;}
.hd{height:29.162109px;}
.h6{height:31.206000px;}
.h7{height:33.435000px;}
.h5{height:35.328000px;}
.hc{height:37.098633px;}
.h2{height:41.220703px;}
.h14{height:41.660156px;}
.h19{height:42.337208px;}
.h1d{height:42.370681px;}
.h12{height:44.033203px;}
.h1f{height:44.351460px;}
.h1c{height:44.445995px;}
.ha{height:44.793457px;}
.h10{height:45.278320px;}
.h13{height:45.342773px;}
.h11{height:45.826172px;}
.h23{height:48.436523px;}
.h9{height:49.464844px;}
.h24{height:53.818359px;}
.h8{height:62.490234px;}
.h3{height:104.850000px;}
.h15{height:275.110500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w4{width:275.625000px;}
.w3{width:455.541000px;}
.w2{width:456.586500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x15{left:5.230350px;}
.x29{left:12.554100px;}
.x2b{left:18.302850px;}
.x26{left:19.352700px;}
.x27{left:34.574456px;}
.x1e{left:47.597250px;}
.x23{left:56.037710px;}
.x22{left:62.297124px;}
.x1c{left:64.326203px;}
.x2c{left:65.407448px;}
.x2a{left:66.462044px;}
.x17{left:69.040350px;}
.x16{left:71.128800px;}
.x21{left:73.769926px;}
.x20{left:74.790847px;}
.x18{left:75.877169px;}
.x28{left:76.883250px;}
.x24{left:79.050260px;}
.x1a{left:87.867300px;}
.x25{left:109.313250px;}
.xd{left:110.551200px;}
.x1{left:113.476500px;}
.x7{left:116.939850px;}
.x1d{left:128.694398px;}
.x13{left:131.176200px;}
.x14{left:134.587500px;}
.x12{left:136.063050px;}
.x4{left:138.988350px;}
.x2d{left:146.692950px;}
.x2e{left:149.618250px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.x9{left:197.017350px;}
.xb{left:208.973550px;}
.x19{left:261.154500px;}
.xe{left:276.378000px;}
.x10{left:278.249850px;}
.x11{left:279.303300px;}
.x8{left:303.477600px;}
.xf{left:321.787950px;}
.xa{left:393.136500px;}
.x1f{left:421.543950px;}
.x1b{left:422.593950px;}
.x3{left:441.045750px;}
.xc{left:506.577450px;}
.x2{left:521.280900px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-14.400000pt;}
.v5{vertical-align:-1.636448pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.636448pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:16.959552pt;}
.v7{vertical-align:18.834029pt;}
.ls27{letter-spacing:-14.666667pt;}
.ls53{letter-spacing:-11.520000pt;}
.ls32{letter-spacing:-9.640000pt;}
.ls7c{letter-spacing:-9.600000pt;}
.ls51{letter-spacing:-9.560000pt;}
.ls6c{letter-spacing:-9.520000pt;}
.ls6a{letter-spacing:-9.440000pt;}
.ls7b{letter-spacing:-9.400000pt;}
.ls55{letter-spacing:-9.360000pt;}
.ls54{letter-spacing:-9.280000pt;}
.ls69{letter-spacing:-9.080000pt;}
.ls4d{letter-spacing:-8.880000pt;}
.ls79{letter-spacing:-8.560000pt;}
.ls4f{letter-spacing:-8.160000pt;}
.ls50{letter-spacing:-8.080000pt;}
.ls56{letter-spacing:-7.400000pt;}
.ls6e{letter-spacing:-4.440000pt;}
.ls6b{letter-spacing:-4.240000pt;}
.ls68{letter-spacing:-3.880000pt;}
.ls6{letter-spacing:-1.333333pt;}
.lsb{letter-spacing:-1.173333pt;}
.ls7{letter-spacing:-0.866667pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.000533pt;}
.ls60{letter-spacing:0.006400pt;}
.ls5f{letter-spacing:0.006933pt;}
.ls31{letter-spacing:0.008000pt;}
.ls34{letter-spacing:0.008533pt;}
.ls33{letter-spacing:0.009067pt;}
.ls76{letter-spacing:0.027733pt;}
.ls2{letter-spacing:0.037333pt;}
.ls77{letter-spacing:0.040000pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls1c{letter-spacing:0.058667pt;}
.ls38{letter-spacing:0.070933pt;}
.ls39{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls66{letter-spacing:0.110933pt;}
.ls14{letter-spacing:0.117333pt;}
.ls65{letter-spacing:0.120000pt;}
.ls64{letter-spacing:0.126400pt;}
.ls4{letter-spacing:0.149333pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.173867pt;}
.ls18{letter-spacing:0.176000pt;}
.ls62{letter-spacing:0.200000pt;}
.ls63{letter-spacing:0.211733pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls61{letter-spacing:0.219733pt;}
.ls13{letter-spacing:0.234667pt;}
.ls75{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls4c{letter-spacing:0.280000pt;}
.ls4b{letter-spacing:0.281067pt;}
.ls17{letter-spacing:0.293333pt;}
.ls48{letter-spacing:0.311467pt;}
.ls46{letter-spacing:0.320000pt;}
.ls57{letter-spacing:0.326400pt;}
.ls47{letter-spacing:0.328533pt;}
.ls45{letter-spacing:0.344000pt;}
.ls15{letter-spacing:0.352000pt;}
.ls9{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.377600pt;}
.ls12{letter-spacing:0.410667pt;}
.lse{letter-spacing:0.469333pt;}
.ls3b{letter-spacing:0.480000pt;}
.ls3c{letter-spacing:0.486400pt;}
.ls3a{letter-spacing:0.489067pt;}
.ls71{letter-spacing:0.520000pt;}
.ls22{letter-spacing:0.528000pt;}
.ls70{letter-spacing:0.531733pt;}
.ls72{letter-spacing:0.533333pt;}
.ls44{letter-spacing:0.560000pt;}
.ls5e{letter-spacing:0.562667pt;}
.ls5d{letter-spacing:0.579733pt;}
.ls43{letter-spacing:0.582933pt;}
.ls24{letter-spacing:0.586667pt;}
.ls3e{letter-spacing:0.600000pt;}
.ls3f{letter-spacing:0.620267pt;}
.ls3d{letter-spacing:0.620800pt;}
.ls52{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.645333pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls4e{letter-spacing:0.746667pt;}
.ls1a{letter-spacing:0.762667pt;}
.ls35{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.821333pt;}
.ls30{letter-spacing:0.880000pt;}
.ls25{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.997333pt;}
.ls20{letter-spacing:1.056000pt;}
.ls5b{letter-spacing:1.066667pt;}
.ls59{letter-spacing:1.067200pt;}
.ls74{letter-spacing:1.070400pt;}
.ls5a{letter-spacing:1.080000pt;}
.ls73{letter-spacing:1.085867pt;}
.ls21{letter-spacing:1.114667pt;}
.ls49{letter-spacing:1.115733pt;}
.ls4a{letter-spacing:1.120000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls42{letter-spacing:1.226667pt;}
.ls19{letter-spacing:1.232000pt;}
.ls40{letter-spacing:1.235733pt;}
.ls41{letter-spacing:1.240000pt;}
.ls58{letter-spacing:1.280000pt;}
.ls28{letter-spacing:1.349333pt;}
.ls26{letter-spacing:1.466667pt;}
.ls23{letter-spacing:1.525333pt;}
.ls37{letter-spacing:1.600000pt;}
.ls36{letter-spacing:1.611200pt;}
.ls29{letter-spacing:1.760000pt;}
.ls2b{letter-spacing:1.877333pt;}
.ls2d{letter-spacing:2.170667pt;}
.ls2e{letter-spacing:2.228267pt;}
.ls67{letter-spacing:3.786667pt;}
.ls6f{letter-spacing:6.026667pt;}
.ls78{letter-spacing:6.293333pt;}
.ls6d{letter-spacing:6.773333pt;}
.ls2a{letter-spacing:7.449600pt;}
.ls7a{letter-spacing:7.733333pt;}
.ls1{letter-spacing:9.472000pt;}
.ls3{letter-spacing:11.120000pt;}
.ls8{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.ws21{word-spacing:-58.666667pt;}
.wsc{word-spacing:-15.781333pt;}
.ws25{word-spacing:-15.722667pt;}
.ws29{word-spacing:-15.546667pt;}
.ws22{word-spacing:-15.488000pt;}
.ws9{word-spacing:-15.429333pt;}
.wsb{word-spacing:-15.370667pt;}
.ws2a{word-spacing:-15.312000pt;}
.wsd{word-spacing:-15.253333pt;}
.ws26{word-spacing:-15.136000pt;}
.ws27{word-spacing:-15.077333pt;}
.wse{word-spacing:-15.018667pt;}
.ws28{word-spacing:-14.960000pt;}
.ws24{word-spacing:-14.901333pt;}
.ws20{word-spacing:-14.842667pt;}
.ws23{word-spacing:-14.784000pt;}
.wsa{word-spacing:-14.666667pt;}
.ws44{word-spacing:-14.613333pt;}
.ws37{word-spacing:-14.560000pt;}
.ws3f{word-spacing:-14.453333pt;}
.ws39{word-spacing:-13.920000pt;}
.ws3c{word-spacing:-13.653333pt;}
.ws41{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws2d{word-spacing:-11.600000pt;}
.ws36{word-spacing:-11.240000pt;}
.ws3e{word-spacing:-11.120000pt;}
.ws45{word-spacing:-11.080000pt;}
.ws35{word-spacing:-10.600000pt;}
.ws38{word-spacing:-10.560000pt;}
.ws4e{word-spacing:-10.520000pt;}
.ws34{word-spacing:-10.480000pt;}
.ws3b{word-spacing:-10.320000pt;}
.ws40{word-spacing:-10.280000pt;}
.ws51{word-spacing:-10.240000pt;}
.ws48{word-spacing:-10.200000pt;}
.ws4b{word-spacing:-10.120000pt;}
.ws30{word-spacing:-10.080000pt;}
.ws53{word-spacing:-10.040000pt;}
.ws2e{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.666667pt;}
.ws0{word-spacing:-8.288000pt;}
.ws2{word-spacing:-7.800000pt;}
.ws13{word-spacing:-7.438400pt;}
.ws19{word-spacing:-6.307763pt;}
.ws46{word-spacing:-6.120000pt;}
.ws4a{word-spacing:-5.760000pt;}
.ws4d{word-spacing:-5.560000pt;}
.ws1e{word-spacing:-2.201766pt;}
.ws15{word-spacing:-1.993491pt;}
.ws1a{word-spacing:-1.071130pt;}
.ws10{word-spacing:-0.565318pt;}
.ws4{word-spacing:0.000000pt;}
.ws43{word-spacing:4.800000pt;}
.ws31{word-spacing:6.200000pt;}
.ws33{word-spacing:6.240000pt;}
.ws2f{word-spacing:6.320000pt;}
.ws2c{word-spacing:7.760000pt;}
.ws4f{word-spacing:8.200000pt;}
.ws1c{word-spacing:8.688051pt;}
.ws47{word-spacing:8.720000pt;}
.ws3d{word-spacing:8.880000pt;}
.ws42{word-spacing:8.998933pt;}
.ws50{word-spacing:9.040000pt;}
.ws49{word-spacing:9.080000pt;}
.ws4c{word-spacing:9.155200pt;}
.ws32{word-spacing:9.160000pt;}
.ws52{word-spacing:9.240000pt;}
.ws2b{word-spacing:9.280000pt;}
.ws3a{word-spacing:13.360000pt;}
.ws6{word-spacing:42.437614pt;}
.ws1b{word-spacing:125.322163pt;}
.ws18{word-spacing:153.320301pt;}
.ws17{word-spacing:160.669440pt;}
.ws14{word-spacing:179.116672pt;}
.wsf{word-spacing:198.337498pt;}
.ws12{word-spacing:229.549024pt;}
.ws8{word-spacing:246.864281pt;}
.ws11{word-spacing:266.592256pt;}
.ws7{word-spacing:282.384281pt;}
.ws16{word-spacing:288.520659pt;}
.ws1f{word-spacing:477.545280pt;}
.ws1d{word-spacing:478.675917pt;}
._4e{margin-left:-1496.017460pt;}
._42{margin-left:-1475.667200pt;}
._5{margin-left:-992.168533pt;}
._6{margin-left:-693.542933pt;}
._7{margin-left:-672.497600pt;}
._2c{margin-left:-14.702400pt;}
._50{margin-left:-13.333333pt;}
._b{margin-left:-12.105067pt;}
._1{margin-left:-9.477867pt;}
._9{margin-left:-8.288000pt;}
._52{margin-left:-6.461333pt;}
._53{margin-left:-5.240842pt;}
._48{margin-left:-3.341666pt;}
._44{margin-left:-1.840000pt;}
._a{margin-left:-0.918400pt;}
._8{width:1.530667pt;}
._4{width:3.158400pt;}
._3{width:4.144000pt;}
._c{width:5.160421pt;}
._17{width:6.661333pt;}
._40{width:7.616000pt;}
._3f{width:8.602667pt;}
._2{width:10.341333pt;}
._0{width:11.861333pt;}
._51{width:12.756267pt;}
._43{width:14.666133pt;}
._4f{width:26.317333pt;}
._41{width:39.939733pt;}
._4a{width:81.793184pt;}
._45{width:97.443955pt;}
._4c{width:99.706579pt;}
._3a{width:101.744281pt;}
._11{width:156.517614pt;}
._15{width:159.450947pt;}
._39{width:162.490947pt;}
._26{width:171.397614pt;}
._24{width:178.757614pt;}
._27{width:189.104281pt;}
._25{width:192.144281pt;}
._16{width:203.824281pt;}
._1d{width:209.850947pt;}
._2f{width:211.290947pt;}
._21{width:214.277614pt;}
._1f{width:223.184281pt;}
._22{width:227.610947pt;}
._23{width:238.010947pt;}
._36{width:245.127747pt;}
._4b{width:252.011761pt;}
._f{width:263.184281pt;}
._2d{width:269.104281pt;}
._38{width:271.984281pt;}
._29{width:275.024281pt;}
._49{width:281.405636pt;}
._14{width:286.810947pt;}
._13{width:292.730947pt;}
._1c{width:295.770947pt;}
._10{width:298.704281pt;}
._20{width:301.690947pt;}
._1e{width:304.677614pt;}
._28{width:307.610947pt;}
._3d{width:309.050947pt;}
._e{width:310.544281pt;}
._33{width:316.517614pt;}
._32{width:322.437614pt;}
._12{width:325.370947pt;}
._3e{width:328.304281pt;}
._2e{width:331.290947pt;}
._31{width:337.210947pt;}
._19{width:343.184281pt;}
._1a{width:349.104281pt;}
._1b{width:352.037614pt;}
._2a{width:355.024281pt;}
._3b{width:357.957614pt;}
._30{width:366.864281pt;}
._18{width:369.850947pt;}
._37{width:372.784281pt;}
._d{width:375.717614pt;}
._34{width:378.704281pt;}
._35{width:381.637614pt;}
._3c{width:396.517614pt;}
._47{width:452.405839pt;}
._4d{width:457.149916pt;}
._46{width:520.946541pt;}
._2b{width:1028.947200pt;}
.fs3{font-size:24.000000pt;}
.fsf{font-size:29.753600pt;}
.fsa{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fse{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y147{bottom:0.874000pt;}
.y12c{bottom:1.342800pt;}
.y13b{bottom:1.343333pt;}
.y128{bottom:1.344267pt;}
.y14c{bottom:1.347041pt;}
.y13e{bottom:1.347867pt;}
.y152{bottom:1.347886pt;}
.y143{bottom:1.348019pt;}
.y132{bottom:1.755867pt;}
.y14d{bottom:7.390400pt;}
.y149{bottom:7.800381pt;}
.y151{bottom:11.107067pt;}
.y142{bottom:11.107200pt;}
.y14b{bottom:11.515333pt;}
.y148{bottom:22.216000pt;}
.y153{bottom:26.922533pt;}
.y145{bottom:41.273779pt;}
.y144{bottom:55.741467pt;}
.y140{bottom:56.157045pt;}
.y13f{bottom:75.273733pt;}
.y215{bottom:75.590133pt;}
.y1ec{bottom:75.590267pt;}
.y1{bottom:75.590533pt;}
.y39{bottom:75.590667pt;}
.y199{bottom:75.590800pt;}
.y16c{bottom:75.590933pt;}
.y13c{bottom:75.677200pt;}
.y139{bottom:90.093531pt;}
.y138{bottom:99.852712pt;}
.y14f{bottom:105.019400pt;}
.y112{bottom:105.826667pt;}
.y11{bottom:105.826800pt;}
.yd5{bottom:106.268533pt;}
.y92{bottom:106.494800pt;}
.y1eb{bottom:106.944000pt;}
.y214{bottom:106.999600pt;}
.ye9{bottom:107.257733pt;}
.ybd{bottom:107.380933pt;}
.y1c9{bottom:107.381333pt;}
.y16b{bottom:107.461467pt;}
.y241{bottom:107.710267pt;}
.y26d{bottom:107.710933pt;}
.y67{bottom:108.990667pt;}
.y137{bottom:109.611893pt;}
.y198{bottom:115.202800pt;}
.y1b2{bottom:115.204400pt;}
.y10{bottom:116.493467pt;}
.y136{bottom:119.378512pt;}
.y111{bottom:121.696667pt;}
.yd4{bottom:121.909867pt;}
.y91{bottom:122.136133pt;}
.y1ea{bottom:122.585333pt;}
.y213{bottom:122.835600pt;}
.ye8{bottom:122.899067pt;}
.ybc{bottom:123.022267pt;}
.y1c8{bottom:123.022667pt;}
.y16a{bottom:123.102800pt;}
.y240{bottom:123.546400pt;}
.y26c{bottom:123.546933pt;}
.y66{bottom:124.282000pt;}
.y135{bottom:129.137693pt;}
.y197{bottom:130.844133pt;}
.y1b1{bottom:130.845733pt;}
.yf{bottom:132.829333pt;}
.yd3{bottom:137.551200pt;}
.y110{bottom:137.566667pt;}
.y90{bottom:137.777467pt;}
.y1e9{bottom:138.226667pt;}
.ybb{bottom:138.663600pt;}
.y1c7{bottom:138.664000pt;}
.y169{bottom:138.744133pt;}
.y134{bottom:138.896874pt;}
.y23f{bottom:139.382400pt;}
.y26b{bottom:139.382933pt;}
.y65{bottom:139.573200pt;}
.y1b0{bottom:146.487067pt;}
.ye{bottom:149.165333pt;}
.yd2{bottom:153.192533pt;}
.y133{bottom:153.372000pt;}
.y8f{bottom:153.418800pt;}
.y10f{bottom:153.436667pt;}
.y130{bottom:153.780465pt;}
.y1e8{bottom:153.868000pt;}
.yba{bottom:154.304933pt;}
.y196{bottom:154.305333pt;}
.y212{bottom:154.311200pt;}
.y168{bottom:154.385467pt;}
.y23e{bottom:155.218400pt;}
.y26a{bottom:155.218933pt;}
.y64{bottom:155.409200pt;}
.y1af{bottom:162.128400pt;}
.ye7{bottom:162.234267pt;}
.yd{bottom:163.611467pt;}
.yd1{bottom:168.833867pt;}
.y1e7{bottom:169.509333pt;}
.yb9{bottom:169.946267pt;}
.y195{bottom:169.946667pt;}
.y167{bottom:170.026800pt;}
.y63{bottom:170.700667pt;}
.y23d{bottom:171.054400pt;}
.y269{bottom:171.054933pt;}
.y12f{bottom:173.306265pt;}
.yc{bottom:173.550133pt;}
.ye6{bottom:176.444933pt;}
.y10e{bottom:177.126533pt;}
.y1c6{bottom:177.766533pt;}
.y1ae{bottom:177.769733pt;}
.y12e{bottom:177.955265pt;}
.yb{bottom:183.488800pt;}
.y8e{bottom:184.699867pt;}
.y1e6{bottom:185.150667pt;}
.yb8{bottom:185.587600pt;}
.y194{bottom:185.588000pt;}
.y166{bottom:185.668133pt;}
.y62{bottom:185.992000pt;}
.y23c{bottom:186.890400pt;}
.y268{bottom:186.890933pt;}
.ye5{bottom:190.655600pt;}
.yd0{bottom:192.295067pt;}
.y10d{bottom:192.996533pt;}
.y1c5{bottom:193.407867pt;}
.y1ad{bottom:193.411067pt;}
.ya{bottom:199.096800pt;}
.y1e5{bottom:200.792000pt;}
.yb7{bottom:201.228933pt;}
.y193{bottom:201.229333pt;}
.y211{bottom:201.232000pt;}
.y61{bottom:201.283333pt;}
.y165{bottom:201.309467pt;}
.y12d{bottom:202.182133pt;}
.y12a{bottom:202.592247pt;}
.y23b{bottom:202.726400pt;}
.y267{bottom:202.726933pt;}
.ye4{bottom:204.866267pt;}
.ycf{bottom:207.936400pt;}
.y10c{bottom:208.866533pt;}
.y9{bottom:209.035467pt;}
.y1c4{bottom:209.049200pt;}
.y1ac{bottom:209.052400pt;}
.y1e4{bottom:216.433333pt;}
.y60{bottom:216.574667pt;}
.yb6{bottom:216.870267pt;}
.y192{bottom:216.870667pt;}
.y210{bottom:216.873333pt;}
.y129{bottom:217.007867pt;}
.y23a{bottom:218.562400pt;}
.y266{bottom:218.562933pt;}
.y8{bottom:218.974133pt;}
.ye3{bottom:219.076800pt;}
.y14e{bottom:221.713019pt;}
.yce{bottom:223.577733pt;}
.y1c3{bottom:224.690533pt;}
.y1ab{bottom:224.693733pt;}
.y10b{bottom:224.736533pt;}
.y164{bottom:224.770667pt;}
.y5f{bottom:231.866000pt;}
.y1e3{bottom:232.074667pt;}
.yb5{bottom:232.511600pt;}
.y191{bottom:232.512000pt;}
.y20f{bottom:232.514667pt;}
.y8d{bottom:232.712533pt;}
.ye2{bottom:233.287467pt;}
.y239{bottom:234.398400pt;}
.y265{bottom:234.398933pt;}
.y126{bottom:236.530000pt;}
.ycd{bottom:239.219067pt;}
.y1c2{bottom:240.331867pt;}
.y1aa{bottom:240.335067pt;}
.y163{bottom:240.412000pt;}
.y10a{bottom:240.606533pt;}
.y38{bottom:243.856533pt;}
.ye1{bottom:247.498133pt;}
.y5e{bottom:247.702000pt;}
.y1e2{bottom:247.716000pt;}
.y8c{bottom:248.003733pt;}
.yb4{bottom:248.152933pt;}
.y190{bottom:248.153333pt;}
.y20e{bottom:248.156000pt;}
.y238{bottom:250.234400pt;}
.y264{bottom:250.235067pt;}
.ycc{bottom:254.860400pt;}
.y1c1{bottom:255.973200pt;}
.y1a9{bottom:255.976400pt;}
.y162{bottom:256.053333pt;}
.y109{bottom:256.476533pt;}
.y37{bottom:257.588133pt;}
.ye0{bottom:261.708800pt;}
.y5d{bottom:262.993333pt;}
.y8b{bottom:263.295067pt;}
.y1e1{bottom:263.357333pt;}
.yb3{bottom:263.794267pt;}
.y18f{bottom:263.794667pt;}
.y20d{bottom:263.797333pt;}
.y237{bottom:266.070400pt;}
.y263{bottom:266.071067pt;}
.y36{bottom:267.540133pt;}
.ycb{bottom:270.501733pt;}
.y1c0{bottom:271.614533pt;}
.y161{bottom:271.694667pt;}
.y108{bottom:272.346533pt;}
.ydf{bottom:275.919467pt;}
.y35{bottom:277.492133pt;}
.y5c{bottom:278.284667pt;}
.y8a{bottom:278.586400pt;}
.y1e0{bottom:278.998667pt;}
.yb2{bottom:279.435600pt;}
.y18e{bottom:279.436000pt;}
.y1a8{bottom:279.437600pt;}
.y20c{bottom:279.438533pt;}
.y236{bottom:281.906400pt;}
.y262{bottom:281.907067pt;}
.yca{bottom:286.143067pt;}
.y1bf{bottom:287.255867pt;}
.y160{bottom:287.336000pt;}
.y34{bottom:287.444133pt;}
.y107{bottom:288.216667pt;}
.yde{bottom:290.130133pt;}
.y5b{bottom:293.576000pt;}
.y89{bottom:293.877867pt;}
.y1df{bottom:294.640000pt;}
.yb1{bottom:295.076933pt;}
.y18d{bottom:295.077333pt;}
.y1a7{bottom:295.078933pt;}
.y20b{bottom:295.080000pt;}
.y33{bottom:297.396133pt;}
.y235{bottom:297.742400pt;}
.y261{bottom:297.743067pt;}
.y1be{bottom:302.897200pt;}
.y15f{bottom:302.977333pt;}
.y32{bottom:307.348133pt;}
.y88{bottom:309.169200pt;}
.y5a{bottom:309.412000pt;}
.yc9{bottom:309.604267pt;}
.y1de{bottom:310.281333pt;}
.y18c{bottom:310.718667pt;}
.y1a6{bottom:310.720267pt;}
.y20a{bottom:310.721333pt;}
.y106{bottom:311.906400pt;}
.y234{bottom:313.578400pt;}
.y260{bottom:313.578933pt;}
.y31{bottom:317.300133pt;}
.yb0{bottom:318.538133pt;}
.y15e{bottom:318.618667pt;}
.y87{bottom:324.460533pt;}
.y59{bottom:324.703333pt;}
.yc8{bottom:325.245600pt;}
.y1dd{bottom:325.922667pt;}
.y1bd{bottom:326.358267pt;}
.y18b{bottom:326.360000pt;}
.y1a5{bottom:326.361600pt;}
.y209{bottom:326.362667pt;}
.y30{bottom:327.252133pt;}
.y105{bottom:327.776533pt;}
.y233{bottom:329.414400pt;}
.y25f{bottom:329.414933pt;}
.yaf{bottom:334.179467pt;}
.y15d{bottom:334.260000pt;}
.y2f{bottom:337.204133pt;}
.y86{bottom:339.751867pt;}
.y58{bottom:339.994667pt;}
.yc7{bottom:340.886933pt;}
.y1dc{bottom:341.564000pt;}
.y1bc{bottom:341.999733pt;}
.y1a4{bottom:342.002933pt;}
.y208{bottom:342.004000pt;}
.y104{bottom:343.646533pt;}
.y232{bottom:345.250267pt;}
.y25e{bottom:345.250933pt;}
.y2e{bottom:347.156133pt;}
.yae{bottom:349.820800pt;}
.y18a{bottom:349.821067pt;}
.y15c{bottom:349.901333pt;}
.y85{bottom:355.043200pt;}
.y57{bottom:355.286000pt;}
.yc6{bottom:356.528267pt;}
.y2d{bottom:357.108133pt;}
.y1db{bottom:357.205333pt;}
.y1bb{bottom:357.640933pt;}
.y1a3{bottom:357.644267pt;}
.y207{bottom:357.645200pt;}
.y103{bottom:359.516533pt;}
.y231{bottom:361.086400pt;}
.y25d{bottom:361.086933pt;}
.yad{bottom:365.462133pt;}
.y189{bottom:365.462533pt;}
.y123{bottom:365.465467pt;}
.y15b{bottom:365.542667pt;}
.y2c{bottom:367.060133pt;}
.y84{bottom:370.334533pt;}
.y56{bottom:370.577333pt;}
.yc5{bottom:372.169600pt;}
.y1da{bottom:372.846667pt;}
.y1ba{bottom:373.282267pt;}
.y1a2{bottom:373.285600pt;}
.y206{bottom:373.286667pt;}
.y102{bottom:375.386533pt;}
.y230{bottom:376.922400pt;}
.y25c{bottom:376.923067pt;}
.y2b{bottom:377.012133pt;}
.yac{bottom:381.103467pt;}
.y188{bottom:381.103867pt;}
.y122{bottom:381.106800pt;}
.y15a{bottom:381.184000pt;}
.y83{bottom:385.625867pt;}
.y55{bottom:385.868667pt;}
.yc4{bottom:387.810933pt;}
.y1d9{bottom:388.488000pt;}
.y1b9{bottom:388.923600pt;}
.y1a1{bottom:388.926933pt;}
.y205{bottom:388.928000pt;}
.y101{bottom:391.256533pt;}
.y22f{bottom:392.758400pt;}
.y25b{bottom:392.758933pt;}
.yab{bottom:396.744800pt;}
.y187{bottom:396.745200pt;}
.y121{bottom:396.748133pt;}
.y159{bottom:396.825333pt;}
.y2a{bottom:398.302667pt;}
.y54{bottom:401.160000pt;}
.y82{bottom:401.461867pt;}
.yc3{bottom:403.452267pt;}
.y1b8{bottom:404.564933pt;}
.y1a0{bottom:404.568267pt;}
.y204{bottom:404.569200pt;}
.y100{bottom:407.126533pt;}
.y22e{bottom:408.594400pt;}
.y25a{bottom:408.595067pt;}
.y29{bottom:412.034267pt;}
.yaa{bottom:412.386133pt;}
.y186{bottom:412.386533pt;}
.y120{bottom:412.389467pt;}
.y158{bottom:412.466667pt;}
.y1d8{bottom:413.083067pt;}
.y53{bottom:416.451333pt;}
.y81{bottom:416.753200pt;}
.yc2{bottom:419.093600pt;}
.y1b7{bottom:420.206400pt;}
.y19f{bottom:420.209600pt;}
.y203{bottom:420.210667pt;}
.y28{bottom:421.986267pt;}
.yff{bottom:422.996533pt;}
.y22d{bottom:424.430400pt;}
.y259{bottom:424.430933pt;}
.y185{bottom:428.027867pt;}
.y11f{bottom:428.030800pt;}
.y157{bottom:428.108000pt;}
.y52{bottom:431.742667pt;}
.y27{bottom:431.938267pt;}
.y80{bottom:432.044533pt;}
.yc1{bottom:434.734933pt;}
.ya9{bottom:435.847333pt;}
.y1b6{bottom:435.847600pt;}
.y19e{bottom:435.850933pt;}
.y202{bottom:435.851867pt;}
.yfe{bottom:438.866533pt;}
.y22c{bottom:440.266400pt;}
.y258{bottom:440.267067pt;}
.y26{bottom:441.890267pt;}
.y184{bottom:443.669200pt;}
.y11e{bottom:443.672133pt;}
.y156{bottom:443.749333pt;}
.y51{bottom:447.034000pt;}
.y7f{bottom:447.335867pt;}
.yc0{bottom:450.376267pt;}
.ya8{bottom:451.488667pt;}
.y1b5{bottom:451.488933pt;}
.y19d{bottom:451.492267pt;}
.y201{bottom:451.493333pt;}
.y25{bottom:451.842267pt;}
.y1d7{bottom:455.181067pt;}
.y22b{bottom:456.102400pt;}
.y257{bottom:456.102933pt;}
.y183{bottom:459.310400pt;}
.y11d{bottom:459.313467pt;}
.y155{bottom:459.390667pt;}
.y24{bottom:461.794267pt;}
.y50{bottom:462.325333pt;}
.yfd{bottom:462.556400pt;}
.y7e{bottom:462.627200pt;}
.ya7{bottom:467.130000pt;}
.y1b4{bottom:467.130267pt;}
.y19c{bottom:467.133600pt;}
.y200{bottom:467.134667pt;}
.y1d6{bottom:470.822400pt;}
.y23{bottom:471.746267pt;}
.y22a{bottom:471.938400pt;}
.y256{bottom:471.939067pt;}
.y182{bottom:474.951867pt;}
.y11c{bottom:474.954800pt;}
.y4f{bottom:477.616667pt;}
.y7d{bottom:477.918533pt;}
.yfc{bottom:478.426400pt;}
.y22{bottom:481.698267pt;}
.ya6{bottom:482.771333pt;}
.y1b3{bottom:482.771600pt;}
.y1ff{bottom:482.776000pt;}
.y154{bottom:482.851867pt;}
.y1d5{bottom:486.463733pt;}
.y229{bottom:487.774267pt;}
.y255{bottom:487.774933pt;}
.ybf{bottom:488.199600pt;}
.y19b{bottom:490.594800pt;}
.y11b{bottom:490.596133pt;}
.y21{bottom:491.650267pt;}
.y4e{bottom:492.908000pt;}
.y7c{bottom:493.209867pt;}
.yfb{bottom:494.296400pt;}
.ya5{bottom:498.412667pt;}
.y181{bottom:498.413067pt;}
.y1fe{bottom:498.417333pt;}
.y20{bottom:501.602267pt;}
.y1d4{bottom:502.105067pt;}
.ybe{bottom:502.410267pt;}
.y228{bottom:503.610400pt;}
.y254{bottom:503.611067pt;}
.y11a{bottom:506.237467pt;}
.y4d{bottom:508.199333pt;}
.y7b{bottom:508.501200pt;}
.yfa{bottom:510.166400pt;}
.y1f{bottom:511.554267pt;}
.ya4{bottom:514.054000pt;}
.y180{bottom:514.054267pt;}
.y1fd{bottom:514.058533pt;}
.y1d3{bottom:517.746400pt;}
.y227{bottom:519.446267pt;}
.y253{bottom:519.446933pt;}
.y1e{bottom:521.506267pt;}
.y119{bottom:521.878800pt;}
.y4c{bottom:523.490667pt;}
.y7a{bottom:523.792533pt;}
.y125{bottom:525.354667pt;}
.yf9{bottom:526.036400pt;}
.y14a{bottom:526.289333pt;}
.y17f{bottom:529.695600pt;}
.y1d{bottom:531.458267pt;}
.y1d2{bottom:533.387733pt;}
.y226{bottom:535.282400pt;}
.y252{bottom:535.282933pt;}
.ya3{bottom:537.515200pt;}
.y118{bottom:537.520133pt;}
.y79{bottom:539.083867pt;}
.y4b{bottom:539.326800pt;}
.y1c{bottom:541.410267pt;}
.yf8{bottom:541.906400pt;}
.y17e{bottom:545.336933pt;}
.y1fc{bottom:545.339600pt;}
.y150{bottom:545.816000pt;}
.y1d1{bottom:549.029067pt;}
.y225{bottom:551.118267pt;}
.y251{bottom:551.118933pt;}
.ya2{bottom:553.156533pt;}
.y117{bottom:553.161467pt;}
.y4a{bottom:554.618133pt;}
.y78{bottom:554.919867pt;}
.y146{bottom:555.580000pt;}
.yf7{bottom:557.776400pt;}
.y17d{bottom:560.978267pt;}
.y1d0{bottom:564.670400pt;}
.y224{bottom:566.954400pt;}
.y250{bottom:566.954933pt;}
.ya1{bottom:568.797867pt;}
.y116{bottom:568.802800pt;}
.y49{bottom:569.909333pt;}
.y77{bottom:570.211200pt;}
.yf6{bottom:573.646533pt;}
.y141{bottom:574.640000pt;}
.y17c{bottom:576.619733pt;}
.y1cf{bottom:580.311733pt;}
.y223{bottom:582.790400pt;}
.y24f{bottom:582.791067pt;}
.ya0{bottom:584.439200pt;}
.y115{bottom:584.444133pt;}
.y48{bottom:585.200667pt;}
.y76{bottom:585.502667pt;}
.yf5{bottom:589.516533pt;}
.y1fb{bottom:592.260400pt;}
.y17b{bottom:592.260933pt;}
.y13d{bottom:594.165333pt;}
.y1ce{bottom:595.953067pt;}
.y222{bottom:598.626400pt;}
.y24e{bottom:598.626933pt;}
.y9f{bottom:600.080533pt;}
.y47{bottom:600.492000pt;}
.y75{bottom:600.793867pt;}
.yf4{bottom:605.386533pt;}
.y1fa{bottom:607.901733pt;}
.y17a{bottom:607.902400pt;}
.y1b{bottom:608.055200pt;}
.y13a{bottom:613.692000pt;}
.y221{bottom:614.462267pt;}
.y24d{bottom:614.462933pt;}
.y9e{bottom:615.721867pt;}
.y114{bottom:615.725200pt;}
.y46{bottom:615.783467pt;}
.y74{bottom:616.085200pt;}
.y1cd{bottom:620.548133pt;}
.yf3{bottom:621.256533pt;}
.y1f9{bottom:623.543067pt;}
.y179{bottom:623.543600pt;}
.y1a{bottom:625.865867pt;}
.y220{bottom:630.298400pt;}
.y24c{bottom:630.298933pt;}
.y45{bottom:631.074800pt;}
.y9d{bottom:631.363200pt;}
.y113{bottom:631.366400pt;}
.y73{bottom:631.376533pt;}
.y1f8{bottom:639.184267pt;}
.ydd{bottom:639.184667pt;}
.y178{bottom:639.184933pt;}
.y19{bottom:640.076533pt;}
.yf2{bottom:644.946400pt;}
.y21f{bottom:646.134400pt;}
.y24b{bottom:646.135067pt;}
.y44{bottom:646.366133pt;}
.y72{bottom:646.667867pt;}
.y9c{bottom:647.004533pt;}
.y18{bottom:654.287200pt;}
.y1f7{bottom:654.825733pt;}
.ydc{bottom:654.826000pt;}
.y177{bottom:654.826400pt;}
.yf1{bottom:660.816267pt;}
.y43{bottom:661.657467pt;}
.y21e{bottom:661.970400pt;}
.y24a{bottom:661.970933pt;}
.y71{bottom:662.503867pt;}
.y9b{bottom:662.645867pt;}
.y1cc{bottom:662.646133pt;}
.y1f6{bottom:670.467067pt;}
.ydb{bottom:670.467333pt;}
.y176{bottom:670.467600pt;}
.y131{bottom:672.269333pt;}
.y17{bottom:672.717733pt;}
.yf0{bottom:676.686400pt;}
.y42{bottom:676.948667pt;}
.y70{bottom:677.795200pt;}
.y21d{bottom:677.806267pt;}
.y249{bottom:677.806933pt;}
.y9a{bottom:678.287200pt;}
.y1cb{bottom:678.287467pt;}
.y1f5{bottom:686.108267pt;}
.yda{bottom:686.108667pt;}
.y175{bottom:686.108933pt;}
.y16{bottom:688.359067pt;}
.yef{bottom:692.556400pt;}
.y41{bottom:692.784800pt;}
.y6f{bottom:693.086533pt;}
.y21c{bottom:693.642400pt;}
.y248{bottom:693.642933pt;}
.y99{bottom:693.928533pt;}
.y1ca{bottom:693.928933pt;}
.y1f4{bottom:701.749733pt;}
.yd9{bottom:701.750000pt;}
.y19a{bottom:701.750267pt;}
.y40{bottom:708.076133pt;}
.y6e{bottom:708.377867pt;}
.yee{bottom:708.426400pt;}
.y21b{bottom:709.478400pt;}
.y247{bottom:709.479067pt;}
.y98{bottom:709.569867pt;}
.y174{bottom:709.570133pt;}
.y1f3{bottom:717.391067pt;}
.yd8{bottom:717.391333pt;}
.y15{bottom:719.118533pt;}
.y12b{bottom:721.084000pt;}
.y3f{bottom:723.367467pt;}
.y6d{bottom:723.669333pt;}
.yed{bottom:724.296400pt;}
.y97{bottom:725.211200pt;}
.y173{bottom:725.211467pt;}
.y21a{bottom:725.314400pt;}
.y246{bottom:725.315067pt;}
.y1f2{bottom:733.032400pt;}
.yd7{bottom:733.032667pt;}
.y14{bottom:738.318400pt;}
.y3e{bottom:738.658800pt;}
.y6c{bottom:738.960667pt;}
.yec{bottom:740.166400pt;}
.y96{bottom:740.852533pt;}
.y172{bottom:740.852800pt;}
.y219{bottom:741.150400pt;}
.y245{bottom:741.151067pt;}
.y1f1{bottom:748.673600pt;}
.yd6{bottom:748.674000pt;}
.y127{bottom:750.370667pt;}
.y3d{bottom:753.950133pt;}
.y6b{bottom:754.252000pt;}
.yeb{bottom:756.036400pt;}
.y95{bottom:756.493867pt;}
.y171{bottom:756.494133pt;}
.y218{bottom:756.986267pt;}
.y244{bottom:756.986933pt;}
.y13{bottom:761.298000pt;}
.y6a{bottom:769.543333pt;}
.yea{bottom:771.906533pt;}
.y1f0{bottom:772.134800pt;}
.y94{bottom:772.135200pt;}
.y170{bottom:772.135467pt;}
.y217{bottom:772.822400pt;}
.y243{bottom:772.822933pt;}
.y12{bottom:783.964667pt;}
.y69{bottom:784.834667pt;}
.y3c{bottom:787.568800pt;}
.y1ef{bottom:787.776267pt;}
.y93{bottom:787.776533pt;}
.y16f{bottom:787.776800pt;}
.y124{bottom:788.469867pt;}
.y216{bottom:788.658400pt;}
.y242{bottom:788.659067pt;}
.y5{bottom:818.104133pt;}
.y1ee{bottom:828.335733pt;}
.y3b{bottom:828.336133pt;}
.y16e{bottom:828.336400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y1ed{bottom:843.977067pt;}
.y68{bottom:843.977333pt;}
.y3a{bottom:843.977467pt;}
.y16d{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h20{height:8.832000pt;}
.h1e{height:9.297333pt;}
.h17{height:9.298667pt;}
.h4{height:17.424000pt;}
.h22{height:18.594667pt;}
.h1a{height:19.061333pt;}
.h1b{height:20.673522pt;}
.hb{height:21.434766pt;}
.h16{height:21.452346pt;}
.h18{height:23.088794pt;}
.h21{height:23.118547pt;}
.hf{height:25.611979pt;}
.he{height:25.648438pt;}
.hd{height:25.921875pt;}
.h6{height:27.738667pt;}
.h7{height:29.720000pt;}
.h5{height:31.402667pt;}
.hc{height:32.976562pt;}
.h2{height:36.640625pt;}
.h14{height:37.031250pt;}
.h19{height:37.633074pt;}
.h1d{height:37.662827pt;}
.h12{height:39.140625pt;}
.h1f{height:39.423520pt;}
.h1c{height:39.507551pt;}
.ha{height:39.816406pt;}
.h10{height:40.247396pt;}
.h13{height:40.304688pt;}
.h11{height:40.734375pt;}
.h23{height:43.054688pt;}
.h9{height:43.968750pt;}
.h24{height:47.838542pt;}
.h8{height:55.546875pt;}
.h3{height:93.200000pt;}
.h15{height:244.542667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w4{width:245.000000pt;}
.w3{width:404.925333pt;}
.w2{width:405.854667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x15{left:4.649200pt;}
.x29{left:11.159200pt;}
.x2b{left:16.269200pt;}
.x26{left:17.202400pt;}
.x27{left:30.732850pt;}
.x1e{left:42.308667pt;}
.x23{left:49.811298pt;}
.x22{left:55.375221pt;}
.x1c{left:57.178847pt;}
.x2c{left:58.139954pt;}
.x2a{left:59.077373pt;}
.x17{left:61.369200pt;}
.x16{left:63.225600pt;}
.x21{left:65.573268pt;}
.x20{left:66.480753pt;}
.x18{left:67.446373pt;}
.x28{left:68.340667pt;}
.x24{left:70.266898pt;}
.x1a{left:78.104267pt;}
.x25{left:97.167333pt;}
.xd{left:98.267733pt;}
.x1{left:100.868000pt;}
.x7{left:103.946533pt;}
.x1d{left:114.395020pt;}
.x13{left:116.601067pt;}
.x14{left:119.633333pt;}
.x12{left:120.944933pt;}
.x4{left:123.545200pt;}
.x2d{left:130.393733pt;}
.x2e{left:132.994000pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.x9{left:175.126533pt;}
.xb{left:185.754267pt;}
.x19{left:232.137333pt;}
.xe{left:245.669333pt;}
.x10{left:247.333200pt;}
.x11{left:248.269600pt;}
.x8{left:269.757867pt;}
.xf{left:286.033733pt;}
.xa{left:349.454667pt;}
.x1f{left:374.705733pt;}
.x1b{left:375.639067pt;}
.x3{left:392.040667pt;}
.xc{left:450.291067pt;}
.x2{left:463.360800pt;}
}




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