
    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_58369190196d1f1b0618b0f7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.153809;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_3ac334b505a3be060a74db0f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.077148;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_bee7c0d59ec2ea02a91b1d2e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.047852;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_b5429089b65f70d89c65232c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_edbee5aa70a53d92507d0058.woff')format("woff");}.ff5{font-family:ff5;line-height:0.985352;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_6875fdc2fc755869fd3422d1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_2c4e2fbc420c9c9ee75823e8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.077148;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_4b70c538c75285f46fbd424d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.159668;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_a420482d5e9be2867d89aa74.woff')format("woff");}.ff9{font-family:ff9;line-height:0.723633;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_e5d6663c0bddef951a41a7e5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.197754;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_806b21618d2df4a21b8b3d22.woff')format("woff");}.ffb{font-family:ffb;line-height:0.986816;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_0b86e2c1fb5ee324c0336305.woff')format("woff");}.ffc{font-family:ffc;line-height:1.173828;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_c7bc6fc56521dedb527d68dd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.983887;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_9abe99957330bb9bc629f473.woff')format("woff");}.ffe{font-family:ffe;line-height:1.191895;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_d7b08b4a7e10a738d325ad5e.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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_50f0fc9bf721bdac01ec5a90.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_a154bb59e9434e743c3b2518.woff')format("woff");}.ff11{font-family:ff11;line-height:0.983887;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233518,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);}
.m3{transform:matrix(0.258570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258570,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262839,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.291036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291036,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.848000px;}
.lsd{letter-spacing:-1.800000px;}
.lsb{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.840000px;}
.ls8{letter-spacing:1.020000px;}
.ls1{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.800000px;}
.ls5{letter-spacing:1.980000px;}
.lsa{letter-spacing:2.400000px;}
.lse{letter-spacing:3.300000px;}
.lsc{letter-spacing:4.080000px;}
.ls6{letter-spacing:5.400000px;}
.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;}
}
.ws0{word-spacing:-72.526080px;}
.ws2{word-spacing:-66.709632px;}
.ws3{word-spacing:-26.292000px;}
.ws6c{word-spacing:-25.368000px;}
.ws89{word-spacing:-23.232000px;}
.ws5a{word-spacing:-20.658000px;}
.ws7d{word-spacing:-19.470000px;}
.ws28{word-spacing:-4.158000px;}
.ws29{word-spacing:-4.092000px;}
.ws85{word-spacing:-3.894000px;}
.ws60{word-spacing:-3.828000px;}
.ws8a{word-spacing:-3.762000px;}
.ws3c{word-spacing:-3.696000px;}
.ws64{word-spacing:-3.630000px;}
.ws4d{word-spacing:-3.564000px;}
.ws6f{word-spacing:-3.498000px;}
.ws47{word-spacing:-3.432000px;}
.ws80{word-spacing:-3.234000px;}
.ws1b{word-spacing:-3.102000px;}
.ws54{word-spacing:-3.036000px;}
.ws6e{word-spacing:-2.970000px;}
.ws12{word-spacing:-2.904000px;}
.ws61{word-spacing:-2.772000px;}
.ws81{word-spacing:-2.706000px;}
.ws5d{word-spacing:-2.640000px;}
.ws35{word-spacing:-2.574000px;}
.ws36{word-spacing:-2.508000px;}
.ws82{word-spacing:-2.442000px;}
.ws6d{word-spacing:-2.376000px;}
.ws71{word-spacing:-2.310000px;}
.ws51{word-spacing:-2.178000px;}
.ws19{word-spacing:-2.112000px;}
.ws4{word-spacing:-2.046000px;}
.ws6{word-spacing:-1.980000px;}
.ws49{word-spacing:-1.914000px;}
.ws74{word-spacing:-1.860000px;}
.ws2e{word-spacing:-1.782000px;}
.ws9{word-spacing:-1.716000px;}
.wsa{word-spacing:-1.650000px;}
.ws2f{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.518000px;}
.ws42{word-spacing:-1.452000px;}
.ws43{word-spacing:-1.386000px;}
.ws65{word-spacing:-1.320000px;}
.ws24{word-spacing:-1.254000px;}
.ws7b{word-spacing:-1.188000px;}
.ws53{word-spacing:-1.056000px;}
.ws1d{word-spacing:-0.990000px;}
.ws40{word-spacing:-0.924000px;}
.ws46{word-spacing:-0.858000px;}
.ws48{word-spacing:-0.792000px;}
.ws5e{word-spacing:-0.726000px;}
.ws17{word-spacing:-0.660000px;}
.ws3b{word-spacing:-0.594000px;}
.ws58{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.462000px;}
.ws72{word-spacing:-0.432000px;}
.ws7a{word-spacing:-0.396000px;}
.ws44{word-spacing:-0.330000px;}
.ws41{word-spacing:-0.264000px;}
.ws6b{word-spacing:-0.204000px;}
.ws5b{word-spacing:-0.198000px;}
.ws73{word-spacing:-0.180000px;}
.ws18{word-spacing:-0.132000px;}
.ws22{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws31{word-spacing:0.066000px;}
.ws15{word-spacing:0.132000px;}
.wsc{word-spacing:0.198000px;}
.ws13{word-spacing:0.264000px;}
.ws2d{word-spacing:0.330000px;}
.ws45{word-spacing:0.396000px;}
.ws83{word-spacing:0.528000px;}
.ws33{word-spacing:0.660000px;}
.ws32{word-spacing:0.726000px;}
.ws66{word-spacing:0.792000px;}
.ws37{word-spacing:0.858000px;}
.ws5f{word-spacing:0.924000px;}
.ws10{word-spacing:0.990000px;}
.ws11{word-spacing:1.056000px;}
.ws52{word-spacing:1.188000px;}
.ws34{word-spacing:1.254000px;}
.ws57{word-spacing:1.320000px;}
.ws21{word-spacing:1.386000px;}
.ws16{word-spacing:1.518000px;}
.ws8b{word-spacing:1.584000px;}
.ws56{word-spacing:1.650000px;}
.ws8{word-spacing:1.716000px;}
.ws70{word-spacing:1.782000px;}
.ws75{word-spacing:1.800000px;}
.ws3f{word-spacing:1.848000px;}
.ws5c{word-spacing:1.980000px;}
.ws3e{word-spacing:2.046000px;}
.ws30{word-spacing:2.112000px;}
.ws4f{word-spacing:2.178000px;}
.ws3a{word-spacing:2.244000px;}
.ws2a{word-spacing:2.376000px;}
.ws79{word-spacing:2.442000px;}
.ws27{word-spacing:2.508000px;}
.wsd{word-spacing:2.574000px;}
.ws4e{word-spacing:2.640000px;}
.ws68{word-spacing:2.706000px;}
.ws5{word-spacing:2.772000px;}
.ws59{word-spacing:2.904000px;}
.ws1e{word-spacing:2.970000px;}
.ws4b{word-spacing:3.036000px;}
.ws78{word-spacing:3.168000px;}
.ws1a{word-spacing:3.234000px;}
.ws84{word-spacing:3.366000px;}
.ws62{word-spacing:3.432000px;}
.ws14{word-spacing:3.498000px;}
.ws7c{word-spacing:3.564000px;}
.ws26{word-spacing:3.762000px;}
.ws7f{word-spacing:3.960000px;}
.ws25{word-spacing:4.224000px;}
.ws77{word-spacing:4.290000px;}
.ws63{word-spacing:4.356000px;}
.ws69{word-spacing:4.422000px;}
.ws23{word-spacing:4.620000px;}
.ws55{word-spacing:4.686000px;}
.ws76{word-spacing:4.752000px;}
.ws87{word-spacing:4.818000px;}
.ws88{word-spacing:4.950000px;}
.ws2b{word-spacing:5.016000px;}
.ws67{word-spacing:5.280000px;}
.wse{word-spacing:5.346000px;}
.ws39{word-spacing:5.610000px;}
.ws4a{word-spacing:5.676000px;}
.ws1c{word-spacing:5.742000px;}
.ws2c{word-spacing:5.808000px;}
.wsf{word-spacing:6.006000px;}
.ws1f{word-spacing:6.402000px;}
.wsb{word-spacing:6.534000px;}
.ws4c{word-spacing:6.666000px;}
.ws8c{word-spacing:6.930000px;}
.ws38{word-spacing:7.392000px;}
.ws50{word-spacing:7.986000px;}
.ws6a{word-spacing:8.514000px;}
.ws20{word-spacing:8.778000px;}
.ws86{word-spacing:9.570000px;}
.ws7e{word-spacing:10.428000px;}
._13{margin-left:-26.208600px;}
._e{margin-left:-22.558800px;}
._b{margin-left:-18.491400px;}
._d{margin-left:-15.846000px;}
._14{margin-left:-10.800000px;}
._10{margin-left:-9.597600px;}
._16{margin-left:-8.393400px;}
._4{margin-left:-7.368000px;}
._8{margin-left:-6.243600px;}
._1{margin-left:-4.344000px;}
._3{margin-left:-3.258000px;}
._0{margin-left:-2.041200px;}
._5{margin-left:-1.014000px;}
._2{width:1.128000px;}
._6{width:2.736000px;}
._a{width:3.748800px;}
._7{width:5.022600px;}
._9{width:6.652800px;}
._c{width:8.087400px;}
._f{width:9.769800px;}
._12{width:10.845600px;}
._15{width:12.160200px;}
._11{width:198.300000px;}
.fca{color:rgb(4,6,6);}
.fc7{color:rgb(210,32,39);}
.fc4{color:rgb(26,26,27);}
.fc3{color:transparent;}
.fc6{color:rgb(8,9,9);}
.fc2{color:rgb(22,23,23);}
.fc9{color:rgb(25,26,29);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(214,30,37);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:52.800000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fsd{font-size:102.000000px;}
.fse{font-size:108.000000px;}
.fsf{font-size:120.000000px;}
.fs11{font-size:132.000000px;}
.fsa{font-size:144.000000px;}
.fs7{font-size:155.416800px;}
.fs2{font-size:168.967800px;}
.fs10{font-size:198.000000px;}
.fs6{font-size:379.032000px;}
.fs1{font-size:412.080000px;}
.yf{bottom:-0.000600px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.000600px;}
.y9{bottom:0.717450px;}
.y11{bottom:0.717750px;}
.y1{bottom:16.743150px;}
.y2ed{bottom:33.142950px;}
.y3b8{bottom:34.428900px;}
.y2e8{bottom:35.364900px;}
.y276{bottom:41.478450px;}
.y4a{bottom:42.214950px;}
.y2b0{bottom:43.728450px;}
.y31d{bottom:44.478450px;}
.y322{bottom:45.978450px;}
.y2ec{bottom:51.142950px;}
.y2ac{bottom:52.614900px;}
.y2e7{bottom:53.364900px;}
.y2de{bottom:54.864900px;}
.y360{bottom:55.392900px;}
.y38e{bottom:55.409400px;}
.y179{bottom:55.680900px;}
.ya6{bottom:55.806900px;}
.y274{bottom:56.478450px;}
.y370{bottom:56.784900px;}
.y1ee{bottom:56.856900px;}
.y2a8{bottom:57.228450px;}
.y38c{bottom:58.566300px;}
.y21e{bottom:58.656900px;}
.y240{bottom:58.679400px;}
.y2e3{bottom:58.840650px;}
.y275{bottom:59.478450px;}
.y49{bottom:60.216450px;}
.y2af{bottom:61.728450px;}
.y1ae{bottom:61.942200px;}
.y31c{bottom:62.478450px;}
.y300{bottom:62.708400px;}
.y321{bottom:63.978450px;}
.y119{bottom:65.568450px;}
.y374{bottom:65.903400px;}
.y89{bottom:66.442200px;}
.y3a2{bottom:67.248900px;}
.y36a{bottom:67.388400px;}
.ycb{bottom:68.818200px;}
.y2eb{bottom:69.142950px;}
.y334{bottom:70.407900px;}
.y2ab{bottom:70.614900px;}
.y26b{bottom:70.993050px;}
.y2e6{bottom:71.364900px;}
.y203{bottom:71.561400px;}
.y3d0{bottom:71.721900px;}
.y2dd{bottom:72.864900px;}
.y3b7{bottom:73.434900px;}
.ye5{bottom:73.593900px;}
.y27a{bottom:73.761000px;}
.y273{bottom:74.478450px;}
.y178{bottom:74.738400px;}
.y2a7{bottom:75.228450px;}
.ya5{bottom:75.606900px;}
.y1ed{bottom:76.656900px;}
.y2e2{bottom:76.840650px;}
.y26f{bottom:77.478450px;}
.y48{bottom:78.217950px;}
.y21d{bottom:78.456900px;}
.y23f{bottom:78.479400px;}
.y342{bottom:79.290900px;}
.y2ae{bottom:79.728450px;}
.y31b{bottom:80.478450px;}
.y1cf{bottom:80.561400px;}
.y1ad{bottom:81.742200px;}
.y320{bottom:81.978450px;}
.y34c{bottom:82.403400px;}
.y24{bottom:83.935650px;}
.y69{bottom:84.196950px;}
.y15b{bottom:84.638400px;}
.y2ff{bottom:85.214400px;}
.y35f{bottom:85.389900px;}
.y88{bottom:86.242200px;}
.y2ea{bottom:87.142950px;}
.y35c{bottom:88.379400px;}
.y2aa{bottom:88.614900px;}
.y26a{bottom:88.993050px;}
.y2e5{bottom:89.364900px;}
.y13a{bottom:89.980950px;}
.y2dc{bottom:90.864900px;}
.y202{bottom:91.361400px;}
.y279{bottom:91.761000px;}
.y272{bottom:92.478450px;}
.yca{bottom:92.825700px;}
.y2a6{bottom:93.228450px;}
.y177{bottom:93.795900px;}
.y2e1{bottom:94.840650px;}
.y26e{bottom:95.478450px;}
.ye4{bottom:96.099900px;}
.y47{bottom:96.219450px;}
.y1ec{bottom:96.456900px;}
.y118{bottom:97.363950px;}
.y2ad{bottom:97.728450px;}
.y23e{bottom:98.279400px;}
.y324{bottom:98.478450px;}
.y31a{bottom:99.070200px;}
.y31f{bottom:99.978450px;}
.y23{bottom:100.135650px;}
.y1ce{bottom:100.361400px;}
.y3b6{bottom:100.428900px;}
.y15a{bottom:102.639900px;}
.y2e9{bottom:105.142950px;}
.y87{bottom:106.042200px;}
.y2a9{bottom:106.614900px;}
.y269{bottom:106.993050px;}
.y2e4{bottom:107.364900px;}
.ya4{bottom:107.402400px;}
.y2fe{bottom:107.720400px;}
.y139{bottom:107.982450px;}
.y2db{bottom:108.864900px;}
.y278{bottom:109.761000px;}
.y21c{bottom:110.252400px;}
.y271{bottom:110.478450px;}
.y2a5{bottom:111.228450px;}
.y2e0{bottom:112.840650px;}
.y176{bottom:112.853400px;}
.y26d{bottom:113.478450px;}
.y1ac{bottom:113.537700px;}
.y369{bottom:113.792400px;}
.y46{bottom:114.220950px;}
.y68{bottom:115.992450px;}
.y1eb{bottom:116.256900px;}
.y22{bottom:116.335650px;}
.y323{bottom:116.478450px;}
.yc9{bottom:116.833200px;}
.y117{bottom:116.866950px;}
.y31e{bottom:117.978450px;}
.y262{bottom:118.043400px;}
.y23d{bottom:118.079400px;}
.y1cd{bottom:120.161400px;}
.y159{bottom:120.641400px;}
.y319{bottom:121.576200px;}
.y201{bottom:123.156900px;}
.y24a{bottom:123.758400px;}
.y268{bottom:124.993050px;}
.y138{bottom:125.983950px;}
.y2da{bottom:126.864900px;}
.ya3{bottom:127.202400px;}
.y3b5{bottom:127.422900px;}
.y38b{bottom:127.569300px;}
.y277{bottom:127.761000px;}
.y270{bottom:128.478450px;}
.y21b{bottom:130.052400px;}
.y2fd{bottom:130.226400px;}
.ye3{bottom:130.601400px;}
.y2df{bottom:130.840650px;}
.y26c{bottom:131.478450px;}
.y175{bottom:131.910900px;}
.y45{bottom:132.222450px;}
.y21{bottom:132.535650px;}
.y1ab{bottom:133.337700px;}
.y373{bottom:133.404900px;}
.y67{bottom:135.792450px;}
.y1ea{bottom:136.056900px;}
.y116{bottom:136.369950px;}
.y86{bottom:137.837700px;}
.y261{bottom:137.843400px;}
.y158{bottom:138.642900px;}
.y1cc{bottom:139.961400px;}
.y3cf{bottom:140.724900px;}
.yc8{bottom:140.840700px;}
.y200{bottom:142.956900px;}
.y267{bottom:142.993050px;}
.y137{bottom:143.985450px;}
.y318{bottom:144.082200px;}
.ya2{bottom:147.002400px;}
.y20{bottom:148.735650px;}
.y21a{bottom:149.852400px;}
.y23c{bottom:149.874900px;}
.y38a{bottom:150.075300px;}
.y44{bottom:150.223950px;}
.y174{bottom:150.968400px;}
.y2fc{bottom:152.732400px;}
.y1aa{bottom:153.137700px;}
.y3b4{bottom:154.416900px;}
.ye2{bottom:154.608900px;}
.y249{bottom:155.553900px;}
.y66{bottom:155.592450px;}
.y1e9{bottom:155.856900px;}
.y115{bottom:155.872950px;}
.y85{bottom:157.637700px;}
.y260{bottom:157.643400px;}
.yd{bottom:158.568450px;}
.y5{bottom:159.525150px;}
.y1cb{bottom:159.761400px;}
.y372{bottom:160.398900px;}
.y136{bottom:161.986950px;}
.y1ff{bottom:162.756900px;}
.y3ce{bottom:163.230900px;}
.yc7{bottom:164.848200px;}
.y1f{bottom:164.935650px;}
.y317{bottom:166.588200px;}
.y43{bottom:168.225450px;}
.y157{bottom:168.639900px;}
.y219{bottom:169.652400px;}
.y23b{bottom:169.674900px;}
.y173{bottom:170.025900px;}
.y3a1{bottom:170.753400px;}
.y389{bottom:172.581300px;}
.y1a9{bottom:172.937700px;}
.y2fb{bottom:175.238400px;}
.y114{bottom:175.375950px;}
.y1e8{bottom:175.656900px;}
.y84{bottom:177.437700px;}
.y25f{bottom:177.443400px;}
.y2c4{bottom:177.612450px;}
.ye1{bottom:178.616400px;}
.ya1{bottom:178.797900px;}
.y1ca{bottom:179.561400px;}
.y135{bottom:179.988450px;}
.y3b3{bottom:181.410900px;}
.y1fe{bottom:182.556900px;}
.y3cd{bottom:185.736900px;}
.y28d{bottom:185.748900px;}
.y42{bottom:186.226950px;}
.y156{bottom:186.641400px;}
.y248{bottom:187.349400px;}
.y65{bottom:187.387950px;}
.y371{bottom:187.392900px;}
.yc{bottom:188.577450px;}
.yc6{bottom:188.855700px;}
.y172{bottom:189.083400px;}
.y316{bottom:189.094200px;}
.y218{bottom:189.452400px;}
.y23a{bottom:189.474900px;}
.y4{bottom:189.534150px;}
.y1a8{bottom:192.737700px;}
.y3a0{bottom:193.259400px;}
.y113{bottom:194.878950px;}
.y388{bottom:195.087300px;}
.y2a4{bottom:195.104700px;}
.y1e7{bottom:195.456900px;}
.y83{bottom:197.237700px;}
.y134{bottom:197.989950px;}
.y191{bottom:198.020400px;}
.ya0{bottom:198.597900px;}
.y1c9{bottom:199.361400px;}
.y34b{bottom:199.404900px;}
.y1e{bottom:201.003450px;}
.ye0{bottom:202.623900px;}
.y41{bottom:204.228450px;}
.y155{bottom:204.642900px;}
.y35b{bottom:205.380900px;}
.y64{bottom:207.187950px;}
.y171{bottom:208.140900px;}
.y3cc{bottom:208.242900px;}
.y28c{bottom:208.254900px;}
.y3b2{bottom:208.404900px;}
.y25e{bottom:209.238900px;}
.y239{bottom:209.274900px;}
.y2c3{bottom:209.407950px;}
.y2fa{bottom:209.739900px;}
.y315{bottom:211.600200px;}
.y1a7{bottom:212.537700px;}
.yc5{bottom:212.863200px;}
.y1fd{bottom:214.352400px;}
.y112{bottom:214.381950px;}
.y39f{bottom:215.765400px;}
.y133{bottom:215.991450px;}
.y82{bottom:217.037700px;}
.y2a3{bottom:217.610700px;}
.y9f{bottom:218.397900px;}
.y1c8{bottom:219.161400px;}
.y217{bottom:221.247900px;}
.y40{bottom:222.229950px;}
.y1d{bottom:222.603450px;}
.y154{bottom:222.644400px;}
.y34a{bottom:226.398900px;}
.ydf{bottom:226.631400px;}
.y63{bottom:226.987950px;}
.y170{bottom:227.198400px;}
.y1e6{bottom:227.252400px;}
.y190{bottom:228.990900px;}
.y25d{bottom:229.038900px;}
.y238{bottom:229.074900px;}
.y387{bottom:229.588800px;}
.y3cb{bottom:230.748900px;}
.y2c2{bottom:231.913950px;}
.y2f9{bottom:232.245900px;}
.y1a6{bottom:232.337700px;}
.y35a{bottom:232.374900px;}
.y111{bottom:233.884950px;}
.y1fc{bottom:234.152400px;}
.y3b1{bottom:235.398900px;}
.y81{bottom:236.837700px;}
.yc4{bottom:236.870700px;}
.y9e{bottom:238.197900px;}
.y3f{bottom:240.231450px;}
.y1c{bottom:240.603450px;}
.y153{bottom:240.645900px;}
.y216{bottom:241.047900px;}
.y28b{bottom:242.756400px;}
.y3da{bottom:245.314950px;}
.y3e2{bottom:245.974950px;}
.y132{bottom:245.988450px;}
.y314{bottom:246.101700px;}
.y16f{bottom:246.255900px;}
.y62{bottom:246.787950px;}
.y25c{bottom:248.838900px;}
.y39e{bottom:250.266900px;}
.yde{bottom:250.638900px;}
.y1c7{bottom:250.956900px;}
.y386{bottom:252.094800px;}
.y2a2{bottom:252.112200px;}
.y1a5{bottom:252.137700px;}
.y3ca{bottom:253.254900px;}
.y110{bottom:253.387950px;}
.y349{bottom:253.392900px;}
.y1fb{bottom:253.952400px;}
.y2c1{bottom:254.419950px;}
.y2f8{bottom:254.751900px;}
.y9d{bottom:257.997900px;}
.y1b{bottom:258.603450px;}
.y152{bottom:258.647400px;}
.y1e5{bottom:259.047900px;}
.y2d8{bottom:259.122900px;}
.y359{bottom:259.368900px;}
.y18f{bottom:259.961400px;}
.y215{bottom:260.847900px;}
.y237{bottom:260.870400px;}
.yc3{bottom:260.878200px;}
.y3b0{bottom:262.392900px;}
.y36f{bottom:263.777400px;}
.y131{bottom:263.989950px;}
.y266{bottom:265.200000px;}
.y28a{bottom:265.262400px;}
.y16e{bottom:265.313400px;}
.y333{bottom:265.404900px;}
.yf9{bottom:266.357400px;}
.y61{bottom:266.587950px;}
.y313{bottom:268.607700px;}
.y80{bottom:268.633200px;}
.y25b{bottom:268.638900px;}
.y3e{bottom:270.228450px;}
.y1c6{bottom:270.756900px;}
.y1a4{bottom:271.937700px;}
.y39d{bottom:272.772900px;}
.y10f{bottom:272.890950px;}
.y1fa{bottom:273.752400px;}
.y385{bottom:274.600800px;}
.y2a1{bottom:274.618200px;}
.y3c9{bottom:275.760900px;}
.y1a{bottom:276.603450px;}
.y151{bottom:276.648900px;}
.y2c0{bottom:276.925950px;}
.y2f7{bottom:277.257900px;}
.y1e4{bottom:278.847900px;}
.y2d7{bottom:278.922900px;}
.y3d9{bottom:279.816450px;}
.y348{bottom:280.386900px;}
.y3e1{bottom:280.476450px;}
.y214{bottom:280.647900px;}
.y236{bottom:280.670400px;}
.y130{bottom:281.991450px;}
.y16d{bottom:284.370900px;}
.yc2{bottom:284.885700px;}
.y36e{bottom:286.283400px;}
.y223{bottom:286.349400px;}
.y358{bottom:286.362900px;}
.y60{bottom:286.387950px;}
.y289{bottom:287.768400px;}
.y3d{bottom:288.229950px;}
.y7f{bottom:288.433200px;}
.y25a{bottom:288.438900px;}
.yf8{bottom:288.863400px;}
.y3af{bottom:289.386900px;}
.y9c{bottom:289.793400px;}
.y1c5{bottom:290.556900px;}
.y18e{bottom:290.931900px;}
.y312{bottom:291.113700px;}
.y1a3{bottom:291.737700px;}
.y10e{bottom:292.393950px;}
.y332{bottom:292.398900px;}
.ydd{bottom:292.631400px;}
.y19{bottom:294.603450px;}
.y150{bottom:294.650400px;}
.y39c{bottom:295.278900px;}
.y384{bottom:297.106800px;}
.y2a0{bottom:297.124200px;}
.y3c8{bottom:298.266900px;}
.y1e3{bottom:298.647900px;}
.y2d6{bottom:298.722900px;}
.y2f6{bottom:299.763900px;}
.y12f{bottom:299.992950px;}
.y235{bottom:300.470400px;}
.y1f9{bottom:305.547900px;}
.y5f{bottom:306.187950px;}
.y3c{bottom:306.231450px;}
.y347{bottom:307.380900px;}
.y7e{bottom:308.233200px;}
.y259{bottom:308.238900px;}
.y36d{bottom:308.789400px;}
.y9b{bottom:309.593400px;}
.y288{bottom:310.274400px;}
.y247{bottom:310.356900px;}
.yf7{bottom:311.369400px;}
.y2bf{bottom:311.427450px;}
.y1a2{bottom:311.537700px;}
.y10d{bottom:311.896950px;}
.y213{bottom:312.443400px;}
.y18{bottom:312.603450px;}
.y14f{bottom:312.651900px;}
.y357{bottom:313.356900px;}
.y311{bottom:313.619700px;}
.y3d8{bottom:314.317950px;}
.y3e0{bottom:314.977950px;}
.y16c{bottom:315.423900px;}
.y16{bottom:316.277850px;}
.y3ae{bottom:316.380900px;}
.ydc{bottom:316.638900px;}
.y39b{bottom:317.784900px;}
.y1e2{bottom:318.447900px;}
.y2d5{bottom:318.522900px;}
.y331{bottom:319.392900px;}
.y383{bottom:319.612800px;}
.y29f{bottom:319.630200px;}
.y234{bottom:320.270400px;}
.y3c7{bottom:320.772900px;}
.y341{bottom:320.784900px;}
.yc1{bottom:320.888700px;}
.y2f5{bottom:322.269900px;}
.y1c4{bottom:322.352400px;}
.y18d{bottom:322.727400px;}
.y3b{bottom:324.232950px;}
.y1f8{bottom:325.347900px;}
.y7d{bottom:328.033200px;}
.y258{bottom:328.038900px;}
.y9a{bottom:329.393400px;}
.y12e{bottom:329.989950px;}
.y17{bottom:330.603450px;}
.y14e{bottom:330.653400px;}
.yf6{bottom:333.875400px;}
.y2be{bottom:333.933450px;}
.y346{bottom:334.374900px;}
.y16b{bottom:334.481400px;}
.y310{bottom:336.125700px;}
.y5e{bottom:337.983450px;}
.y1e1{bottom:338.247900px;}
.y2d4{bottom:338.322900px;}
.y233{bottom:340.070400px;}
.y356{bottom:340.350900px;}
.ydb{bottom:340.646400px;}
.y382{bottom:342.118800px;}
.y29e{bottom:342.136200px;}
.y1c3{bottom:342.152400px;}
.y3a{bottom:342.234450px;}
.y18c{bottom:342.527400px;}
.y3c6{bottom:343.278900px;}
.y340{bottom:343.290900px;}
.y1a1{bottom:343.333200px;}
.y3ad{bottom:343.374900px;}
.y10c{bottom:343.395450px;}
.y212{bottom:344.238900px;}
.y287{bottom:344.775900px;}
.yc0{bottom:344.896200px;}
.y1f7{bottom:345.147900px;}
.y330{bottom:346.386900px;}
.y7c{bottom:347.833200px;}
.y257{bottom:347.838900px;}
.y12d{bottom:347.991450px;}
.y3d7{bottom:348.819450px;}
.y99{bottom:349.193400px;}
.y3df{bottom:349.479450px;}
.y222{bottom:349.956900px;}
.y39a{bottom:352.286400px;}
.y16a{bottom:353.538900px;}
.yf5{bottom:356.381400px;}
.y2bd{bottom:356.439450px;}
.y2f4{bottom:356.771400px;}
.y5d{bottom:357.783450px;}
.y1e0{bottom:358.047900px;}
.y30f{bottom:358.631700px;}
.y232{bottom:359.870400px;}
.y39{bottom:360.235950px;}
.y14d{bottom:360.650400px;}
.y1c2{bottom:361.952400px;}
.y18b{bottom:362.327400px;}
.y10b{bottom:362.898450px;}
.y1a0{bottom:363.133200px;}
.y381{bottom:364.624800px;}
.y29d{bottom:364.642200px;}
.yda{bottom:364.653900px;}
.y3c5{bottom:365.784900px;}
.y33f{bottom:365.796900px;}
.y12c{bottom:365.992950px;}
.y286{bottom:367.281900px;}
.ybf{bottom:368.903700px;}
.y98{bottom:368.993400px;}
.y221{bottom:369.756900px;}
.y2d3{bottom:370.118400px;}
.y169{bottom:372.596400px;}
.y32f{bottom:373.380900px;}
.y399{bottom:374.792400px;}
.y211{bottom:376.038900px;}
.y1f6{bottom:376.943400px;}
.y5c{bottom:377.583450px;}
.y368{bottom:377.792400px;}
.y1df{bottom:377.847900px;}
.y38{bottom:378.237450px;}
.y14c{bottom:378.651900px;}
.yf4{bottom:378.887400px;}
.y2bc{bottom:378.945450px;}
.y2f3{bottom:379.277400px;}
.y355{bottom:379.356900px;}
.y7b{bottom:379.628700px;}
.y256{bottom:379.638900px;}
.y231{bottom:379.670400px;}
.y30e{bottom:381.137700px;}
.y1c1{bottom:381.752400px;}
.y18a{bottom:382.127400px;}
.y3ac{bottom:382.380900px;}
.y10a{bottom:382.401450px;}
.y19f{bottom:382.933200px;}
.y3d6{bottom:383.320950px;}
.y3de{bottom:383.980950px;}
.y12b{bottom:383.994450px;}
.y380{bottom:387.130800px;}
.y29c{bottom:387.148200px;}
.y3c4{bottom:388.290900px;}
.y33e{bottom:388.302900px;}
.yd9{bottom:388.661400px;}
.y285{bottom:389.787900px;}
.y2d2{bottom:389.918400px;}
.y168{bottom:391.653900px;}
.ybe{bottom:392.911200px;}
.y37{bottom:396.238950px;}
.y14b{bottom:396.653400px;}
.y1f5{bottom:396.743400px;}
.y398{bottom:397.298400px;}
.y5b{bottom:397.383450px;}
.y1de{bottom:397.647900px;}
.y7a{bottom:399.428700px;}
.y367{bottom:400.298400px;}
.y32e{bottom:400.374900px;}
.y97{bottom:400.788900px;}
.yf3{bottom:401.393400px;}
.y2bb{bottom:401.451450px;}
.y1c0{bottom:401.552400px;}
.y2f2{bottom:401.783400px;}
.y109{bottom:401.904450px;}
.y12a{bottom:401.995950px;}
.y19e{bottom:402.733200px;}
.y30d{bottom:403.643700px;}
.y354{bottom:406.350900px;}
.y210{bottom:407.856900px;}
.y3ab{bottom:409.374900px;}
.y29b{bottom:409.654200px;}
.y2d1{bottom:409.718400px;}
.y167{bottom:410.711400px;}
.y3c3{bottom:410.796900px;}
.y33d{bottom:410.808900px;}
.y230{bottom:411.465900px;}
.y15{bottom:411.677850px;}
.y284{bottom:412.293900px;}
.y189{bottom:413.922900px;}
.y36{bottom:414.240450px;}
.y14a{bottom:414.654900px;}
.ybd{bottom:416.918700px;}
.y5a{bottom:417.183450px;}
.y3d5{bottom:417.822450px;}
.y3dd{bottom:418.482450px;}
.y79{bottom:419.228700px;}
.y397{bottom:419.804400px;}
.y96{bottom:420.588900px;}
.y220{bottom:421.352400px;}
.y37f{bottom:421.632300px;}
.y366{bottom:422.804400px;}
.y2f1{bottom:424.289400px;}
.y30c{bottom:426.149700px;}
.y345{bottom:427.368900px;}
.y1f4{bottom:428.538900px;}
.y1dd{bottom:429.443400px;}
.y2d0{bottom:429.518400px;}
.y166{bottom:429.768900px;}
.yd8{bottom:430.653900px;}
.y22f{bottom:431.265900px;}
.y129{bottom:431.992950px;}
.y35{bottom:432.241950px;}
.y149{bottom:432.656400px;}
.y33c{bottom:433.314900px;}
.y353{bottom:433.344900px;}
.y1bf{bottom:433.347900px;}
.y108{bottom:433.402950px;}
.y188{bottom:433.722900px;}
.y19d{bottom:434.528700px;}
.yf2{bottom:435.894900px;}
.y2ba{bottom:435.952950px;}
.y3aa{bottom:436.368900px;}
.y14{bottom:436.877850px;}
.y59{bottom:436.983450px;}
.y78{bottom:439.028700px;}
.y32d{bottom:439.380900px;}
.y20f{bottom:439.652400px;}
.y95{bottom:440.388900px;}
.y21f{bottom:441.152400px;}
.y396{bottom:442.310400px;}
.y37e{bottom:444.138300px;}
.y29a{bottom:444.155700px;}
.y3c2{bottom:445.298400px;}
.y365{bottom:445.310400px;}
.y283{bottom:446.795400px;}
.y255{bottom:448.643400px;}
.y30b{bottom:448.655700px;}
.y165{bottom:448.826400px;}
.y1dc{bottom:449.243400px;}
.y2cf{bottom:449.318400px;}
.y128{bottom:449.994450px;}
.y148{bottom:450.657900px;}
.y22e{bottom:451.065900px;}
.y3d4{bottom:452.323950px;}
.ybc{bottom:452.921700px;}
.y3dc{bottom:452.983950px;}
.y1be{bottom:453.147900px;}
.y187{bottom:453.522900px;}
.y19c{bottom:454.328700px;}
.y344{bottom:454.362900px;}
.yd7{bottom:454.661400px;}
.y33b{bottom:455.820900px;}
.y58{bottom:456.783450px;}
.yf1{bottom:458.400900px;}
.y2b9{bottom:458.458950px;}
.y77{bottom:458.828700px;}
.y20e{bottom:459.452400px;}
.y94{bottom:460.188900px;}
.y1f3{bottom:460.338900px;}
.y34{bottom:462.238950px;}
.y3a9{bottom:463.362900px;}
.y395{bottom:464.816400px;}
.y107{bottom:464.901450px;}
.y32c{bottom:466.374900px;}
.y37d{bottom:466.644300px;}
.y299{bottom:466.661700px;}
.y3c1{bottom:467.804400px;}
.y36c{bottom:467.816400px;}
.y164{bottom:467.883900px;}
.y127{bottom:467.995950px;}
.y254{bottom:468.443400px;}
.y1db{bottom:469.043400px;}
.y282{bottom:469.301400px;}
.y22d{bottom:470.865900px;}
.y30a{bottom:471.161700px;}
.y1bd{bottom:472.947900px;}
.y186{bottom:473.322900px;}
.y19b{bottom:474.128700px;}
.y57{bottom:476.583450px;}
.ybb{bottom:476.929200px;}
.ya7{bottom:477.300000px;}
.y33a{bottom:478.326900px;}
.y76{bottom:478.628700px;}
.yd6{bottom:478.668900px;}
.y20d{bottom:479.252400px;}
.y364{bottom:479.811900px;}
.y93{bottom:479.988900px;}
.y33{bottom:480.240450px;}
.y147{bottom:480.654900px;}
.yf0{bottom:480.906900px;}
.y2b8{bottom:480.964950px;}
.y2ce{bottom:481.113900px;}
.y35e{bottom:481.356900px;}
.y106{bottom:484.404450px;}
.y126{bottom:485.997450px;}
.y3d3{bottom:486.825450px;}
.y163{bottom:486.941400px;}
.y13{bottom:487.277850px;}
.y352{bottom:487.332900px;}
.y3db{bottom:487.485450px;}
.y253{bottom:488.243400px;}
.y1da{bottom:488.843400px;}
.y37c{bottom:489.150300px;}
.y298{bottom:489.167700px;}
.y3c0{bottom:490.310400px;}
.y36b{bottom:490.322400px;}
.y1f2{bottom:490.338900px;}
.y3a8{bottom:490.356900px;}
.y22c{bottom:490.665900px;}
.y281{bottom:491.807400px;}
.y1bc{bottom:492.747900px;}
.y185{bottom:493.122900px;}
.y32b{bottom:493.368900px;}
.y19a{bottom:493.928700px;}
.y56{bottom:496.383450px;}
.y32{bottom:498.241950px;}
.y146{bottom:498.656400px;}
.y394{bottom:499.317900px;}
.y92{bottom:499.788900px;}
.y2cd{bottom:500.913900px;}
.yba{bottom:500.936700px;}
.y363{bottom:502.317900px;}
.yd5{bottom:502.676400px;}
.yef{bottom:503.412900px;}
.y2b7{bottom:503.470950px;}
.y2f0{bottom:503.802900px;}
.y105{bottom:503.907450px;}
.y125{bottom:503.998950px;}
.y309{bottom:505.663200px;}
.y162{bottom:505.998900px;}
.y252{bottom:508.043400px;}
.y1d9{bottom:508.643400px;}
.y75{bottom:510.424200px;}
.y20c{bottom:511.047900px;}
.y37b{bottom:511.656300px;}
.y297{bottom:511.673700px;}
.y12{bottom:512.477850px;}
.y1bb{bottom:512.547900px;}
.y3bf{bottom:512.816400px;}
.y339{bottom:512.828400px;}
.y184{bottom:512.922900px;}
.y199{bottom:513.728700px;}
.y280{bottom:514.313400px;}
.y351{bottom:514.326900px;}
.y31{bottom:516.243450px;}
.y145{bottom:516.657900px;}
.y3a7{bottom:517.350900px;}
.yb2{bottom:518.477400px;}
.y1f1{bottom:520.352400px;}
.y32a{bottom:520.362900px;}
.y2cc{bottom:520.713900px;}
.y393{bottom:521.823900px;}
.y124{bottom:522.000450px;}
.y22b{bottom:522.461400px;}
.y104{bottom:523.410450px;}
.y362{bottom:524.823900px;}
.yb9{bottom:524.944200px;}
.y161{bottom:525.056400px;}
.y2b6{bottom:525.976950px;}
.y2ef{bottom:526.308900px;}
.y27b{bottom:527.137500px;}
.y308{bottom:528.169200px;}
.y55{bottom:528.178950px;}
.y74{bottom:530.224200px;}
.y20b{bottom:530.847900px;}
.y91{bottom:531.582900px;}
.y1ba{bottom:532.347900px;}
.y183{bottom:532.722900px;}
.y198{bottom:533.528700px;}
.y37a{bottom:534.162300px;}
.y296{bottom:534.179700px;}
.y30{bottom:534.244950px;}
.y144{bottom:534.659400px;}
.y3be{bottom:535.322400px;}
.y338{bottom:535.334400px;}
.y27f{bottom:536.819400px;}
.yee{bottom:537.914400px;}
.y251{bottom:539.838900px;}
.y123{bottom:540.001950px;}
.y1d8{bottom:540.438900px;}
.y2cb{bottom:540.513900px;}
.y22a{bottom:542.261400px;}
.y103{bottom:542.913450px;}
.y2b1{bottom:544.194150px;}
.y392{bottom:544.329900px;}
.y246{bottom:544.343400px;}
.y3a6{bottom:544.344900px;}
.yd4{bottom:544.668900px;}
.y361{bottom:547.329900px;}
.y329{bottom:547.356900px;}
.y54{bottom:547.978950px;}
.y2ee{bottom:548.814900px;}
.yb8{bottom:548.951700px;}
.y73{bottom:550.024200px;}
.yb1{bottom:550.272900px;}
.y20a{bottom:550.647900px;}
.y307{bottom:550.675200px;}
.y1b9{bottom:552.147900px;}
.y2f{bottom:552.246450px;}
.y182{bottom:552.522900px;}
.y143{bottom:552.660900px;}
.y197{bottom:553.328700px;}
.y350{bottom:553.332900px;}
.y343{bottom:554.175000px;}
.y160{bottom:556.109400px;}
.y3bd{bottom:557.828400px;}
.y122{bottom:558.003450px;}
.y325{bottom:559.194150px;}
.y250{bottom:559.638900px;}
.y2ca{bottom:560.313900px;}
.yed{bottom:560.420400px;}
.y2b5{bottom:560.478450px;}
.y229{bottom:562.061400px;}
.y10{bottom:562.522500px;}
.yb{bottom:563.240250px;}
.y8{bottom:563.479500px;}
.y245{bottom:564.143400px;}
.y3{bottom:564.196950px;}
.y90{bottom:565.188900px;}
.y391{bottom:566.835900px;}
.y53{bottom:567.778950px;}
.y379{bottom:568.663800px;}
.yd3{bottom:568.676400px;}
.y295{bottom:568.681200px;}
.y72{bottom:569.824200px;}
.y337{bottom:569.835900px;}
.yb0{bottom:570.072900px;}
.y2e{bottom:570.247950px;}
.y209{bottom:570.447900px;}
.y142{bottom:570.662400px;}
.y27e{bottom:571.320900px;}
.y1b8{bottom:571.947900px;}
.y1d7{bottom:572.238900px;}
.y181{bottom:572.322900px;}
.yb7{bottom:572.959200px;}
.y306{bottom:573.181200px;}
.y328{bottom:574.350900px;}
.y102{bottom:574.411950px;}
.y15f{bottom:575.166900px;}
.y35d{bottom:575.522850px;}
.y3e3{bottom:579.022350px;}
.y24f{bottom:579.438900px;}
.y24b{bottom:579.549000px;}
.y34f{bottom:580.326900px;}
.yec{bottom:582.926400px;}
.y3a5{bottom:583.350900px;}
.y244{bottom:583.943400px;}
.y196{bottom:585.124200px;}
.y52{bottom:587.578950px;}
.y121{bottom:588.000450px;}
.y2d{bottom:588.249450px;}
.y71{bottom:589.624200px;}
.yaf{bottom:589.872900px;}
.y208{bottom:590.247900px;}
.y38d{bottom:590.497950px;}
.y378{bottom:591.169800px;}
.y294{bottom:591.187200px;}
.y1b7{bottom:591.747900px;}
.y3bc{bottom:592.329900px;}
.yd2{bottom:592.683900px;}
.y27d{bottom:593.826900px;}
.y228{bottom:593.856900px;}
.y101{bottom:593.914950px;}
.y15e{bottom:594.224400px;}
.y2b4{bottom:594.978450px;}
.y305{bottom:595.687200px;}
.yb6{bottom:596.966700px;}
.y290{bottom:597.500850px;}
.y3d1{bottom:599.175000px;}
.y24e{bottom:599.238900px;}
.y141{bottom:600.659400px;}
.y390{bottom:601.337400px;}
.y327{bottom:601.344900px;}
.y1f0{bottom:603.743400px;}
.y180{bottom:604.118400px;}
.y336{bottom:604.337400px;}
.yeb{bottom:605.432400px;}
.y120{bottom:606.001950px;}
.y2c{bottom:606.250950px;}
.y51{bottom:607.378950px;}
.ya{bottom:607.616400px;}
.ye{bottom:607.617000px;}
.y6{bottom:608.572500px;}
.y2{bottom:608.573100px;}
.y70{bottom:609.424200px;}
.yae{bottom:609.672900px;}
.y3a4{bottom:610.344900px;}
.y100{bottom:613.417950px;}
.y377{bottom:613.675800px;}
.y293{bottom:613.693200px;}
.y301{bottom:614.000850px;}
.y3bb{bottom:614.835900px;}
.y27c{bottom:616.332900px;}
.y195{bottom:616.918200px;}
.y2b3{bottom:617.478450px;}
.y304{bottom:618.193200px;}
.y140{bottom:618.660900px;}
.y24d{bottom:619.038900px;}
.y34e{bottom:619.332900px;}
.yb5{bottom:620.974200px;}
.y207{bottom:622.043400px;}
.y3e9{bottom:622.620300px;}
.y1b6{bottom:623.543400px;}
.y2c9{bottom:623.913900px;}
.y17f{bottom:623.918400px;}
.y11f{bottom:624.003450px;}
.y2b{bottom:624.252450px;}
.y227{bottom:625.652400px;}
.y50{bottom:627.178950px;}
.yea{bottom:627.938400px;}
.y326{bottom:628.338900px;}
.y6f{bottom:629.224200px;}
.y8f{bottom:630.597900px;}
.yff{bottom:632.920950px;}
.y1d6{bottom:634.038900px;}
.yd1{bottom:634.676400px;}
.y2d9{bottom:634.950000px;}
.y243{bottom:635.538900px;}
.y38f{bottom:635.838900px;}
.y292{bottom:636.199200px;}
.y13f{bottom:636.662400px;}
.y3a3{bottom:637.338900px;}
.y24c{bottom:638.838900px;}
.y2b2{bottom:639.978450px;}
.y303{bottom:640.699200px;}
.yad{bottom:641.468400px;}
.y206{bottom:641.843400px;}
.y11e{bottom:642.004950px;}
.y1b5{bottom:643.343400px;}
.y17e{bottom:643.718400px;}
.y4f{bottom:646.978950px;}
.y3e8{bottom:647.820300px;}
.y376{bottom:648.177300px;}
.y3ba{bottom:649.337400px;}
.y194{bottom:650.524200px;}
.yfe{bottom:652.423950px;}
.y1d5{bottom:653.838900px;}
.y2c8{bottom:653.913900px;}
.y2a{bottom:654.249450px;}
.y13e{bottom:654.663900px;}
.y242{bottom:655.338900px;}
.y6a{bottom:656.175000px;}
.yb4{bottom:656.968200px;}
.y15d{bottom:657.072900px;}
.y226{bottom:657.447900px;}
.y34d{bottom:658.338900px;}
.yd0{bottom:658.683900px;}
.y11d{bottom:660.006450px;}
.y6e{bottom:661.018200px;}
.yac{bottom:661.268400px;}
.y205{bottom:661.643400px;}
.y8e{bottom:662.393400px;}
.ye9{bottom:662.439900px;}
.y1b4{bottom:663.143400px;}
.y17d{bottom:663.518400px;}
.y4e{bottom:666.778950px;}
.y1af{bottom:669.300000px;}
.y3d2{bottom:670.194150px;}
.y291{bottom:670.699200px;}
.y2c7{bottom:671.913900px;}
.yfd{bottom:671.926950px;}
.y13d{bottom:672.665400px;}
.y3e7{bottom:673.020300px;}
.y1d4{bottom:673.638900px;}
.y241{bottom:675.138900px;}
.y302{bottom:675.199200px;}
.y26{bottom:676.963500px;}
.yab{bottom:681.068400px;}
.y204{bottom:681.443400px;}
.y8d{bottom:682.193400px;}
.y375{bottom:682.678800px;}
.ycf{bottom:682.691400px;}
.y1ef{bottom:682.943400px;}
.y3b9{bottom:683.838900px;}
.ye8{bottom:684.945900px;}
.y29{bottom:686.044950px;}
.y4d{bottom:686.578950px;}
.y15c{bottom:688.868400px;}
.y225{bottom:689.243400px;}
.y2c6{bottom:689.913900px;}
.y11c{bottom:690.003450px;}
.yb3{bottom:690.574200px;}
.y13c{bottom:690.666900px;}
.yfc{bottom:691.429950px;}
.y6d{bottom:692.824200px;}
.y1d3{bottom:693.438900px;}
.y1b3{bottom:694.938900px;}
.y17c{bottom:695.313900px;}
.y264{bottom:698.908950px;}
.yaa{bottom:700.868400px;}
.yce{bottom:706.698900px;}
.ye7{bottom:707.451900px;}
.y1d2{bottom:713.238900px;}
.y335{bottom:713.907600px;}
.y28e{bottom:713.908950px;}
.y8c{bottom:713.988900px;}
.y1b2{bottom:714.738900px;}
.y17b{bottom:715.113900px;}
.y193{bottom:717.718200px;}
.y25{bottom:717.781200px;}
.y4c{bottom:718.374450px;}
.y2c5{bottom:719.913900px;}
.y13b{bottom:720.663900px;}
.y224{bottom:721.038900px;}
.y11b{bottom:721.803450px;}
.yfb{bottom:722.928450px;}
.y3e6{bottom:723.420300px;}
.ye6{bottom:729.957900px;}
.y263{bottom:730.408950px;}
.ycd{bottom:730.706400px;}
.ya9{bottom:732.663900px;}
.y1d1{bottom:733.038900px;}
.y8b{bottom:733.788900px;}
.y1b1{bottom:734.538900px;}
.y17a{bottom:734.913900px;}
.y27{bottom:737.967150px;}
.y6b{bottom:738.717150px;}
.y3e5{bottom:748.620300px;}
.y4b{bottom:750.169950px;}
.y192{bottom:751.324200px;}
.ya8{bottom:752.463900px;}
.y1d0{bottom:752.838900px;}
.y8a{bottom:753.588900px;}
.y11a{bottom:753.603450px;}
.y28f{bottom:754.165950px;}
.y1b0{bottom:754.338900px;}
.ycc{bottom:754.713900px;}
.yfa{bottom:754.728450px;}
.y265{bottom:766.165950px;}
.y28{bottom:770.290950px;}
.y6c{bottom:771.040950px;}
.y3e4{bottom:773.820300px;}
.h6{height:34.807500px;}
.ha{height:38.448000px;}
.h1f{height:45.966797px;}
.h1{height:49.570312px;}
.h14{height:50.563477px;}
.h15{height:50.756836px;}
.h12{height:50.789063px;}
.h9{height:55.078125px;}
.h17{height:55.160156px;}
.h1c{height:57.363281px;}
.h16{height:57.714844px;}
.h8{height:60.416016px;}
.h11{height:63.099609px;}
.h10{height:63.486328px;}
.h7{height:67.921875px;}
.h13{height:69.257812px;}
.h19{height:77.109375px;}
.h18{height:78.043945px;}
.h4{height:79.611328px;}
.h1b{height:80.308594px;}
.hf{height:80.800781px;}
.h5{height:81.487500px;}
.hd{height:83.232422px;}
.h1d{height:91.816406px;}
.h1a{height:99.140625px;}
.h1e{height:113.730469px;}
.he{height:136.476562px;}
.hc{height:147.296879px;}
.h3{height:160.139892px;}
.h20{height:187.655273px;}
.hb{height:359.229059px;}
.h2{height:390.550430px;}
.h0{height:864.000000px;}
.w5{width:-588.046500px;}
.w4{width:-588.045000px;}
.w8{width:-548.451000px;}
.w7{width:-548.449500px;}
.w2{width:44.382000px;}
.w1{width:45.445500px;}
.w3{width:627.750000px;}
.w6{width:667.347000px;}
.w0{width:1026.000000px;}
.xa{left:-642.731100px;}
.xb{left:-639.205050px;}
.xf{left:-603.135150px;}
.x10{left:-599.609100px;}
.xd{left:-563.963774px;}
.xc{left:-533.990850px;}
.x12{left:-524.367824px;}
.x11{left:-494.394900px;}
.x74{left:-263.250000px;}
.x52{left:-227.250000px;}
.x54{left:-221.250000px;}
.x6{left:-3.944100px;}
.x8{left:-1.818750px;}
.x0{left:0.000000px;}
.x41{left:26.250000px;}
.x64{left:32.308800px;}
.x50{left:34.650600px;}
.x65{left:50.923800px;}
.x7f{left:55.480800px;}
.x1e{left:58.553100px;}
.x3b{left:69.606900px;}
.x4c{left:72.147600px;}
.x17{left:78.000000px;}
.x43{left:92.250000px;}
.x42{left:93.750000px;}
.x82{left:106.500000px;}
.x1d{left:108.000000px;}
.x27{left:109.496850px;}
.x4b{left:111.000000px;}
.x1b{left:112.875000px;}
.x1a{left:115.500000px;}
.x19{left:116.964450px;}
.x98{left:119.690100px;}
.x9a{left:125.339100px;}
.x4d{left:129.585600px;}
.x4f{left:137.805600px;}
.x4e{left:140.940600px;}
.x9c{left:144.218100px;}
.x1f{left:151.089450px;}
.x62{left:152.713800px;}
.x63{left:156.178800px;}
.x20{left:162.004500px;}
.x99{left:167.990100px;}
.x15{left:169.728900px;}
.x9b{left:185.693100px;}
.x13{left:219.036900px;}
.x14{left:235.458900px;}
.x90{left:250.745400px;}
.x88{left:256.618050px;}
.x85{left:287.999850px;}
.x7b{left:295.590450px;}
.x2a{left:308.266050px;}
.x24{left:315.016650px;}
.x80{left:316.050900px;}
.x30{left:318.139200px;}
.x58{left:333.003150px;}
.xe{left:334.524000px;}
.x57{left:341.130000px;}
.x8e{left:373.039350px;}
.x8a{left:399.079050px;}
.x84{left:414.455550px;}
.x2d{left:433.390050px;}
.x8d{left:434.793450px;}
.x21{left:437.734800px;}
.x39{left:444.219150px;}
.x16{left:452.769600px;}
.x7d{left:461.999850px;}
.x93{left:464.539350px;}
.x23{left:469.456650px;}
.x35{left:484.575450px;}
.x96{left:508.039350px;}
.x8b{left:512.999850px;}
.x2f{left:514.054200px;}
.x49{left:524.244000px;}
.x18{left:530.354550px;}
.x2{left:533.415900px;}
.x3{left:536.600250px;}
.x7{left:538.419000px;}
.x48{left:540.991800px;}
.x32{left:556.495500px;}
.x8f{left:568.183500px;}
.x8c{left:569.688150px;}
.x95{left:571.560000px;}
.x92{left:585.587250px;}
.x2b{left:599.293050px;}
.x5{left:604.551600px;}
.x7c{left:622.305150px;}
.x4{left:631.620600px;}
.x3a{left:636.025950px;}
.x36{left:639.988950px;}
.x44{left:653.102400px;}
.x6f{left:673.157400px;}
.x22{left:677.851950px;}
.x2e{left:679.351950px;}
.x59{left:691.350000px;}
.x38{left:694.392600px;}
.x87{left:696.586500px;}
.x77{left:706.142400px;}
.x83{left:723.136500px;}
.x89{left:725.482050px;}
.x68{left:726.912750px;}
.x28{left:728.288100px;}
.x33{left:732.218100px;}
.x7e{left:739.503000px;}
.x6c{left:741.510000px;}
.x86{left:744.238500px;}
.x94{left:745.641000px;}
.x91{left:747.147900px;}
.x5c{left:754.406100px;}
.x5f{left:757.662750px;}
.x69{left:759.927750px;}
.x73{left:762.750000px;}
.x71{left:767.447400px;}
.x81{left:769.635900px;}
.x78{left:774.212400px;}
.x6e{left:776.297400px;}
.x26{left:784.247850px;}
.x31{left:785.512800px;}
.x5d{left:787.421100px;}
.x25{left:789.249750px;}
.x60{left:790.677750px;}
.x34{left:792.877950px;}
.x29{left:795.115050px;}
.x51{left:798.750000px;}
.x53{left:804.750000px;}
.x72{left:808.562400px;}
.x76{left:811.982400px;}
.x3d{left:816.450300px;}
.x45{left:817.959900px;}
.x70{left:821.852400px;}
.x46{left:824.139900px;}
.x79{left:845.987400px;}
.x6d{left:849.272400px;}
.x3f{left:858.630300px;}
.x66{left:861.717750px;}
.x67{left:865.182750px;}
.x75{left:882.272400px;}
.x3c{left:887.190300px;}
.x5a{left:889.196100px;}
.x5b{left:892.316100px;}
.x40{left:893.370300px;}
.x61{left:895.932750px;}
.x5e{left:904.782750px;}
.x56{left:909.184500px;}
.x3e{left:912.720300px;}
.x6b{left:922.684500px;}
.x55{left:943.692600px;}
.x37{left:948.384150px;}
.x47{left:950.323950px;}
.x7a{left:954.356700px;}
.x6a{left:957.192600px;}
.x97{left:969.356700px;}
.x2c{left:977.156700px;}
.x4a{left:979.480650px;}
.x1c{left:981.091800px;}
.x1{left:983.250000px;}
.x9{left:989.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.642667pt;}
.lsd{letter-spacing:-1.600000pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.746667pt;}
.ls8{letter-spacing:0.906667pt;}
.ls1{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.600000pt;}
.ls5{letter-spacing:1.760000pt;}
.lsa{letter-spacing:2.133333pt;}
.lse{letter-spacing:2.933333pt;}
.lsc{letter-spacing:3.626667pt;}
.ls6{letter-spacing:4.800000pt;}
.ws0{word-spacing:-64.467627pt;}
.ws2{word-spacing:-59.297451pt;}
.ws3{word-spacing:-23.370667pt;}
.ws6c{word-spacing:-22.549333pt;}
.ws89{word-spacing:-20.650667pt;}
.ws5a{word-spacing:-18.362667pt;}
.ws7d{word-spacing:-17.306667pt;}
.ws28{word-spacing:-3.696000pt;}
.ws29{word-spacing:-3.637333pt;}
.ws85{word-spacing:-3.461333pt;}
.ws60{word-spacing:-3.402667pt;}
.ws8a{word-spacing:-3.344000pt;}
.ws3c{word-spacing:-3.285333pt;}
.ws64{word-spacing:-3.226667pt;}
.ws4d{word-spacing:-3.168000pt;}
.ws6f{word-spacing:-3.109333pt;}
.ws47{word-spacing:-3.050667pt;}
.ws80{word-spacing:-2.874667pt;}
.ws1b{word-spacing:-2.757333pt;}
.ws54{word-spacing:-2.698667pt;}
.ws6e{word-spacing:-2.640000pt;}
.ws12{word-spacing:-2.581333pt;}
.ws61{word-spacing:-2.464000pt;}
.ws81{word-spacing:-2.405333pt;}
.ws5d{word-spacing:-2.346667pt;}
.ws35{word-spacing:-2.288000pt;}
.ws36{word-spacing:-2.229333pt;}
.ws82{word-spacing:-2.170667pt;}
.ws6d{word-spacing:-2.112000pt;}
.ws71{word-spacing:-2.053333pt;}
.ws51{word-spacing:-1.936000pt;}
.ws19{word-spacing:-1.877333pt;}
.ws4{word-spacing:-1.818667pt;}
.ws6{word-spacing:-1.760000pt;}
.ws49{word-spacing:-1.701333pt;}
.ws74{word-spacing:-1.653333pt;}
.ws2e{word-spacing:-1.584000pt;}
.ws9{word-spacing:-1.525333pt;}
.wsa{word-spacing:-1.466667pt;}
.ws2f{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.349333pt;}
.ws42{word-spacing:-1.290667pt;}
.ws43{word-spacing:-1.232000pt;}
.ws65{word-spacing:-1.173333pt;}
.ws24{word-spacing:-1.114667pt;}
.ws7b{word-spacing:-1.056000pt;}
.ws53{word-spacing:-0.938667pt;}
.ws1d{word-spacing:-0.880000pt;}
.ws40{word-spacing:-0.821333pt;}
.ws46{word-spacing:-0.762667pt;}
.ws48{word-spacing:-0.704000pt;}
.ws5e{word-spacing:-0.645333pt;}
.ws17{word-spacing:-0.586667pt;}
.ws3b{word-spacing:-0.528000pt;}
.ws58{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.410667pt;}
.ws72{word-spacing:-0.384000pt;}
.ws7a{word-spacing:-0.352000pt;}
.ws44{word-spacing:-0.293333pt;}
.ws41{word-spacing:-0.234667pt;}
.ws6b{word-spacing:-0.181333pt;}
.ws5b{word-spacing:-0.176000pt;}
.ws73{word-spacing:-0.160000pt;}
.ws18{word-spacing:-0.117333pt;}
.ws22{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws31{word-spacing:0.058667pt;}
.ws15{word-spacing:0.117333pt;}
.wsc{word-spacing:0.176000pt;}
.ws13{word-spacing:0.234667pt;}
.ws2d{word-spacing:0.293333pt;}
.ws45{word-spacing:0.352000pt;}
.ws83{word-spacing:0.469333pt;}
.ws33{word-spacing:0.586667pt;}
.ws32{word-spacing:0.645333pt;}
.ws66{word-spacing:0.704000pt;}
.ws37{word-spacing:0.762667pt;}
.ws5f{word-spacing:0.821333pt;}
.ws10{word-spacing:0.880000pt;}
.ws11{word-spacing:0.938667pt;}
.ws52{word-spacing:1.056000pt;}
.ws34{word-spacing:1.114667pt;}
.ws57{word-spacing:1.173333pt;}
.ws21{word-spacing:1.232000pt;}
.ws16{word-spacing:1.349333pt;}
.ws8b{word-spacing:1.408000pt;}
.ws56{word-spacing:1.466667pt;}
.ws8{word-spacing:1.525333pt;}
.ws70{word-spacing:1.584000pt;}
.ws75{word-spacing:1.600000pt;}
.ws3f{word-spacing:1.642667pt;}
.ws5c{word-spacing:1.760000pt;}
.ws3e{word-spacing:1.818667pt;}
.ws30{word-spacing:1.877333pt;}
.ws4f{word-spacing:1.936000pt;}
.ws3a{word-spacing:1.994667pt;}
.ws2a{word-spacing:2.112000pt;}
.ws79{word-spacing:2.170667pt;}
.ws27{word-spacing:2.229333pt;}
.wsd{word-spacing:2.288000pt;}
.ws4e{word-spacing:2.346667pt;}
.ws68{word-spacing:2.405333pt;}
.ws5{word-spacing:2.464000pt;}
.ws59{word-spacing:2.581333pt;}
.ws1e{word-spacing:2.640000pt;}
.ws4b{word-spacing:2.698667pt;}
.ws78{word-spacing:2.816000pt;}
.ws1a{word-spacing:2.874667pt;}
.ws84{word-spacing:2.992000pt;}
.ws62{word-spacing:3.050667pt;}
.ws14{word-spacing:3.109333pt;}
.ws7c{word-spacing:3.168000pt;}
.ws26{word-spacing:3.344000pt;}
.ws7f{word-spacing:3.520000pt;}
.ws25{word-spacing:3.754667pt;}
.ws77{word-spacing:3.813333pt;}
.ws63{word-spacing:3.872000pt;}
.ws69{word-spacing:3.930667pt;}
.ws23{word-spacing:4.106667pt;}
.ws55{word-spacing:4.165333pt;}
.ws76{word-spacing:4.224000pt;}
.ws87{word-spacing:4.282667pt;}
.ws88{word-spacing:4.400000pt;}
.ws2b{word-spacing:4.458667pt;}
.ws67{word-spacing:4.693333pt;}
.wse{word-spacing:4.752000pt;}
.ws39{word-spacing:4.986667pt;}
.ws4a{word-spacing:5.045333pt;}
.ws1c{word-spacing:5.104000pt;}
.ws2c{word-spacing:5.162667pt;}
.wsf{word-spacing:5.338667pt;}
.ws1f{word-spacing:5.690667pt;}
.wsb{word-spacing:5.808000pt;}
.ws4c{word-spacing:5.925333pt;}
.ws8c{word-spacing:6.160000pt;}
.ws38{word-spacing:6.570667pt;}
.ws50{word-spacing:7.098667pt;}
.ws6a{word-spacing:7.568000pt;}
.ws20{word-spacing:7.802667pt;}
.ws86{word-spacing:8.506667pt;}
.ws7e{word-spacing:9.269333pt;}
._13{margin-left:-23.296533pt;}
._e{margin-left:-20.052267pt;}
._b{margin-left:-16.436800pt;}
._d{margin-left:-14.085333pt;}
._14{margin-left:-9.600000pt;}
._10{margin-left:-8.531200pt;}
._16{margin-left:-7.460800pt;}
._4{margin-left:-6.549333pt;}
._8{margin-left:-5.549867pt;}
._1{margin-left:-3.861333pt;}
._3{margin-left:-2.896000pt;}
._0{margin-left:-1.814400pt;}
._5{margin-left:-0.901333pt;}
._2{width:1.002667pt;}
._6{width:2.432000pt;}
._a{width:3.332267pt;}
._7{width:4.464533pt;}
._9{width:5.913600pt;}
._c{width:7.188800pt;}
._f{width:8.684267pt;}
._12{width:9.640533pt;}
._15{width:10.809067pt;}
._11{width:176.266667pt;}
.fsc{font-size:46.933333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fsd{font-size:90.666667pt;}
.fse{font-size:96.000000pt;}
.fsf{font-size:106.666667pt;}
.fs11{font-size:117.333333pt;}
.fsa{font-size:128.000000pt;}
.fs7{font-size:138.148267pt;}
.fs2{font-size:150.193600pt;}
.fs10{font-size:176.000000pt;}
.fs6{font-size:336.917333pt;}
.fs1{font-size:366.293333pt;}
.yf{bottom:-0.000533pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.000533pt;}
.y9{bottom:0.637733pt;}
.y11{bottom:0.638000pt;}
.y1{bottom:14.882800pt;}
.y2ed{bottom:29.460400pt;}
.y3b8{bottom:30.603467pt;}
.y2e8{bottom:31.435467pt;}
.y276{bottom:36.869733pt;}
.y4a{bottom:37.524400pt;}
.y2b0{bottom:38.869733pt;}
.y31d{bottom:39.536400pt;}
.y322{bottom:40.869733pt;}
.y2ec{bottom:45.460400pt;}
.y2ac{bottom:46.768800pt;}
.y2e7{bottom:47.435467pt;}
.y2de{bottom:48.768800pt;}
.y360{bottom:49.238133pt;}
.y38e{bottom:49.252800pt;}
.y179{bottom:49.494133pt;}
.ya6{bottom:49.606133pt;}
.y274{bottom:50.203067pt;}
.y370{bottom:50.475467pt;}
.y1ee{bottom:50.539467pt;}
.y2a8{bottom:50.869733pt;}
.y38c{bottom:52.058933pt;}
.y21e{bottom:52.139467pt;}
.y240{bottom:52.159467pt;}
.y2e3{bottom:52.302800pt;}
.y275{bottom:52.869733pt;}
.y49{bottom:53.525733pt;}
.y2af{bottom:54.869733pt;}
.y1ae{bottom:55.059733pt;}
.y31c{bottom:55.536400pt;}
.y300{bottom:55.740800pt;}
.y321{bottom:56.869733pt;}
.y119{bottom:58.283067pt;}
.y374{bottom:58.580800pt;}
.y89{bottom:59.059733pt;}
.y3a2{bottom:59.776800pt;}
.y36a{bottom:59.900800pt;}
.ycb{bottom:61.171733pt;}
.y2eb{bottom:61.460400pt;}
.y334{bottom:62.584800pt;}
.y2ab{bottom:62.768800pt;}
.y26b{bottom:63.104933pt;}
.y2e6{bottom:63.435467pt;}
.y203{bottom:63.610133pt;}
.y3d0{bottom:63.752800pt;}
.y2dd{bottom:64.768800pt;}
.y3b7{bottom:65.275467pt;}
.ye5{bottom:65.416800pt;}
.y27a{bottom:65.565333pt;}
.y273{bottom:66.203067pt;}
.y178{bottom:66.434133pt;}
.y2a7{bottom:66.869733pt;}
.ya5{bottom:67.206133pt;}
.y1ed{bottom:68.139467pt;}
.y2e2{bottom:68.302800pt;}
.y26f{bottom:68.869733pt;}
.y48{bottom:69.527067pt;}
.y21d{bottom:69.739467pt;}
.y23f{bottom:69.759467pt;}
.y342{bottom:70.480800pt;}
.y2ae{bottom:70.869733pt;}
.y31b{bottom:71.536400pt;}
.y1cf{bottom:71.610133pt;}
.y1ad{bottom:72.659733pt;}
.y320{bottom:72.869733pt;}
.y34c{bottom:73.247467pt;}
.y24{bottom:74.609467pt;}
.y69{bottom:74.841733pt;}
.y15b{bottom:75.234133pt;}
.y2ff{bottom:75.746133pt;}
.y35f{bottom:75.902133pt;}
.y88{bottom:76.659733pt;}
.y2ea{bottom:77.460400pt;}
.y35c{bottom:78.559467pt;}
.y2aa{bottom:78.768800pt;}
.y26a{bottom:79.104933pt;}
.y2e5{bottom:79.435467pt;}
.y13a{bottom:79.983067pt;}
.y2dc{bottom:80.768800pt;}
.y202{bottom:81.210133pt;}
.y279{bottom:81.565333pt;}
.y272{bottom:82.203067pt;}
.yca{bottom:82.511733pt;}
.y2a6{bottom:82.869733pt;}
.y177{bottom:83.374133pt;}
.y2e1{bottom:84.302800pt;}
.y26e{bottom:84.869733pt;}
.ye4{bottom:85.422133pt;}
.y47{bottom:85.528400pt;}
.y1ec{bottom:85.739467pt;}
.y118{bottom:86.545733pt;}
.y2ad{bottom:86.869733pt;}
.y23e{bottom:87.359467pt;}
.y324{bottom:87.536400pt;}
.y31a{bottom:88.062400pt;}
.y31f{bottom:88.869733pt;}
.y23{bottom:89.009467pt;}
.y1ce{bottom:89.210133pt;}
.y3b6{bottom:89.270133pt;}
.y15a{bottom:91.235467pt;}
.y2e9{bottom:93.460400pt;}
.y87{bottom:94.259733pt;}
.y2a9{bottom:94.768800pt;}
.y269{bottom:95.104933pt;}
.y2e4{bottom:95.435467pt;}
.ya4{bottom:95.468800pt;}
.y2fe{bottom:95.751467pt;}
.y139{bottom:95.984400pt;}
.y2db{bottom:96.768800pt;}
.y278{bottom:97.565333pt;}
.y21c{bottom:98.002133pt;}
.y271{bottom:98.203067pt;}
.y2a5{bottom:98.869733pt;}
.y2e0{bottom:100.302800pt;}
.y176{bottom:100.314133pt;}
.y26d{bottom:100.869733pt;}
.y1ac{bottom:100.922400pt;}
.y369{bottom:101.148800pt;}
.y46{bottom:101.529733pt;}
.y68{bottom:103.104400pt;}
.y1eb{bottom:103.339467pt;}
.y22{bottom:103.409467pt;}
.y323{bottom:103.536400pt;}
.yc9{bottom:103.851733pt;}
.y117{bottom:103.881733pt;}
.y31e{bottom:104.869733pt;}
.y262{bottom:104.927467pt;}
.y23d{bottom:104.959467pt;}
.y1cd{bottom:106.810133pt;}
.y159{bottom:107.236800pt;}
.y319{bottom:108.067733pt;}
.y201{bottom:109.472800pt;}
.y24a{bottom:110.007467pt;}
.y268{bottom:111.104933pt;}
.y138{bottom:111.985733pt;}
.y2da{bottom:112.768800pt;}
.ya3{bottom:113.068800pt;}
.y3b5{bottom:113.264800pt;}
.y38b{bottom:113.394933pt;}
.y277{bottom:113.565333pt;}
.y270{bottom:114.203067pt;}
.y21b{bottom:115.602133pt;}
.y2fd{bottom:115.756800pt;}
.ye3{bottom:116.090133pt;}
.y2df{bottom:116.302800pt;}
.y26c{bottom:116.869733pt;}
.y175{bottom:117.254133pt;}
.y45{bottom:117.531067pt;}
.y21{bottom:117.809467pt;}
.y1ab{bottom:118.522400pt;}
.y373{bottom:118.582133pt;}
.y67{bottom:120.704400pt;}
.y1ea{bottom:120.939467pt;}
.y116{bottom:121.217733pt;}
.y86{bottom:122.522400pt;}
.y261{bottom:122.527467pt;}
.y158{bottom:123.238133pt;}
.y1cc{bottom:124.410133pt;}
.y3cf{bottom:125.088800pt;}
.yc8{bottom:125.191733pt;}
.y200{bottom:127.072800pt;}
.y267{bottom:127.104933pt;}
.y137{bottom:127.987067pt;}
.y318{bottom:128.073067pt;}
.ya2{bottom:130.668800pt;}
.y20{bottom:132.209467pt;}
.y21a{bottom:133.202133pt;}
.y23c{bottom:133.222133pt;}
.y38a{bottom:133.400267pt;}
.y44{bottom:133.532400pt;}
.y174{bottom:134.194133pt;}
.y2fc{bottom:135.762133pt;}
.y1aa{bottom:136.122400pt;}
.y3b4{bottom:137.259467pt;}
.ye2{bottom:137.430133pt;}
.y249{bottom:138.270133pt;}
.y66{bottom:138.304400pt;}
.y1e9{bottom:138.539467pt;}
.y115{bottom:138.553733pt;}
.y85{bottom:140.122400pt;}
.y260{bottom:140.127467pt;}
.yd{bottom:140.949733pt;}
.y5{bottom:141.800133pt;}
.y1cb{bottom:142.010133pt;}
.y372{bottom:142.576800pt;}
.y136{bottom:143.988400pt;}
.y1ff{bottom:144.672800pt;}
.y3ce{bottom:145.094133pt;}
.yc7{bottom:146.531733pt;}
.y1f{bottom:146.609467pt;}
.y317{bottom:148.078400pt;}
.y43{bottom:149.533733pt;}
.y157{bottom:149.902133pt;}
.y219{bottom:150.802133pt;}
.y23b{bottom:150.822133pt;}
.y173{bottom:151.134133pt;}
.y3a1{bottom:151.780800pt;}
.y389{bottom:153.405600pt;}
.y1a9{bottom:153.722400pt;}
.y2fb{bottom:155.767467pt;}
.y114{bottom:155.889733pt;}
.y1e8{bottom:156.139467pt;}
.y84{bottom:157.722400pt;}
.y25f{bottom:157.727467pt;}
.y2c4{bottom:157.877733pt;}
.ye1{bottom:158.770133pt;}
.ya1{bottom:158.931467pt;}
.y1ca{bottom:159.610133pt;}
.y135{bottom:159.989733pt;}
.y3b3{bottom:161.254133pt;}
.y1fe{bottom:162.272800pt;}
.y3cd{bottom:165.099467pt;}
.y28d{bottom:165.110133pt;}
.y42{bottom:165.535067pt;}
.y156{bottom:165.903467pt;}
.y248{bottom:166.532800pt;}
.y65{bottom:166.567067pt;}
.y371{bottom:166.571467pt;}
.yc{bottom:167.624400pt;}
.yc6{bottom:167.871733pt;}
.y172{bottom:168.074133pt;}
.y316{bottom:168.083733pt;}
.y218{bottom:168.402133pt;}
.y23a{bottom:168.422133pt;}
.y4{bottom:168.474800pt;}
.y1a8{bottom:171.322400pt;}
.y3a0{bottom:171.786133pt;}
.y113{bottom:173.225733pt;}
.y388{bottom:173.410933pt;}
.y2a4{bottom:173.426400pt;}
.y1e7{bottom:173.739467pt;}
.y83{bottom:175.322400pt;}
.y134{bottom:175.991067pt;}
.y191{bottom:176.018133pt;}
.ya0{bottom:176.531467pt;}
.y1c9{bottom:177.210133pt;}
.y34b{bottom:177.248800pt;}
.y1e{bottom:178.669733pt;}
.ye0{bottom:180.110133pt;}
.y41{bottom:181.536400pt;}
.y155{bottom:181.904800pt;}
.y35b{bottom:182.560800pt;}
.y64{bottom:184.167067pt;}
.y171{bottom:185.014133pt;}
.y3cc{bottom:185.104800pt;}
.y28c{bottom:185.115467pt;}
.y3b2{bottom:185.248800pt;}
.y25e{bottom:185.990133pt;}
.y239{bottom:186.022133pt;}
.y2c3{bottom:186.140400pt;}
.y2fa{bottom:186.435467pt;}
.y315{bottom:188.089067pt;}
.y1a7{bottom:188.922400pt;}
.yc5{bottom:189.211733pt;}
.y1fd{bottom:190.535467pt;}
.y112{bottom:190.561733pt;}
.y39f{bottom:191.791467pt;}
.y133{bottom:191.992400pt;}
.y82{bottom:192.922400pt;}
.y2a3{bottom:193.431733pt;}
.y9f{bottom:194.131467pt;}
.y1c8{bottom:194.810133pt;}
.y217{bottom:196.664800pt;}
.y40{bottom:197.537733pt;}
.y1d{bottom:197.869733pt;}
.y154{bottom:197.906133pt;}
.y34a{bottom:201.243467pt;}
.ydf{bottom:201.450133pt;}
.y63{bottom:201.767067pt;}
.y170{bottom:201.954133pt;}
.y1e6{bottom:202.002133pt;}
.y190{bottom:203.547467pt;}
.y25d{bottom:203.590133pt;}
.y238{bottom:203.622133pt;}
.y387{bottom:204.078933pt;}
.y3cb{bottom:205.110133pt;}
.y2c2{bottom:206.145733pt;}
.y2f9{bottom:206.440800pt;}
.y1a6{bottom:206.522400pt;}
.y35a{bottom:206.555467pt;}
.y111{bottom:207.897733pt;}
.y1fc{bottom:208.135467pt;}
.y3b1{bottom:209.243467pt;}
.y81{bottom:210.522400pt;}
.yc4{bottom:210.551733pt;}
.y9e{bottom:211.731467pt;}
.y3f{bottom:213.539067pt;}
.y1c{bottom:213.869733pt;}
.y153{bottom:213.907467pt;}
.y216{bottom:214.264800pt;}
.y28b{bottom:215.783467pt;}
.y3da{bottom:218.057733pt;}
.y3e2{bottom:218.644400pt;}
.y132{bottom:218.656400pt;}
.y314{bottom:218.757067pt;}
.y16f{bottom:218.894133pt;}
.y62{bottom:219.367067pt;}
.y25c{bottom:221.190133pt;}
.y39e{bottom:222.459467pt;}
.yde{bottom:222.790133pt;}
.y1c7{bottom:223.072800pt;}
.y386{bottom:224.084267pt;}
.y2a2{bottom:224.099733pt;}
.y1a5{bottom:224.122400pt;}
.y3ca{bottom:225.115467pt;}
.y110{bottom:225.233733pt;}
.y349{bottom:225.238133pt;}
.y1fb{bottom:225.735467pt;}
.y2c1{bottom:226.151067pt;}
.y2f8{bottom:226.446133pt;}
.y9d{bottom:229.331467pt;}
.y1b{bottom:229.869733pt;}
.y152{bottom:229.908800pt;}
.y1e5{bottom:230.264800pt;}
.y2d8{bottom:230.331467pt;}
.y359{bottom:230.550133pt;}
.y18f{bottom:231.076800pt;}
.y215{bottom:231.864800pt;}
.y237{bottom:231.884800pt;}
.yc3{bottom:231.891733pt;}
.y3b0{bottom:233.238133pt;}
.y36f{bottom:234.468800pt;}
.y131{bottom:234.657733pt;}
.y266{bottom:235.733333pt;}
.y28a{bottom:235.788800pt;}
.y16e{bottom:235.834133pt;}
.y333{bottom:235.915467pt;}
.yf9{bottom:236.762133pt;}
.y61{bottom:236.967067pt;}
.y313{bottom:238.762400pt;}
.y80{bottom:238.785067pt;}
.y25b{bottom:238.790133pt;}
.y3e{bottom:240.203067pt;}
.y1c6{bottom:240.672800pt;}
.y1a4{bottom:241.722400pt;}
.y39d{bottom:242.464800pt;}
.y10f{bottom:242.569733pt;}
.y1fa{bottom:243.335467pt;}
.y385{bottom:244.089600pt;}
.y2a1{bottom:244.105067pt;}
.y3c9{bottom:245.120800pt;}
.y1a{bottom:245.869733pt;}
.y151{bottom:245.910133pt;}
.y2c0{bottom:246.156400pt;}
.y2f7{bottom:246.451467pt;}
.y1e4{bottom:247.864800pt;}
.y2d7{bottom:247.931467pt;}
.y3d9{bottom:248.725733pt;}
.y348{bottom:249.232800pt;}
.y3e1{bottom:249.312400pt;}
.y214{bottom:249.464800pt;}
.y236{bottom:249.484800pt;}
.y130{bottom:250.659067pt;}
.y16d{bottom:252.774133pt;}
.yc2{bottom:253.231733pt;}
.y36e{bottom:254.474133pt;}
.y223{bottom:254.532800pt;}
.y358{bottom:254.544800pt;}
.y60{bottom:254.567067pt;}
.y289{bottom:255.794133pt;}
.y3d{bottom:256.204400pt;}
.y7f{bottom:256.385067pt;}
.y25a{bottom:256.390133pt;}
.yf8{bottom:256.767467pt;}
.y3af{bottom:257.232800pt;}
.y9c{bottom:257.594133pt;}
.y1c5{bottom:258.272800pt;}
.y18e{bottom:258.606133pt;}
.y312{bottom:258.767733pt;}
.y1a3{bottom:259.322400pt;}
.y10e{bottom:259.905733pt;}
.y332{bottom:259.910133pt;}
.ydd{bottom:260.116800pt;}
.y19{bottom:261.869733pt;}
.y150{bottom:261.911467pt;}
.y39c{bottom:262.470133pt;}
.y384{bottom:264.094933pt;}
.y2a0{bottom:264.110400pt;}
.y3c8{bottom:265.126133pt;}
.y1e3{bottom:265.464800pt;}
.y2d6{bottom:265.531467pt;}
.y2f6{bottom:266.456800pt;}
.y12f{bottom:266.660400pt;}
.y235{bottom:267.084800pt;}
.y1f9{bottom:271.598133pt;}
.y5f{bottom:272.167067pt;}
.y3c{bottom:272.205733pt;}
.y347{bottom:273.227467pt;}
.y7e{bottom:273.985067pt;}
.y259{bottom:273.990133pt;}
.y36d{bottom:274.479467pt;}
.y9b{bottom:275.194133pt;}
.y288{bottom:275.799467pt;}
.y247{bottom:275.872800pt;}
.yf7{bottom:276.772800pt;}
.y2bf{bottom:276.824400pt;}
.y1a2{bottom:276.922400pt;}
.y10d{bottom:277.241733pt;}
.y213{bottom:277.727467pt;}
.y18{bottom:277.869733pt;}
.y14f{bottom:277.912800pt;}
.y357{bottom:278.539467pt;}
.y311{bottom:278.773067pt;}
.y3d8{bottom:279.393733pt;}
.y3e0{bottom:279.980400pt;}
.y16c{bottom:280.376800pt;}
.y16{bottom:281.135867pt;}
.y3ae{bottom:281.227467pt;}
.ydc{bottom:281.456800pt;}
.y39b{bottom:282.475467pt;}
.y1e2{bottom:283.064800pt;}
.y2d5{bottom:283.131467pt;}
.y331{bottom:283.904800pt;}
.y383{bottom:284.100267pt;}
.y29f{bottom:284.115733pt;}
.y234{bottom:284.684800pt;}
.y3c7{bottom:285.131467pt;}
.y341{bottom:285.142133pt;}
.yc1{bottom:285.234400pt;}
.y2f5{bottom:286.462133pt;}
.y1c4{bottom:286.535467pt;}
.y18d{bottom:286.868800pt;}
.y3b{bottom:288.207067pt;}
.y1f8{bottom:289.198133pt;}
.y7d{bottom:291.585067pt;}
.y258{bottom:291.590133pt;}
.y9a{bottom:292.794133pt;}
.y12e{bottom:293.324400pt;}
.y17{bottom:293.869733pt;}
.y14e{bottom:293.914133pt;}
.yf6{bottom:296.778133pt;}
.y2be{bottom:296.829733pt;}
.y346{bottom:297.222133pt;}
.y16b{bottom:297.316800pt;}
.y310{bottom:298.778400pt;}
.y5e{bottom:300.429733pt;}
.y1e1{bottom:300.664800pt;}
.y2d4{bottom:300.731467pt;}
.y233{bottom:302.284800pt;}
.y356{bottom:302.534133pt;}
.ydb{bottom:302.796800pt;}
.y382{bottom:304.105600pt;}
.y29e{bottom:304.121067pt;}
.y1c3{bottom:304.135467pt;}
.y3a{bottom:304.208400pt;}
.y18c{bottom:304.468800pt;}
.y3c6{bottom:305.136800pt;}
.y340{bottom:305.147467pt;}
.y1a1{bottom:305.185067pt;}
.y3ad{bottom:305.222133pt;}
.y10c{bottom:305.240400pt;}
.y212{bottom:305.990133pt;}
.y287{bottom:306.467467pt;}
.yc0{bottom:306.574400pt;}
.y1f7{bottom:306.798133pt;}
.y330{bottom:307.899467pt;}
.y7c{bottom:309.185067pt;}
.y257{bottom:309.190133pt;}
.y12d{bottom:309.325733pt;}
.y3d7{bottom:310.061733pt;}
.y99{bottom:310.394133pt;}
.y3df{bottom:310.648400pt;}
.y222{bottom:311.072800pt;}
.y39a{bottom:313.143467pt;}
.y16a{bottom:314.256800pt;}
.yf5{bottom:316.783467pt;}
.y2bd{bottom:316.835067pt;}
.y2f4{bottom:317.130133pt;}
.y5d{bottom:318.029733pt;}
.y1e0{bottom:318.264800pt;}
.y30f{bottom:318.783733pt;}
.y232{bottom:319.884800pt;}
.y39{bottom:320.209733pt;}
.y14d{bottom:320.578133pt;}
.y1c2{bottom:321.735467pt;}
.y18b{bottom:322.068800pt;}
.y10b{bottom:322.576400pt;}
.y1a0{bottom:322.785067pt;}
.y381{bottom:324.110933pt;}
.y29d{bottom:324.126400pt;}
.yda{bottom:324.136800pt;}
.y3c5{bottom:325.142133pt;}
.y33f{bottom:325.152800pt;}
.y12c{bottom:325.327067pt;}
.y286{bottom:326.472800pt;}
.ybf{bottom:327.914400pt;}
.y98{bottom:327.994133pt;}
.y221{bottom:328.672800pt;}
.y2d3{bottom:328.994133pt;}
.y169{bottom:331.196800pt;}
.y32f{bottom:331.894133pt;}
.y399{bottom:333.148800pt;}
.y211{bottom:334.256800pt;}
.y1f6{bottom:335.060800pt;}
.y5c{bottom:335.629733pt;}
.y368{bottom:335.815467pt;}
.y1df{bottom:335.864800pt;}
.y38{bottom:336.211067pt;}
.y14c{bottom:336.579467pt;}
.yf4{bottom:336.788800pt;}
.y2bc{bottom:336.840400pt;}
.y2f3{bottom:337.135467pt;}
.y355{bottom:337.206133pt;}
.y7b{bottom:337.447733pt;}
.y256{bottom:337.456800pt;}
.y231{bottom:337.484800pt;}
.y30e{bottom:338.789067pt;}
.y1c1{bottom:339.335467pt;}
.y18a{bottom:339.668800pt;}
.y3ac{bottom:339.894133pt;}
.y10a{bottom:339.912400pt;}
.y19f{bottom:340.385067pt;}
.y3d6{bottom:340.729733pt;}
.y3de{bottom:341.316400pt;}
.y12b{bottom:341.328400pt;}
.y380{bottom:344.116267pt;}
.y29c{bottom:344.131733pt;}
.y3c4{bottom:345.147467pt;}
.y33e{bottom:345.158133pt;}
.yd9{bottom:345.476800pt;}
.y285{bottom:346.478133pt;}
.y2d2{bottom:346.594133pt;}
.y168{bottom:348.136800pt;}
.ybe{bottom:349.254400pt;}
.y37{bottom:352.212400pt;}
.y14b{bottom:352.580800pt;}
.y1f5{bottom:352.660800pt;}
.y398{bottom:353.154133pt;}
.y5b{bottom:353.229733pt;}
.y1de{bottom:353.464800pt;}
.y7a{bottom:355.047733pt;}
.y367{bottom:355.820800pt;}
.y32e{bottom:355.888800pt;}
.y97{bottom:356.256800pt;}
.yf3{bottom:356.794133pt;}
.y2bb{bottom:356.845733pt;}
.y1c0{bottom:356.935467pt;}
.y2f2{bottom:357.140800pt;}
.y109{bottom:357.248400pt;}
.y12a{bottom:357.329733pt;}
.y19e{bottom:357.985067pt;}
.y30d{bottom:358.794400pt;}
.y354{bottom:361.200800pt;}
.y210{bottom:362.539467pt;}
.y3ab{bottom:363.888800pt;}
.y29b{bottom:364.137067pt;}
.y2d1{bottom:364.194133pt;}
.y167{bottom:365.076800pt;}
.y3c3{bottom:365.152800pt;}
.y33d{bottom:365.163467pt;}
.y230{bottom:365.747467pt;}
.y15{bottom:365.935867pt;}
.y284{bottom:366.483467pt;}
.y189{bottom:367.931467pt;}
.y36{bottom:368.213733pt;}
.y14a{bottom:368.582133pt;}
.ybd{bottom:370.594400pt;}
.y5a{bottom:370.829733pt;}
.y3d5{bottom:371.397733pt;}
.y3dd{bottom:371.984400pt;}
.y79{bottom:372.647733pt;}
.y397{bottom:373.159467pt;}
.y96{bottom:373.856800pt;}
.y220{bottom:374.535467pt;}
.y37f{bottom:374.784267pt;}
.y366{bottom:375.826133pt;}
.y2f1{bottom:377.146133pt;}
.y30c{bottom:378.799733pt;}
.y345{bottom:379.883467pt;}
.y1f4{bottom:380.923467pt;}
.y1dd{bottom:381.727467pt;}
.y2d0{bottom:381.794133pt;}
.y166{bottom:382.016800pt;}
.yd8{bottom:382.803467pt;}
.y22f{bottom:383.347467pt;}
.y129{bottom:383.993733pt;}
.y35{bottom:384.215067pt;}
.y149{bottom:384.583467pt;}
.y33c{bottom:385.168800pt;}
.y353{bottom:385.195467pt;}
.y1bf{bottom:385.198133pt;}
.y108{bottom:385.247067pt;}
.y188{bottom:385.531467pt;}
.y19d{bottom:386.247733pt;}
.yf2{bottom:387.462133pt;}
.y2ba{bottom:387.513733pt;}
.y3aa{bottom:387.883467pt;}
.y14{bottom:388.335867pt;}
.y59{bottom:388.429733pt;}
.y78{bottom:390.247733pt;}
.y32d{bottom:390.560800pt;}
.y20f{bottom:390.802133pt;}
.y95{bottom:391.456800pt;}
.y21f{bottom:392.135467pt;}
.y396{bottom:393.164800pt;}
.y37e{bottom:394.789600pt;}
.y29a{bottom:394.805067pt;}
.y3c2{bottom:395.820800pt;}
.y365{bottom:395.831467pt;}
.y283{bottom:397.151467pt;}
.y255{bottom:398.794133pt;}
.y30b{bottom:398.805067pt;}
.y165{bottom:398.956800pt;}
.y1dc{bottom:399.327467pt;}
.y2cf{bottom:399.394133pt;}
.y128{bottom:399.995067pt;}
.y148{bottom:400.584800pt;}
.y22e{bottom:400.947467pt;}
.y3d4{bottom:402.065733pt;}
.ybc{bottom:402.597067pt;}
.y3dc{bottom:402.652400pt;}
.y1be{bottom:402.798133pt;}
.y187{bottom:403.131467pt;}
.y19c{bottom:403.847733pt;}
.y344{bottom:403.878133pt;}
.yd7{bottom:404.143467pt;}
.y33b{bottom:405.174133pt;}
.y58{bottom:406.029733pt;}
.yf1{bottom:407.467467pt;}
.y2b9{bottom:407.519067pt;}
.y77{bottom:407.847733pt;}
.y20e{bottom:408.402133pt;}
.y94{bottom:409.056800pt;}
.y1f3{bottom:409.190133pt;}
.y34{bottom:410.879067pt;}
.y3a9{bottom:411.878133pt;}
.y395{bottom:413.170133pt;}
.y107{bottom:413.245733pt;}
.y32c{bottom:414.555467pt;}
.y37d{bottom:414.794933pt;}
.y299{bottom:414.810400pt;}
.y3c1{bottom:415.826133pt;}
.y36c{bottom:415.836800pt;}
.y164{bottom:415.896800pt;}
.y127{bottom:415.996400pt;}
.y254{bottom:416.394133pt;}
.y1db{bottom:416.927467pt;}
.y282{bottom:417.156800pt;}
.y22d{bottom:418.547467pt;}
.y30a{bottom:418.810400pt;}
.y1bd{bottom:420.398133pt;}
.y186{bottom:420.731467pt;}
.y19b{bottom:421.447733pt;}
.y57{bottom:423.629733pt;}
.ybb{bottom:423.937067pt;}
.ya7{bottom:424.266667pt;}
.y33a{bottom:425.179467pt;}
.y76{bottom:425.447733pt;}
.yd6{bottom:425.483467pt;}
.y20d{bottom:426.002133pt;}
.y364{bottom:426.499467pt;}
.y93{bottom:426.656800pt;}
.y33{bottom:426.880400pt;}
.y147{bottom:427.248800pt;}
.yf0{bottom:427.472800pt;}
.y2b8{bottom:427.524400pt;}
.y2ce{bottom:427.656800pt;}
.y35e{bottom:427.872800pt;}
.y106{bottom:430.581733pt;}
.y126{bottom:431.997733pt;}
.y3d3{bottom:432.733733pt;}
.y163{bottom:432.836800pt;}
.y13{bottom:433.135867pt;}
.y352{bottom:433.184800pt;}
.y3db{bottom:433.320400pt;}
.y253{bottom:433.994133pt;}
.y1da{bottom:434.527467pt;}
.y37c{bottom:434.800267pt;}
.y298{bottom:434.815733pt;}
.y3c0{bottom:435.831467pt;}
.y36b{bottom:435.842133pt;}
.y1f2{bottom:435.856800pt;}
.y3a8{bottom:435.872800pt;}
.y22c{bottom:436.147467pt;}
.y281{bottom:437.162133pt;}
.y1bc{bottom:437.998133pt;}
.y185{bottom:438.331467pt;}
.y32b{bottom:438.550133pt;}
.y19a{bottom:439.047733pt;}
.y56{bottom:441.229733pt;}
.y32{bottom:442.881733pt;}
.y146{bottom:443.250133pt;}
.y394{bottom:443.838133pt;}
.y92{bottom:444.256800pt;}
.y2cd{bottom:445.256800pt;}
.yba{bottom:445.277067pt;}
.y363{bottom:446.504800pt;}
.yd5{bottom:446.823467pt;}
.yef{bottom:447.478133pt;}
.y2b7{bottom:447.529733pt;}
.y2f0{bottom:447.824800pt;}
.y105{bottom:447.917733pt;}
.y125{bottom:447.999067pt;}
.y309{bottom:449.478400pt;}
.y162{bottom:449.776800pt;}
.y252{bottom:451.594133pt;}
.y1d9{bottom:452.127467pt;}
.y75{bottom:453.710400pt;}
.y20c{bottom:454.264800pt;}
.y37b{bottom:454.805600pt;}
.y297{bottom:454.821067pt;}
.y12{bottom:455.535867pt;}
.y1bb{bottom:455.598133pt;}
.y3bf{bottom:455.836800pt;}
.y339{bottom:455.847467pt;}
.y184{bottom:455.931467pt;}
.y199{bottom:456.647733pt;}
.y280{bottom:457.167467pt;}
.y351{bottom:457.179467pt;}
.y31{bottom:458.883067pt;}
.y145{bottom:459.251467pt;}
.y3a7{bottom:459.867467pt;}
.yb2{bottom:460.868800pt;}
.y1f1{bottom:462.535467pt;}
.y32a{bottom:462.544800pt;}
.y2cc{bottom:462.856800pt;}
.y393{bottom:463.843467pt;}
.y124{bottom:464.000400pt;}
.y22b{bottom:464.410133pt;}
.y104{bottom:465.253733pt;}
.y362{bottom:466.510133pt;}
.yb9{bottom:466.617067pt;}
.y161{bottom:466.716800pt;}
.y2b6{bottom:467.535067pt;}
.y2ef{bottom:467.830133pt;}
.y27b{bottom:468.566667pt;}
.y308{bottom:469.483733pt;}
.y55{bottom:469.492400pt;}
.y74{bottom:471.310400pt;}
.y20b{bottom:471.864800pt;}
.y91{bottom:472.518133pt;}
.y1ba{bottom:473.198133pt;}
.y183{bottom:473.531467pt;}
.y198{bottom:474.247733pt;}
.y37a{bottom:474.810933pt;}
.y296{bottom:474.826400pt;}
.y30{bottom:474.884400pt;}
.y144{bottom:475.252800pt;}
.y3be{bottom:475.842133pt;}
.y338{bottom:475.852800pt;}
.y27f{bottom:477.172800pt;}
.yee{bottom:478.146133pt;}
.y251{bottom:479.856800pt;}
.y123{bottom:480.001733pt;}
.y1d8{bottom:480.390133pt;}
.y2cb{bottom:480.456800pt;}
.y22a{bottom:482.010133pt;}
.y103{bottom:482.589733pt;}
.y2b1{bottom:483.728133pt;}
.y392{bottom:483.848800pt;}
.y246{bottom:483.860800pt;}
.y3a6{bottom:483.862133pt;}
.yd4{bottom:484.150133pt;}
.y361{bottom:486.515467pt;}
.y329{bottom:486.539467pt;}
.y54{bottom:487.092400pt;}
.y2ee{bottom:487.835467pt;}
.yb8{bottom:487.957067pt;}
.y73{bottom:488.910400pt;}
.yb1{bottom:489.131467pt;}
.y20a{bottom:489.464800pt;}
.y307{bottom:489.489067pt;}
.y1b9{bottom:490.798133pt;}
.y2f{bottom:490.885733pt;}
.y182{bottom:491.131467pt;}
.y143{bottom:491.254133pt;}
.y197{bottom:491.847733pt;}
.y350{bottom:491.851467pt;}
.y343{bottom:492.600000pt;}
.y160{bottom:494.319467pt;}
.y3bd{bottom:495.847467pt;}
.y122{bottom:496.003067pt;}
.y325{bottom:497.061467pt;}
.y250{bottom:497.456800pt;}
.y2ca{bottom:498.056800pt;}
.yed{bottom:498.151467pt;}
.y2b5{bottom:498.203067pt;}
.y229{bottom:499.610133pt;}
.y10{bottom:500.020000pt;}
.yb{bottom:500.658000pt;}
.y8{bottom:500.870667pt;}
.y245{bottom:501.460800pt;}
.y3{bottom:501.508400pt;}
.y90{bottom:502.390133pt;}
.y391{bottom:503.854133pt;}
.y53{bottom:504.692400pt;}
.y379{bottom:505.478933pt;}
.yd3{bottom:505.490133pt;}
.y295{bottom:505.494400pt;}
.y72{bottom:506.510400pt;}
.y337{bottom:506.520800pt;}
.yb0{bottom:506.731467pt;}
.y2e{bottom:506.887067pt;}
.y209{bottom:507.064800pt;}
.y142{bottom:507.255467pt;}
.y27e{bottom:507.840800pt;}
.y1b8{bottom:508.398133pt;}
.y1d7{bottom:508.656800pt;}
.y181{bottom:508.731467pt;}
.yb7{bottom:509.297067pt;}
.y306{bottom:509.494400pt;}
.y328{bottom:510.534133pt;}
.y102{bottom:510.588400pt;}
.y15f{bottom:511.259467pt;}
.y35d{bottom:511.575867pt;}
.y3e3{bottom:514.686533pt;}
.y24f{bottom:515.056800pt;}
.y24b{bottom:515.154667pt;}
.y34f{bottom:515.846133pt;}
.yec{bottom:518.156800pt;}
.y3a5{bottom:518.534133pt;}
.y244{bottom:519.060800pt;}
.y196{bottom:520.110400pt;}
.y52{bottom:522.292400pt;}
.y121{bottom:522.667067pt;}
.y2d{bottom:522.888400pt;}
.y71{bottom:524.110400pt;}
.yaf{bottom:524.331467pt;}
.y208{bottom:524.664800pt;}
.y38d{bottom:524.887067pt;}
.y378{bottom:525.484267pt;}
.y294{bottom:525.499733pt;}
.y1b7{bottom:525.998133pt;}
.y3bc{bottom:526.515467pt;}
.yd2{bottom:526.830133pt;}
.y27d{bottom:527.846133pt;}
.y228{bottom:527.872800pt;}
.y101{bottom:527.924400pt;}
.y15e{bottom:528.199467pt;}
.y2b4{bottom:528.869733pt;}
.y305{bottom:529.499733pt;}
.yb6{bottom:530.637067pt;}
.y290{bottom:531.111867pt;}
.y3d1{bottom:532.600000pt;}
.y24e{bottom:532.656800pt;}
.y141{bottom:533.919467pt;}
.y390{bottom:534.522133pt;}
.y327{bottom:534.528800pt;}
.y1f0{bottom:536.660800pt;}
.y180{bottom:536.994133pt;}
.y336{bottom:537.188800pt;}
.yeb{bottom:538.162133pt;}
.y120{bottom:538.668400pt;}
.y2c{bottom:538.889733pt;}
.y51{bottom:539.892400pt;}
.ya{bottom:540.103467pt;}
.ye{bottom:540.104000pt;}
.y6{bottom:540.953333pt;}
.y2{bottom:540.953867pt;}
.y70{bottom:541.710400pt;}
.yae{bottom:541.931467pt;}
.y3a4{bottom:542.528800pt;}
.y100{bottom:545.260400pt;}
.y377{bottom:545.489600pt;}
.y293{bottom:545.505067pt;}
.y301{bottom:545.778533pt;}
.y3bb{bottom:546.520800pt;}
.y27c{bottom:547.851467pt;}
.y195{bottom:548.371733pt;}
.y2b3{bottom:548.869733pt;}
.y304{bottom:549.505067pt;}
.y140{bottom:549.920800pt;}
.y24d{bottom:550.256800pt;}
.y34e{bottom:550.518133pt;}
.yb5{bottom:551.977067pt;}
.y207{bottom:552.927467pt;}
.y3e9{bottom:553.440267pt;}
.y1b6{bottom:554.260800pt;}
.y2c9{bottom:554.590133pt;}
.y17f{bottom:554.594133pt;}
.y11f{bottom:554.669733pt;}
.y2b{bottom:554.891067pt;}
.y227{bottom:556.135467pt;}
.y50{bottom:557.492400pt;}
.yea{bottom:558.167467pt;}
.y326{bottom:558.523467pt;}
.y6f{bottom:559.310400pt;}
.y8f{bottom:560.531467pt;}
.yff{bottom:562.596400pt;}
.y1d6{bottom:563.590133pt;}
.yd1{bottom:564.156800pt;}
.y2d9{bottom:564.400000pt;}
.y243{bottom:564.923467pt;}
.y38f{bottom:565.190133pt;}
.y292{bottom:565.510400pt;}
.y13f{bottom:565.922133pt;}
.y3a3{bottom:566.523467pt;}
.y24c{bottom:567.856800pt;}
.y2b2{bottom:568.869733pt;}
.y303{bottom:569.510400pt;}
.yad{bottom:570.194133pt;}
.y206{bottom:570.527467pt;}
.y11e{bottom:570.671067pt;}
.y1b5{bottom:571.860800pt;}
.y17e{bottom:572.194133pt;}
.y4f{bottom:575.092400pt;}
.y3e8{bottom:575.840267pt;}
.y376{bottom:576.157600pt;}
.y3ba{bottom:577.188800pt;}
.y194{bottom:578.243733pt;}
.yfe{bottom:579.932400pt;}
.y1d5{bottom:581.190133pt;}
.y2c8{bottom:581.256800pt;}
.y2a{bottom:581.555067pt;}
.y13e{bottom:581.923467pt;}
.y242{bottom:582.523467pt;}
.y6a{bottom:583.266667pt;}
.yb4{bottom:583.971733pt;}
.y15d{bottom:584.064800pt;}
.y226{bottom:584.398133pt;}
.y34d{bottom:585.190133pt;}
.yd0{bottom:585.496800pt;}
.y11d{bottom:586.672400pt;}
.y6e{bottom:587.571733pt;}
.yac{bottom:587.794133pt;}
.y205{bottom:588.127467pt;}
.y8e{bottom:588.794133pt;}
.ye9{bottom:588.835467pt;}
.y1b4{bottom:589.460800pt;}
.y17d{bottom:589.794133pt;}
.y4e{bottom:592.692400pt;}
.y1af{bottom:594.933333pt;}
.y3d2{bottom:595.728133pt;}
.y291{bottom:596.177067pt;}
.y2c7{bottom:597.256800pt;}
.yfd{bottom:597.268400pt;}
.y13d{bottom:597.924800pt;}
.y3e7{bottom:598.240267pt;}
.y1d4{bottom:598.790133pt;}
.y241{bottom:600.123467pt;}
.y302{bottom:600.177067pt;}
.y26{bottom:601.745333pt;}
.yab{bottom:605.394133pt;}
.y204{bottom:605.727467pt;}
.y8d{bottom:606.394133pt;}
.y375{bottom:606.825600pt;}
.ycf{bottom:606.836800pt;}
.y1ef{bottom:607.060800pt;}
.y3b9{bottom:607.856800pt;}
.ye8{bottom:608.840800pt;}
.y29{bottom:609.817733pt;}
.y4d{bottom:610.292400pt;}
.y15c{bottom:612.327467pt;}
.y225{bottom:612.660800pt;}
.y2c6{bottom:613.256800pt;}
.y11c{bottom:613.336400pt;}
.yb3{bottom:613.843733pt;}
.y13c{bottom:613.926133pt;}
.yfc{bottom:614.604400pt;}
.y6d{bottom:615.843733pt;}
.y1d3{bottom:616.390133pt;}
.y1b3{bottom:617.723467pt;}
.y17c{bottom:618.056800pt;}
.y264{bottom:621.252400pt;}
.yaa{bottom:622.994133pt;}
.yce{bottom:628.176800pt;}
.ye7{bottom:628.846133pt;}
.y1d2{bottom:633.990133pt;}
.y335{bottom:634.584533pt;}
.y28e{bottom:634.585733pt;}
.y8c{bottom:634.656800pt;}
.y1b2{bottom:635.323467pt;}
.y17b{bottom:635.656800pt;}
.y193{bottom:637.971733pt;}
.y25{bottom:638.027733pt;}
.y4c{bottom:638.555067pt;}
.y2c5{bottom:639.923467pt;}
.y13b{bottom:640.590133pt;}
.y224{bottom:640.923467pt;}
.y11b{bottom:641.603067pt;}
.yfb{bottom:642.603067pt;}
.y3e6{bottom:643.040267pt;}
.ye6{bottom:648.851467pt;}
.y263{bottom:649.252400pt;}
.ycd{bottom:649.516800pt;}
.ya9{bottom:651.256800pt;}
.y1d1{bottom:651.590133pt;}
.y8b{bottom:652.256800pt;}
.y1b1{bottom:652.923467pt;}
.y17a{bottom:653.256800pt;}
.y27{bottom:655.970800pt;}
.y6b{bottom:656.637467pt;}
.y3e5{bottom:665.440267pt;}
.y4b{bottom:666.817733pt;}
.y192{bottom:667.843733pt;}
.ya8{bottom:668.856800pt;}
.y1d0{bottom:669.190133pt;}
.y8a{bottom:669.856800pt;}
.y11a{bottom:669.869733pt;}
.y28f{bottom:670.369733pt;}
.y1b0{bottom:670.523467pt;}
.ycc{bottom:670.856800pt;}
.yfa{bottom:670.869733pt;}
.y265{bottom:681.036400pt;}
.y28{bottom:684.703067pt;}
.y6c{bottom:685.369733pt;}
.y3e4{bottom:687.840267pt;}
.h6{height:30.940000pt;}
.ha{height:34.176000pt;}
.h1f{height:40.859375pt;}
.h1{height:44.062500pt;}
.h14{height:44.945312pt;}
.h15{height:45.117188pt;}
.h12{height:45.145833pt;}
.h9{height:48.958333pt;}
.h17{height:49.031250pt;}
.h1c{height:50.989583pt;}
.h16{height:51.302083pt;}
.h8{height:53.703125pt;}
.h11{height:56.088542pt;}
.h10{height:56.432292pt;}
.h7{height:60.375000pt;}
.h13{height:61.562500pt;}
.h19{height:68.541667pt;}
.h18{height:69.372396pt;}
.h4{height:70.765625pt;}
.h1b{height:71.385417pt;}
.hf{height:71.822917pt;}
.h5{height:72.433333pt;}
.hd{height:73.984375pt;}
.h1d{height:81.614583pt;}
.h1a{height:88.125000pt;}
.h1e{height:101.093750pt;}
.he{height:121.312500pt;}
.hc{height:130.930559pt;}
.h3{height:142.346571pt;}
.h20{height:166.804688pt;}
.hb{height:319.314719pt;}
.h2{height:347.155937pt;}
.h0{height:768.000000pt;}
.w5{width:-522.708000pt;}
.w4{width:-522.706667pt;}
.w8{width:-487.512000pt;}
.w7{width:-487.510667pt;}
.w2{width:39.450667pt;}
.w1{width:40.396000pt;}
.w3{width:558.000000pt;}
.w6{width:593.197333pt;}
.w0{width:912.000000pt;}
.xa{left:-571.316533pt;}
.xb{left:-568.182267pt;}
.xf{left:-536.120133pt;}
.x10{left:-532.985867pt;}
.xd{left:-501.301132pt;}
.xc{left:-474.658533pt;}
.x12{left:-466.104732pt;}
.x11{left:-439.462133pt;}
.x74{left:-234.000000pt;}
.x52{left:-202.000000pt;}
.x54{left:-196.666667pt;}
.x6{left:-3.505867pt;}
.x8{left:-1.616667pt;}
.x0{left:0.000000pt;}
.x41{left:23.333333pt;}
.x64{left:28.718933pt;}
.x50{left:30.800533pt;}
.x65{left:45.265600pt;}
.x7f{left:49.316267pt;}
.x1e{left:52.047200pt;}
.x3b{left:61.872800pt;}
.x4c{left:64.131200pt;}
.x17{left:69.333333pt;}
.x43{left:82.000000pt;}
.x42{left:83.333333pt;}
.x82{left:94.666667pt;}
.x1d{left:96.000000pt;}
.x27{left:97.330533pt;}
.x4b{left:98.666667pt;}
.x1b{left:100.333333pt;}
.x1a{left:102.666667pt;}
.x19{left:103.968400pt;}
.x98{left:106.391200pt;}
.x9a{left:111.412533pt;}
.x4d{left:115.187200pt;}
.x4f{left:122.493867pt;}
.x4e{left:125.280533pt;}
.x9c{left:128.193867pt;}
.x1f{left:134.301733pt;}
.x62{left:135.745600pt;}
.x63{left:138.825600pt;}
.x20{left:144.004000pt;}
.x99{left:149.324533pt;}
.x15{left:150.870133pt;}
.x9b{left:165.060533pt;}
.x13{left:194.699467pt;}
.x14{left:209.296800pt;}
.x90{left:222.884800pt;}
.x88{left:228.104933pt;}
.x85{left:255.999867pt;}
.x7b{left:262.747067pt;}
.x2a{left:274.014267pt;}
.x24{left:280.014800pt;}
.x80{left:280.934133pt;}
.x30{left:282.790400pt;}
.x58{left:296.002800pt;}
.xe{left:297.354667pt;}
.x57{left:303.226667pt;}
.x8e{left:331.590533pt;}
.x8a{left:354.736933pt;}
.x84{left:368.404933pt;}
.x2d{left:385.235600pt;}
.x8d{left:386.483067pt;}
.x21{left:389.097600pt;}
.x39{left:394.861467pt;}
.x16{left:402.461867pt;}
.x7d{left:410.666533pt;}
.x93{left:412.923867pt;}
.x23{left:417.294800pt;}
.x35{left:430.733733pt;}
.x96{left:451.590533pt;}
.x8b{left:455.999867pt;}
.x2f{left:456.937067pt;}
.x49{left:465.994667pt;}
.x18{left:471.426267pt;}
.x2{left:474.147467pt;}
.x3{left:476.978000pt;}
.x7{left:478.594667pt;}
.x48{left:480.881600pt;}
.x32{left:494.662667pt;}
.x8f{left:505.052000pt;}
.x8c{left:506.389467pt;}
.x95{left:508.053333pt;}
.x92{left:520.522000pt;}
.x2b{left:532.704933pt;}
.x5{left:537.379200pt;}
.x7c{left:553.160133pt;}
.x4{left:561.440533pt;}
.x3a{left:565.356400pt;}
.x36{left:568.879067pt;}
.x44{left:580.535467pt;}
.x6f{left:598.362133pt;}
.x22{left:602.535067pt;}
.x2e{left:603.868400pt;}
.x59{left:614.533333pt;}
.x38{left:617.237867pt;}
.x87{left:619.188000pt;}
.x77{left:627.682133pt;}
.x83{left:642.788000pt;}
.x89{left:644.872933pt;}
.x68{left:646.144667pt;}
.x28{left:647.367200pt;}
.x33{left:650.860533pt;}
.x7e{left:657.336000pt;}
.x6c{left:659.120000pt;}
.x86{left:661.545333pt;}
.x94{left:662.792000pt;}
.x91{left:664.131467pt;}
.x5c{left:670.583200pt;}
.x5f{left:673.478000pt;}
.x69{left:675.491333pt;}
.x73{left:678.000000pt;}
.x71{left:682.175467pt;}
.x81{left:684.120800pt;}
.x78{left:688.188800pt;}
.x6e{left:690.042133pt;}
.x26{left:697.109200pt;}
.x31{left:698.233600pt;}
.x5d{left:699.929867pt;}
.x25{left:701.555333pt;}
.x60{left:702.824667pt;}
.x34{left:704.780400pt;}
.x29{left:706.768933pt;}
.x51{left:710.000000pt;}
.x53{left:715.333333pt;}
.x72{left:718.722133pt;}
.x76{left:721.762133pt;}
.x3d{left:725.733600pt;}
.x45{left:727.075467pt;}
.x70{left:730.535467pt;}
.x46{left:732.568800pt;}
.x79{left:751.988800pt;}
.x6d{left:754.908800pt;}
.x3f{left:763.226933pt;}
.x66{left:765.971333pt;}
.x67{left:769.051333pt;}
.x75{left:784.242133pt;}
.x3c{left:788.613600pt;}
.x5a{left:790.396533pt;}
.x5b{left:793.169867pt;}
.x40{left:794.106933pt;}
.x61{left:796.384667pt;}
.x5e{left:804.251333pt;}
.x56{left:808.164000pt;}
.x3e{left:811.306933pt;}
.x6b{left:820.164000pt;}
.x55{left:838.837867pt;}
.x37{left:843.008133pt;}
.x47{left:844.732400pt;}
.x7a{left:848.317067pt;}
.x6a{left:850.837867pt;}
.x97{left:861.650400pt;}
.x2c{left:868.583733pt;}
.x4a{left:870.649467pt;}
.x1c{left:872.081600pt;}
.x1{left:874.000000pt;}
.x9{left:879.333333pt;}
}




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