
    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_00551f536bec704436b71edd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990723;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_a69a819d757945ad12413ece.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982422;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_b447fcb6df4c0c0ba93ec9c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730469;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_fe76b84e659b8dee8f1e3051.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.179199;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_52d45fb9b2a94c64e01000f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.140625;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_8819e2253adbccf029872cf0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710938;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_ff238606d18006fb8e207b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.144043;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_9771096f8ede9891cb0f4986.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_9bcce15cfc66df66ce103c47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c3b92b2f505d3909a53a25a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_04ac731e32313519cc796d4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2e617e3a173bb24d60a726b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.141113;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_85ae752706aff6c6ef2fd7b2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;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_a6a1052f7d0fb2e82ade22a9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6d4f7d1e0f5dd2e778fe9e05.woff2')format("woff");}.fff{font-family:fff;line-height:0.708008;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_f1673a74f7161a57d3a8c112.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.765137;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a1c88e8fe4cd2d7076dcea08.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9e67bb62748d2eb9aec51bee.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0fe1581b88cf409565ab2a7a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a5fce7582bd0abe4ddbb311e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.750000;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-64.800000px;}
.v1{vertical-align:-32.460000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.000000px;}
.ls48{letter-spacing:-3.960000px;}
.ls3{letter-spacing:-1.764000px;}
.ls7d{letter-spacing:-1.530000px;}
.ls42{letter-spacing:-1.380000px;}
.ls2f{letter-spacing:-1.152000px;}
.ls49{letter-spacing:-1.008000px;}
.ls72{letter-spacing:-0.936000px;}
.ls63{letter-spacing:-0.921600px;}
.ls61{letter-spacing:-0.864000px;}
.ls84{letter-spacing:-0.843150px;}
.ls33{letter-spacing:-0.840000px;}
.ls7a{letter-spacing:-0.766500px;}
.ls83{letter-spacing:-0.765000px;}
.ls4f{letter-spacing:-0.756000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.684000px;}
.ls58{letter-spacing:-0.669600px;}
.ls15{letter-spacing:-0.662400px;}
.ls36{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.648000px;}
.ls5b{letter-spacing:-0.630000px;}
.ls8c{letter-spacing:-0.613200px;}
.ls16{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.518400px;}
.ls19{letter-spacing:-0.504000px;}
.ls68{letter-spacing:-0.480000px;}
.ls65{letter-spacing:-0.446400px;}
.ls13{letter-spacing:-0.432000px;}
.ls67{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.396000px;}
.ls53{letter-spacing:-0.378000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls70{letter-spacing:-0.345600px;}
.ls4c{letter-spacing:-0.324000px;}
.ls6b{letter-spacing:-0.292500px;}
.ls21{letter-spacing:-0.288000px;}
.ls38{letter-spacing:-0.240000px;}
.ls78{letter-spacing:-0.237600px;}
.lse{letter-spacing:-0.216000px;}
.ls59{letter-spacing:-0.192000px;}
.ls5f{letter-spacing:-0.165600px;}
.ls50{letter-spacing:-0.140400px;}
.ls27{letter-spacing:-0.120000px;}
.ls6a{letter-spacing:-0.118800px;}
.ls77{letter-spacing:-0.108000px;}
.ls71{letter-spacing:-0.086400px;}
.ls1{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.024000px;}
.lsb{letter-spacing:0.036000px;}
.ls66{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.122400px;}
.lsc{letter-spacing:0.144000px;}
.ls51{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.204000px;}
.ls52{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.240000px;}
.ls20{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.315000px;}
.ls6c{letter-spacing:0.324000px;}
.ls31{letter-spacing:0.345600px;}
.ls2b{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.420000px;}
.ls1d{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.441000px;}
.ls43{letter-spacing:0.453600px;}
.ls1b{letter-spacing:0.468000px;}
.ls35{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.482400px;}
.ls64{letter-spacing:0.486000px;}
.lsa{letter-spacing:0.489600px;}
.ls3c{letter-spacing:0.492000px;}
.ls8{letter-spacing:0.495000px;}
.ls22{letter-spacing:0.504000px;}
.ls4e{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.567000px;}
.ls1e{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.581100px;}
.ls69{letter-spacing:0.594000px;}
.ls28{letter-spacing:0.600000px;}
.ls4b{letter-spacing:0.606000px;}
.ls14{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.660000px;}
.ls60{letter-spacing:0.669600px;}
.ls4d{letter-spacing:0.702000px;}
.ls54{letter-spacing:0.707400px;}
.ls5a{letter-spacing:0.720000px;}
.ls55{letter-spacing:0.756000px;}
.ls85{letter-spacing:0.766500px;}
.ls18{letter-spacing:0.813600px;}
.ls3e{letter-spacing:0.842400px;}
.ls89{letter-spacing:0.843150px;}
.ls82{letter-spacing:0.849150px;}
.ls76{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.882000px;}
.ls2a{letter-spacing:0.936000px;}
.ls8b{letter-spacing:0.981120px;}
.ls5e{letter-spacing:1.008000px;}
.ls8e{letter-spacing:1.073100px;}
.ls10{letter-spacing:1.152000px;}
.ls75{letter-spacing:1.224000px;}
.ls90{letter-spacing:1.226400px;}
.ls1f{letter-spacing:1.308000px;}
.ls47{letter-spacing:1.310400px;}
.ls73{letter-spacing:1.332000px;}
.ls81{letter-spacing:1.377000px;}
.ls88{letter-spacing:1.379700px;}
.ls41{letter-spacing:1.380000px;}
.ls56{letter-spacing:1.440000px;}
.ls7e{letter-spacing:1.453500px;}
.ls7f{letter-spacing:1.530000px;}
.ls8a{letter-spacing:1.540665px;}
.ls39{letter-spacing:1.572000px;}
.ls79{letter-spacing:1.606500px;}
.ls8f{letter-spacing:1.609650px;}
.ls3a{letter-spacing:1.644000px;}
.ls80{letter-spacing:1.675350px;}
.ls7b{letter-spacing:1.762950px;}
.ls3b{letter-spacing:1.800000px;}
.ls86{letter-spacing:1.839600px;}
.ls8d{letter-spacing:1.912500px;}
.ls46{letter-spacing:1.992000px;}
.ls34{letter-spacing:2.052000px;}
.ls62{letter-spacing:2.232000px;}
.ls87{letter-spacing:2.299500px;}
.ls7c{letter-spacing:2.830500px;}
.ls74{letter-spacing:4.644000px;}
.ls3d{letter-spacing:9.144000px;}
.ls5d{letter-spacing:16.584000px;}
.ls5c{letter-spacing:16.644000px;}
.ls2c{letter-spacing:28.134000px;}
.ls17{letter-spacing:44.484000px;}
.ls12{letter-spacing:44.634000px;}
.ls4a{letter-spacing:67.488000px;}
.ls40{letter-spacing:111.984000px;}
.ls6d{letter-spacing:117.984000px;}
.ls3f{letter-spacing:128.484000px;}
.ls45{letter-spacing:136.134000px;}
.ls6f{letter-spacing:137.634000px;}
.ls44{letter-spacing:154.134000px;}
.ls6e{letter-spacing:157.134000px;}
.ls0{letter-spacing:200.613000px;}
.ls57{letter-spacing:318.228000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(1,16,33),0 0.015em rgb(1,16,33),0.015em 0 rgb(1,16,33),0 -0.015em  rgb(1,16,33);}
.sc0{text-shadow:-0.015em 0 rgb(231,100,1),0 0.015em rgb(231,100,1),0.015em 0 rgb(231,100,1),0 -0.015em  rgb(231,100,1);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(1,16,33);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(231,100,1);text-shadow:none;}
}
.ws15{word-spacing:-44.857350px;}
.ws4f{word-spacing:-41.495850px;}
.ws8{word-spacing:-26.892000px;}
.ws6f{word-spacing:-21.385350px;}
.ws6d{word-spacing:-20.961000px;}
.ws33{word-spacing:-20.916000px;}
.ws46{word-spacing:-19.795660px;}
.ws56{word-spacing:-19.085850px;}
.ws60{word-spacing:-19.048500px;}
.wsd{word-spacing:-18.864000px;}
.ws1b{word-spacing:-18.648000px;}
.ws32{word-spacing:-18.612000px;}
.ws3e{word-spacing:-18.597600px;}
.ws40{word-spacing:-18.576000px;}
.ws3b{word-spacing:-18.459000px;}
.ws4e{word-spacing:-18.417600px;}
.wsf{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.345600px;}
.ws26{word-spacing:-18.309600px;}
.ws4a{word-spacing:-18.288000px;}
.ws64{word-spacing:-18.242700px;}
.ws14{word-spacing:-18.216000px;}
.ws20{word-spacing:-18.201600px;}
.ws3a{word-spacing:-18.194400px;}
.ws13{word-spacing:-18.144000px;}
.ws7{word-spacing:-17.928000px;}
.ws1d{word-spacing:-17.892000px;}
.wsa{word-spacing:-17.856000px;}
.ws4c{word-spacing:-17.769600px;}
.ws51{word-spacing:-17.748000px;}
.ws10{word-spacing:-17.712000px;}
.ws4b{word-spacing:-17.510400px;}
.wsb{word-spacing:-17.496000px;}
.ws52{word-spacing:-17.474400px;}
.wse{word-spacing:-17.424000px;}
.ws50{word-spacing:-17.409600px;}
.ws53{word-spacing:-17.280000px;}
.wsc{word-spacing:-17.208000px;}
.ws1c{word-spacing:-17.193600px;}
.ws11{word-spacing:-17.136000px;}
.ws3f{word-spacing:-16.848000px;}
.ws4d{word-spacing:-16.776000px;}
.ws6{word-spacing:-16.368000px;}
.ws41{word-spacing:-16.308000px;}
.ws24{word-spacing:-16.260000px;}
.ws1{word-spacing:-16.254000px;}
.ws2{word-spacing:-16.128000px;}
.ws3{word-spacing:-16.002000px;}
.ws17{word-spacing:-15.540000px;}
.ws19{word-spacing:-15.480000px;}
.ws1a{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.240000px;}
.ws23{word-spacing:-15.180000px;}
.ws1f{word-spacing:-15.120000px;}
.ws28{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.880000px;}
.ws18{word-spacing:-14.760000px;}
.ws42{word-spacing:-14.700000px;}
.ws22{word-spacing:-14.640000px;}
.ws43{word-spacing:-14.520000px;}
.ws45{word-spacing:-14.460000px;}
.ws16{word-spacing:-14.340000px;}
.ws12{word-spacing:-14.160000px;}
.ws31{word-spacing:-14.099400px;}
.ws21{word-spacing:-14.040000px;}
.ws2a{word-spacing:-13.986000px;}
.ws0{word-spacing:-13.923000px;}
.ws27{word-spacing:-13.896000px;}
.ws48{word-spacing:-13.770000px;}
.ws2f{word-spacing:-13.608000px;}
.ws2e{word-spacing:-13.554000px;}
.ws25{word-spacing:-13.500000px;}
.ws3d{word-spacing:-13.483350px;}
.ws3c{word-spacing:-13.446000px;}
.ws2b{word-spacing:-13.392000px;}
.ws2d{word-spacing:-13.284000px;}
.ws47{word-spacing:-13.068000px;}
.ws29{word-spacing:-12.960000px;}
.ws30{word-spacing:-12.906000px;}
.ws49{word-spacing:-12.690000px;}
.ws2c{word-spacing:-12.528000px;}
.ws35{word-spacing:-11.952000px;}
.ws44{word-spacing:-10.253100px;}
.ws57{word-spacing:-6.609000px;}
.ws5a{word-spacing:-3.738000px;}
.ws5e{word-spacing:-3.524550px;}
.ws5c{word-spacing:-3.367500px;}
.ws55{word-spacing:-3.179100px;}
.ws6a{word-spacing:-2.622495px;}
.ws65{word-spacing:-2.478300px;}
.ws66{word-spacing:-2.103900px;}
.ws61{word-spacing:-1.879950px;}
.ws69{word-spacing:-1.250550px;}
.ws5f{word-spacing:-0.888000px;}
.ws59{word-spacing:-0.637500px;}
.ws67{word-spacing:-0.285000px;}
.ws4{word-spacing:0.000000px;}
.ws6c{word-spacing:0.769500px;}
.ws6e{word-spacing:1.175550px;}
.ws63{word-spacing:1.449000px;}
.ws62{word-spacing:1.452000px;}
.ws6b{word-spacing:2.129550px;}
.ws5b{word-spacing:2.214000px;}
.ws5d{word-spacing:2.529000px;}
.ws68{word-spacing:3.053850px;}
.ws54{word-spacing:3.280800px;}
.ws58{word-spacing:5.988000px;}
.ws39{word-spacing:96.864000px;}
.ws36{word-spacing:140.004000px;}
.ws38{word-spacing:156.636000px;}
.ws37{word-spacing:171.996000px;}
.ws34{word-spacing:276.118800px;}
._e{margin-left:-16.822200px;}
._b{margin-left:-15.633000px;}
._d{margin-left:-14.461800px;}
._c{margin-left:-13.269600px;}
._36{margin-left:-11.251200px;}
._8{margin-left:-10.093800px;}
._a{margin-left:-8.208000px;}
._9{margin-left:-6.468000px;}
._5{margin-left:-4.702200px;}
._1{margin-left:-3.682200px;}
._3{margin-left:-2.519400px;}
._0{margin-left:-1.162800px;}
._4{width:1.356600px;}
._2{width:2.713200px;}
._7{width:3.948600px;}
._6{width:5.454000px;}
._18{width:7.355400px;}
._1d{width:8.866800px;}
._12{width:10.594800px;}
._33{width:11.596800px;}
._17{width:12.600000px;}
._22{width:13.702200px;}
._1f{width:15.323400px;}
._10{width:16.427400px;}
._11{width:18.930600px;}
._f{width:20.729400px;}
._21{width:22.066800px;}
._15{width:23.112000px;}
._16{width:24.214200px;}
._1e{width:25.311600px;}
._13{width:26.866800px;}
._14{width:28.091400px;}
._1b{width:29.136600px;}
._1c{width:30.958800px;}
._26{width:32.125200px;}
._23{width:33.419400px;}
._2a{width:34.931400px;}
._20{width:36.022200px;}
._2b{width:37.141200px;}
._27{width:38.304000px;}
._28{width:39.622800px;}
._2d{width:40.656000px;}
._19{width:41.688000px;}
._1a{width:43.207200px;}
._32{width:44.586000px;}
._29{width:45.744600px;}
._25{width:47.160000px;}
._24{width:48.190200px;}
._2e{width:51.923400px;}
._2f{width:53.887800px;}
._49{width:55.057200px;}
._48{width:56.542200px;}
._4a{width:57.654600px;}
._31{width:60.568800px;}
._30{width:61.737000px;}
._39{width:71.352000px;}
._3a{width:73.102200px;}
._3b{width:75.272400px;}
._37{width:78.048000px;}
._38{width:79.171800px;}
._35{width:80.461200px;}
._34{width:81.604200px;}
._4c{width:104.688000px;}
._4b{width:108.298800px;}
._41{width:142.714800px;}
._43{width:143.782200px;}
._42{width:144.976800px;}
._47{width:155.664000px;}
._46{width:156.754800px;}
._44{width:160.499400px;}
._45{width:161.521800px;}
._3d{width:185.359800px;}
._3c{width:186.998400px;}
._2c{width:221.508000px;}
._40{width:264.943200px;}
._3e{width:265.967400px;}
._3f{width:267.425400px;}
.fca{color:rgb(70,120,134);}
.fc9{color:rgb(232,100,0);}
.fc8{color:rgb(5,38,78);}
.fc6{color:transparent;}
.fc5{color:rgb(6,49,92);}
.fc4{color:rgb(7,50,92);}
.fc3{color:rgb(2,16,33);}
.fc7{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(1,16,33);}
.fc0{color:rgb(231,100,1);}
.fs11{font-size:3.000000px;}
.fsa{font-size:39.000000px;}
.fs9{font-size:48.000000px;}
.fsf{font-size:54.000000px;}
.fs12{font-size:54.150000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs13{font-size:63.244921px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs15{font-size:76.500000px;}
.fs14{font-size:76.650000px;}
.fs10{font-size:84.000000px;}
.fsc{font-size:94.500000px;}
.fsd{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:121.650000px;}
.fse{font-size:144.150000px;}
.fsb{font-size:166.650000px;}
.fs8{font-size:180.150000px;}
.fs1{font-size:193.650000px;}
.fs0{font-size:193.800000px;}
.y0{bottom:0.000000px;}
.y25f{bottom:5.250000px;}
.y191{bottom:6.000000px;}
.y275{bottom:6.360000px;}
.y177{bottom:6.375000px;}
.y292{bottom:6.750000px;}
.y2b2{bottom:7.500000px;}
.y180{bottom:7.875000px;}
.y283{bottom:11.250000px;}
.y9{bottom:12.375000px;}
.y1bf{bottom:12.600000px;}
.y24b{bottom:12.750000px;}
.y17b{bottom:14.625000px;}
.y19b{bottom:14.670000px;}
.y5{bottom:14.775000px;}
.y184{bottom:15.375000px;}
.y173{bottom:15.390000px;}
.y16f{bottom:15.750000px;}
.y175{bottom:16.125000px;}
.y273{bottom:16.485000px;}
.y17d{bottom:16.500000px;}
.y2a9{bottom:16.515000px;}
.y21{bottom:18.375000px;}
.y1d2{bottom:20.625000px;}
.y1c9{bottom:21.000000px;}
.y1c6{bottom:21.030000px;}
.y245{bottom:21.045000px;}
.y198{bottom:23.295000px;}
.y25e{bottom:23.625000px;}
.y179{bottom:24.375000px;}
.y190{bottom:24.735000px;}
.y183{bottom:24.750000px;}
.y176{bottom:25.500000px;}
.y2b1{bottom:25.515000px;}
.y17f{bottom:25.905000px;}
.y1f2{bottom:26.175000px;}
.y251{bottom:26.250000px;}
.y187{bottom:26.625000px;}
.y274{bottom:26.655000px;}
.y1be{bottom:27.000000px;}
.y282{bottom:29.250000px;}
.yf{bottom:30.735000px;}
.y11{bottom:30.765000px;}
.yd{bottom:32.250000px;}
.y19a{bottom:32.670000px;}
.y17a{bottom:33.750000px;}
.y26b{bottom:33.765000px;}
.y171{bottom:34.125000px;}
.y2a8{bottom:34.500000px;}
.y17c{bottom:36.405000px;}
.y15{bottom:36.750000px;}
.y29f{bottom:41.625000px;}
.y25d{bottom:41.655000px;}
.y291{bottom:43.125000px;}
.y197{bottom:43.170000px;}
.y18f{bottom:43.500000px;}
.y2b0{bottom:43.890000px;}
.y17e{bottom:44.655000px;}
.y186{bottom:45.375000px;}
.yb{bottom:46.875000px;}
.y20{bottom:47.625000px;}
.y281{bottom:47.655000px;}
.y259{bottom:50.655000px;}
.y13{bottom:51.000000px;}
.y199{bottom:51.420000px;}
.y18a{bottom:52.125000px;}
.y26a{bottom:52.140000px;}
.y195{bottom:52.500000px;}
.y172{bottom:52.875000px;}
.y2a7{bottom:52.890000px;}
.y1e8{bottom:53.550000px;}
.y1f3{bottom:54.225000px;}
.y254{bottom:58.905000px;}
.y29e{bottom:60.000000px;}
.y256{bottom:60.030000px;}
.y290{bottom:61.170000px;}
.yc{bottom:61.500000px;}
.y2af{bottom:61.875000px;}
.y18e{bottom:61.905000px;}
.y14{bottom:65.625000px;}
.y280{bottom:65.655000px;}
.y257{bottom:69.030000px;}
.y269{bottom:70.125000px;}
.y194{bottom:71.295000px;}
.y2e8{bottom:71.700000px;}
.y189{bottom:72.405000px;}
.y279{bottom:75.030000px;}
.y24a{bottom:75.787500px;}
.y8{bottom:76.162500px;}
.y1f{bottom:77.625000px;}
.y255{bottom:78.030000px;}
.y253{bottom:79.155000px;}
.y28f{bottom:79.545000px;}
.y18d{bottom:80.280000px;}
.y2ae{bottom:80.295000px;}
.y1e9{bottom:81.630000px;}
.y1f4{bottom:82.320000px;}
.y27f{bottom:84.030000px;}
.y249{bottom:85.537500px;}
.y7{bottom:85.912500px;}
.y263{bottom:86.295000px;}
.y258{bottom:87.030000px;}
.y299{bottom:87.405000px;}
.y268{bottom:88.545000px;}
.y2a3{bottom:89.295000px;}
.y193{bottom:89.655000px;}
.y278{bottom:93.030000px;}
.y25c{bottom:96.405000px;}
.y1bc{bottom:96.600000px;}
.y28e{bottom:97.530000px;}
.y26d{bottom:97.545000px;}
.y2ad{bottom:98.295000px;}
.y18c{bottom:99.405000px;}
.y27e{bottom:102.030000px;}
.y298{bottom:105.405000px;}
.yfa{bottom:106.537500px;}
.y262{bottom:106.545000px;}
.y11c{bottom:106.912500px;}
.y295{bottom:106.920000px;}
.ya1{bottom:107.287500px;}
.y2a2{bottom:107.670000px;}
.y192{bottom:108.045000px;}
.y1e{bottom:109.125000px;}
.y1ea{bottom:109.695000px;}
.y1f5{bottom:110.355000px;}
.y271{bottom:110.662500px;}
.y1ce{bottom:111.037500px;}
.y277{bottom:111.405000px;}
.yf9{bottom:111.787500px;}
.y2a{bottom:113.287500px;}
.y25b{bottom:114.405000px;}
.y2e7{bottom:114.487500px;}
.yee{bottom:115.162500px;}
.y1c5{bottom:115.530000px;}
.y28d{bottom:115.905000px;}
.y270{bottom:115.912500px;}
.y26c{bottom:115.920000px;}
.y167{bottom:116.287500px;}
.y2ac{bottom:116.670000px;}
.y23c{bottom:117.037500px;}
.y18b{bottom:117.780000px;}
.y4e{bottom:120.037500px;}
.y27d{bottom:120.405000px;}
.y12b{bottom:120.412500px;}
.y18{bottom:122.670000px;}
.y297{bottom:123.780000px;}
.y22f{bottom:124.537500px;}
.y267{bottom:124.920000px;}
.yd2{bottom:125.287500px;}
.y2a6{bottom:125.670000px;}
.y261{bottom:126.795000px;}
.y1bb{bottom:129.075000px;}
.yb7{bottom:129.787500px;}
.y20e{bottom:130.537500px;}
.y19c{bottom:130.912500px;}
.y1d1{bottom:132.780000px;}
.y25a{bottom:132.810000px;}
.y240{bottom:133.155000px;}
.y2d2{bottom:133.162500px;}
.y28c{bottom:133.950000px;}
.y91{bottom:134.287500px;}
.y2ab{bottom:134.670000px;}
.y225{bottom:135.037500px;}
.y1c4{bottom:137.280000px;}
.y166{bottom:137.287500px;}
.y1eb{bottom:137.745000px;}
.y2e6{bottom:138.112500px;}
.y1f6{bottom:138.405000px;}
.y11b{bottom:138.412500px;}
.y27c{bottom:138.810000px;}
.y29{bottom:139.537500px;}
.y1d{bottom:139.920000px;}
.yed{bottom:141.412500px;}
.y2a0{bottom:141.780000px;}
.y1cd{bottom:142.537500px;}
.y266{bottom:142.920000px;}
.y285{bottom:143.325000px;}
.y2a5{bottom:144.045000px;}
.y244{bottom:144.450000px;}
.y114{bottom:144.787500px;}
.y1e6{bottom:145.162500px;}
.y78{bottom:145.537500px;}
.y1c0{bottom:146.287500px;}
.yec{bottom:146.662500px;}
.y21b{bottom:147.037500px;}
.y2de{bottom:147.787500px;}
.y14f{bottom:148.162500px;}
.y29d{bottom:151.155000px;}
.y17{bottom:151.545000px;}
.y23f{bottom:151.905000px;}
.y1c1{bottom:152.280000px;}
.y28b{bottom:152.325000px;}
.yf8{bottom:153.045000px;}
.y2c7{bottom:153.795000px;}
.y41{bottom:154.905000px;}
.y228{bottom:156.420000px;}
.y27b{bottom:156.810000px;}
.ya0{bottom:157.170000px;}
.y26f{bottom:158.325000px;}
.y4d{bottom:159.030000px;}
.y1c3{bottom:159.450000px;}
.y16d{bottom:161.295000px;}
.y294{bottom:161.325000px;}
.y1ba{bottom:161.520000px;}
.y143{bottom:161.655000px;}
.y2e5{bottom:161.775000px;}
.y2a4{bottom:162.090000px;}
.y20d{bottom:162.405000px;}
.y243{bottom:163.200000px;}
.y196{bottom:163.530000px;}
.y64{bottom:164.670000px;}
.y2d1{bottom:165.030000px;}
.yad{bottom:165.780000px;}
.y1ec{bottom:165.825000px;}
.y1f7{bottom:166.500000px;}
.y224{bottom:166.545000px;}
.y2b4{bottom:166.575000px;}
.yeb{bottom:168.045000px;}
.y165{bottom:168.780000px;}
.y1c{bottom:168.795000px;}
.y29c{bottom:169.185000px;}
.y11a{bottom:170.295000px;}
.y28a{bottom:170.325000px;}
.y23e{bottom:170.655000px;}
.y2aa{bottom:171.090000px;}
.yea{bottom:173.295000px;}
.y22e{bottom:174.075000px;}
.y27a{bottom:175.185000px;}
.yd1{bottom:175.200000px;}
.y1d0{bottom:176.655000px;}
.y1b8{bottom:177.000000px;}
.y1e5{bottom:177.075000px;}
.y77{bottom:177.450000px;}
.y284{bottom:178.200000px;}
.yb6{bottom:179.325000px;}
.y265{bottom:179.340000px;}
.y293{bottom:179.700000px;}
.y242{bottom:181.950000px;}
.y90{bottom:183.825000px;}
.y28{bottom:184.200000px;}
.y2c6{bottom:185.700000px;}
.y29b{bottom:187.560000px;}
.y12e{bottom:188.325000px;}
.y289{bottom:188.700000px;}
.y1dd{bottom:190.950000px;}
.y1cc{bottom:192.450000px;}
.y16c{bottom:193.200000px;}
.y1ed{bottom:193.875000px;}
.y20c{bottom:193.950000px;}
.ye9{bottom:194.325000px;}
.y1f8{bottom:194.550000px;}
.y2dd{bottom:195.450000px;}
.y21a{bottom:196.575000px;}
.yac{bottom:197.325000px;}
.y1b{bottom:197.670000px;}
.y264{bottom:197.715000px;}
.y14e{bottom:198.075000px;}
.y4c{bottom:198.450000px;}
.ye8{bottom:199.575000px;}
.y164{bottom:200.700000px;}
.y247{bottom:201.450000px;}
.yf7{bottom:201.825000px;}
.y40{bottom:204.450000px;}
.y29a{bottom:205.560000px;}
.y1c8{bottom:206.325000px;}
.y63{bottom:206.700000px;}
.y1e4{bottom:208.575000px;}
.y76{bottom:208.950000px;}
.y2e4{bottom:210.900000px;}
.y2c8{bottom:211.200000px;}
.y26e{bottom:213.450000px;}
.y130{bottom:214.575000px;}
.y8f{bottom:215.325000px;}
.y23b{bottom:216.450000px;}
.y2c5{bottom:217.200000px;}
.y142{bottom:218.325000px;}
.y16e{bottom:219.825000px;}
.ye7{bottom:220.575000px;}
.y1cb{bottom:221.700000px;}
.y1ee{bottom:221.955000px;}
.y1f9{bottom:222.630000px;}
.y1dc{bottom:222.825000px;}
.y22d{bottom:223.950000px;}
.yd0{bottom:224.700000px;}
.y288{bottom:225.120000px;}
.ye6{bottom:225.825000px;}
.y1bd{bottom:226.425000px;}
.y1a{bottom:226.920000px;}
.y2dc{bottom:226.950000px;}
.y2d0{bottom:228.075000px;}
.y2b3{bottom:228.120000px;}
.y27{bottom:228.450000px;}
.yb5{bottom:229.200000px;}
.y4b{bottom:229.950000px;}
.y260{bottom:231.105000px;}
.y163{bottom:232.200000px;}
.y119{bottom:233.325000px;}
.y2cd{bottom:237.825000px;}
.y9f{bottom:238.200000px;}
.y1e3{bottom:240.450000px;}
.y118{bottom:240.825000px;}
.y12d{bottom:242.700000px;}
.y2a1{bottom:242.730000px;}
.y287{bottom:243.495000px;}
.y20b{bottom:243.825000px;}
.y219{bottom:246.075000px;}
.y126{bottom:246.825000px;}
.y8e{bottom:247.200000px;}
.y14d{bottom:247.575000px;}
.y23a{bottom:247.950000px;}
.y62{bottom:249.075000px;}
.y1ef{bottom:250.005000px;}
.y1ca{bottom:250.200000px;}
.y1fa{bottom:250.695000px;}
.yf6{bottom:251.325000px;}
.y125{bottom:252.075000px;}
.y3f{bottom:253.950000px;}
.y1db{bottom:254.325000px;}
.y26{bottom:254.700000px;}
.y22c{bottom:255.450000px;}
.y19{bottom:255.825000px;}
.yc9{bottom:256.200000px;}
.y113{bottom:257.700000px;}
.y75{bottom:258.450000px;}
.y2cf{bottom:259.950000px;}
.ybb{bottom:260.700000px;}
.y286{bottom:261.495000px;}
.y223{bottom:261.825000px;}
.y162{bottom:263.700000px;}
.y136{bottom:265.200000px;}
.y1af{bottom:265.950000px;}
.y1c7{bottom:267.075000px;}
.ye5{bottom:267.450000px;}
.y141{bottom:267.825000px;}
.y4a{bottom:268.950000px;}
.y2cc{bottom:269.325000px;}
.y1e2{bottom:271.950000px;}
.y124{bottom:273.450000px;}
.ycf{bottom:274.200000px;}
.y20a{bottom:275.325000px;}
.y246{bottom:277.575000px;}
.y218{bottom:277.950000px;}
.y1f0{bottom:278.070000px;}
.yab{bottom:278.700000px;}
.y1fb{bottom:278.745000px;}
.y239{bottom:279.825000px;}
.y2e3{bottom:282.300000px;}
.yf5{bottom:283.200000px;}
.y1b9{bottom:283.245000px;}
.y1da{bottom:285.825000px;}
.y1b7{bottom:286.200000px;}
.y22b{bottom:286.950000px;}
.y9e{bottom:288.075000px;}
.y112{bottom:289.200000px;}
.y74{bottom:290.325000px;}
.y61{bottom:291.450000px;}
.yba{bottom:292.200000px;}
.y3e{bottom:293.325000px;}
.y241{bottom:294.450000px;}
.y161{bottom:295.575000px;}
.y8d{bottom:296.700000px;}
.y14c{bottom:297.450000px;}
.y2c4{bottom:298.575000px;}
.y25{bottom:299.325000px;}
.y12a{bottom:299.700000px;}
.y227{bottom:301.200000px;}
.y1e1{bottom:303.495000px;}
.y16b{bottom:306.120000px;}
.y1f1{bottom:306.150000px;}
.y1fc{bottom:306.825000px;}
.y209{bottom:306.870000px;}
.y49{bottom:308.370000px;}
.y2e2{bottom:309.345000px;}
.y217{bottom:309.495000px;}
.yaa{bottom:310.245000px;}
.yf4{bottom:314.730000px;}
.y1ae{bottom:315.870000px;}
.y1b6{bottom:317.730000px;}
.yc8{bottom:319.620000px;}
.y123{bottom:319.995000px;}
.y111{bottom:321.105000px;}
.yce{bottom:324.105000px;}
.y222{bottom:324.855000px;}
.y129{bottom:325.995000px;}
.y8c{bottom:328.230000px;}
.y238{bottom:329.370000px;}
.ye3{bottom:330.495000px;}
.y140{bottom:331.230000px;}
.y3d{bottom:332.370000px;}
.y226{bottom:332.745000px;}
.y1e0{bottom:333.120000px;}
.y60{bottom:333.495000px;}
.y2e1{bottom:336.345000px;}
.ye4{bottom:336.495000px;}
.y22a{bottom:336.870000px;}
.y9d{bottom:337.605000px;}
.y208{bottom:338.745000px;}
.y48{bottom:339.870000px;}
.y216{bottom:340.980000px;}
.ya9{bottom:342.120000px;}
.y2ce{bottom:343.620000px;}
.y160{bottom:345.105000px;}
.y24{bottom:345.870000px;}
.yf3{bottom:346.245000px;}
.y14b{bottom:346.995000px;}
.y1ad{bottom:347.370000px;}
.y2c3{bottom:348.105000px;}
.y1d9{bottom:349.245000px;}
.y1b5{bottom:349.620000px;}
.y110{bottom:352.620000px;}
.ycd{bottom:355.620000px;}
.y122{bottom:360.120000px;}
.y237{bottom:360.870000px;}
.y1df{bottom:361.605000px;}
.ye2{bottom:362.370000px;}
.y13f{bottom:362.745000px;}
.y135{bottom:364.245000px;}
.yc7{bottom:369.495000px;}
.y207{bottom:370.245000px;}
.y188{bottom:370.620000px;}
.y3c{bottom:371.355000px;}
.y215{bottom:372.870000px;}
.yb4{bottom:373.620000px;}
.y221{bottom:374.730000px;}
.y5f{bottom:375.870000px;}
.y15f{bottom:376.620000px;}
.y8b{bottom:378.105000px;}
.y47{bottom:378.855000px;}
.y2c2{bottom:379.995000px;}
.y1b4{bottom:381.120000px;}
.y128{bottom:384.120000px;}
.y9c{bottom:387.495000px;}
.y1de{bottom:388.230000px;}
.y229{bottom:388.980000px;}
.y2e0{bottom:389.295000px;}
.ya8{bottom:391.605000px;}
.y236{bottom:392.745000px;}
.ye1{bottom:393.870000px;}
.y13e{bottom:394.620000px;}
.y23{bottom:395.355000px;}
.y117{bottom:396.120000px;}
.y14a{bottom:396.495000px;}
.y1d8{bottom:398.730000px;}
.yc6{bottom:400.995000px;}
.y206{bottom:401.745000px;}
.y10f{bottom:402.120000px;}
.y73{bottom:403.245000px;}
.y145{bottom:405.495000px;}
.y220{bottom:406.245000px;}
.y15e{bottom:408.495000px;}
.y8a{bottom:409.620000px;}
.y3b{bottom:410.745000px;}
.y2c1{bottom:411.495000px;}
.y1b3{bottom:412.620000px;}
.y2cb{bottom:414.120000px;}
.y5e{bottom:418.245000px;}
.ycc{bottom:418.995000px;}
.y2db{bottom:421.245000px;}
.y214{bottom:422.370000px;}
.ya7{bottom:423.495000px;}
.y235{bottom:424.245000px;}
.ye0{bottom:425.370000px;}
.y22{bottom:427.245000px;}
.y116{bottom:427.620000px;}
.y296{bottom:429.570000px;}
.y1d7{bottom:430.620000px;}
.yc5{bottom:432.525000px;}
.y205{bottom:433.650000px;}
.y10e{bottom:434.025000px;}
.y72{bottom:434.775000px;}
.y9b{bottom:437.025000px;}
.y21f{bottom:437.775000px;}
.y15d{bottom:440.025000px;}
.y89{bottom:441.525000px;}
.y1ac{bottom:442.275000px;}
.y2df{bottom:443.325000px;}
.y16{bottom:444.150000px;}
.y2ca{bottom:445.650000px;}
.y149{bottom:446.400000px;}
.y3a{bottom:449.775000px;}
.y16a{bottom:450.525000px;}
.y2da{bottom:452.775000px;}
.y252{bottom:452.820000px;}
.y213{bottom:454.275000px;}
.y276{bottom:454.320000px;}
.yb3{bottom:455.025000px;}
.y234{bottom:455.775000px;}
.yde{bottom:457.275000px;}
.yfb{bottom:459.525000px;}
.y5d{bottom:460.650000px;}
.y2c0{bottom:461.025000px;}
.y1d6{bottom:462.150000px;}
.y1b2{bottom:462.525000px;}
.ydf{bottom:463.275000px;}
.yc4{bottom:464.400000px;}
.y204{bottom:465.150000px;}
.y10d{bottom:465.525000px;}
.y9a{bottom:468.525000px;}
.y21e{bottom:469.650000px;}
.y88{bottom:473.025000px;}
.y13d{bottom:475.650000px;}
.y2c9{bottom:477.525000px;}
.y169{bottom:482.400000px;}
.y71{bottom:484.650000px;}
.y212{bottom:485.775000px;}
.yb2{bottom:486.525000px;}
.y233{bottom:487.650000px;}
.ydd{bottom:488.775000px;}
.y39{bottom:489.150000px;}
.y15c{bottom:489.900000px;}
.yf2{bottom:491.025000px;}
.y1ab{bottom:491.775000px;}
.y2bf{bottom:492.900000px;}
.y1d5{bottom:494.025000px;}
.y148{bottom:495.900000px;}
.y10c{bottom:497.025000px;}
.y99{bottom:500.400000px;}
.y21d{bottom:501.150000px;}
.y5c{bottom:502.650000px;}
.y185{bottom:503.025000px;}
.ya6{bottom:504.525000px;}
.y13b{bottom:507.525000px;}
.y121{bottom:509.025000px;}
.y203{bottom:512.400000px;}
.y13c{bottom:513.525000px;}
.yc3{bottom:513.900000px;}
.y1b1{bottom:514.650000px;}
.y70{bottom:516.150000px;}
.y211{bottom:517.275000px;}
.yb1{bottom:518.400000px;}
.y232{bottom:519.150000px;}
.ydb{bottom:520.650000px;}
.y15b{bottom:521.400000px;}
.y87{bottom:522.525000px;}
.y1aa{bottom:523.650000px;}
.y2be{bottom:524.400000px;}
.y1d4{bottom:525.525000px;}
.ydc{bottom:526.650000px;}
.y38{bottom:528.150000px;}
.y10b{bottom:528.900000px;}
.ycb{bottom:531.900000px;}
.y2d9{bottom:534.150000px;}
.ya5{bottom:536.400000px;}
.y13a{bottom:539.025000px;}
.y120{bottom:540.525000px;}
.y5b{bottom:545.025000px;}
.yc2{bottom:545.400000px;}
.y6f{bottom:547.650000px;}
.y21c{bottom:548.400000px;}
.y210{bottom:549.150000px;}
.y98{bottom:549.900000px;}
.y231{bottom:551.025000px;}
.y1b0{bottom:551.775000px;}
.yd9{bottom:552.150000px;}
.y15a{bottom:552.900000px;}
.y86{bottom:554.400000px;}
.y1a9{bottom:555.150000px;}
.y2bd{bottom:556.275000px;}
.yda{bottom:558.150000px;}
.y202{bottom:559.275000px;}
.y37{bottom:559.650000px;}
.y10a{bottom:560.445000px;}
.y168{bottom:563.445000px;}
.y1e7{bottom:564.375000px;}
.y182{bottom:564.570000px;}
.y2d8{bottom:565.695000px;}
.ya4{bottom:567.945000px;}
.y139{bottom:570.945000px;}
.yfe{bottom:572.445000px;}
.y1d3{bottom:572.820000px;}
.y97{bottom:581.445000px;}
.yd8{bottom:583.695000px;}
.y159{bottom:584.820000px;}
.y85{bottom:585.945000px;}
.y1a7{bottom:587.070000px;}
.y5a{bottom:587.445000px;}
.y2bc{bottom:587.820000px;}
.y201{bottom:590.820000px;}
.y109{bottom:592.320000px;}
.y1a8{bottom:593.070000px;}
.yc1{bottom:595.320000px;}
.y6e{bottom:597.570000px;}
.y230{bottom:598.320000px;}
.y36{bottom:599.070000px;}
.y250{bottom:599.130000px;}
.yb0{bottom:599.445000px;}
.y20f{bottom:601.320000px;}
.yfd{bottom:603.945000px;}
.y1cf{bottom:604.695000px;}
.y138{bottom:611.070000px;}
.y23d{bottom:611.445000px;}
.y96{bottom:613.320000px;}
.yd7{bottom:615.570000px;}
.y158{bottom:616.320000px;}
.y84{bottom:617.445000px;}
.y1a6{bottom:618.570000px;}
.y181{bottom:622.695000px;}
.y108{bottom:623.820000px;}
.yc0{bottom:626.820000px;}
.y6d{bottom:629.070000px;}
.y59{bottom:629.445000px;}
.yaf{bottom:631.320000px;}
.yfc{bottom:635.445000px;}
.y2bb{bottom:637.320000px;}
.y35{bottom:638.070000px;}
.y200{bottom:640.695000px;}
.yca{bottom:644.820000px;}
.yd6{bottom:647.070000px;}
.y157{bottom:647.820000px;}
.y272{bottom:648.645000px;}
.y83{bottom:649.320000px;}
.y1a5{bottom:650.070000px;}
.y137{bottom:654.570000px;}
.y107{bottom:655.320000px;}
.y6c{bottom:660.570000px;}
.y95{bottom:662.820000px;}
.yf1{bottom:667.320000px;}
.y152{bottom:668.580000px;}
.y2ba{bottom:669.195000px;}
.y1c2{bottom:671.070000px;}
.y58{bottom:671.820000px;}
.y24f{bottom:673.050000px;}
.y11f{bottom:673.320000px;}
.ybf{bottom:676.695000px;}
.y34{bottom:677.070000px;}
.y2d7{bottom:678.570000px;}
.y156{bottom:679.695000px;}
.y82{bottom:680.820000px;}
.y1a4{bottom:681.945000px;}
.y134{bottom:685.320000px;}
.y1ff{bottom:690.225000px;}
.y94{bottom:694.725000px;}
.yd5{bottom:696.600000px;}
.yf0{bottom:698.850000px;}
.y2b9{bottom:700.725000px;}
.y24e{bottom:704.550000px;}
.y127{bottom:704.850000px;}
.y106{bottom:705.225000px;}
.ybe{bottom:708.225000px;}
.y6b{bottom:710.475000px;}
.y155{bottom:711.225000px;}
.ya3{bottom:712.725000px;}
.y19d{bottom:713.625000px;}
.y57{bottom:714.225000px;}
.y33{bottom:716.475000px;}
.y133{bottom:716.850000px;}
.y12{bottom:720.975000px;}
.y178{bottom:723.975000px;}
.y93{bottom:726.225000px;}
.yd4{bottom:728.475000px;}
.y81{bottom:730.725000px;}
.y1a3{bottom:731.475000px;}
.y2b8{bottom:732.225000px;}
.y151{bottom:732.750000px;}
.y24d{bottom:736.425000px;}
.y105{bottom:736.725000px;}
.y100{bottom:738.375000px;}
.y1fe{bottom:739.725000px;}
.y6a{bottom:741.975000px;}
.ya2{bottom:744.225000px;}
.y32{bottom:747.975000px;}
.y132{bottom:748.725000px;}
.y46{bottom:755.475000px;}
.y56{bottom:756.225000px;}
.ybd{bottom:757.725000px;}
.yd3{bottom:759.975000px;}
.y154{bottom:761.100000px;}
.y80{bottom:762.225000px;}
.y1a2{bottom:762.975000px;}
.y2b7{bottom:764.100000px;}
.y24c{bottom:767.970000px;}
.y104{bottom:768.225000px;}
.y2d6{bottom:773.850000px;}
.y92{bottom:775.725000px;}
.y11e{bottom:780.225000px;}
.y174{bottom:780.600000px;}
.y131{bottom:786.225000px;}
.y31{bottom:787.350000px;}
.y1fd{bottom:789.600000px;}
.yff{bottom:790.170000px;}
.y65{bottom:791.325000px;}
.y69{bottom:791.850000px;}
.y7f{bottom:793.725000px;}
.y1a1{bottom:794.850000px;}
.y150{bottom:798.075000px;}
.y115{bottom:799.725000px;}
.y2d5{bottom:805.350000px;}
.y55{bottom:806.100000px;}
.ybc{bottom:807.600000px;}
.y153{bottom:810.600000px;}
.yb9{bottom:811.725000px;}
.y2b6{bottom:813.600000px;}
.y30{bottom:818.895000px;}
.y170{bottom:820.755000px;}
.y248{bottom:822.705000px;}
.y103{bottom:823.380000px;}
.y10{bottom:825.630000px;}
.y7e{bottom:825.645000px;}
.y45{bottom:826.380000px;}
.y1a0{bottom:832.380000px;}
.y147{bottom:839.130000px;}
.y68{bottom:841.380000px;}
.yb8{bottom:843.630000px;}
.y54{bottom:845.130000px;}
.y12f{bottom:849.645000px;}
.y2d4{bottom:854.880000px;}
.yae{bottom:857.130000px;}
.y2f{bottom:857.880000px;}
.y2b5{bottom:863.505000px;}
.y44{bottom:865.380000px;}
.y67{bottom:872.880000px;}
.y7d{bottom:875.130000px;}
.y19f{bottom:878.880000px;}
.y144{bottom:881.130000px;}
.y53{bottom:884.130000px;}
.y2d3{bottom:886.755000px;}
.y146{bottom:888.630000px;}
.y2e{bottom:889.755000px;}
.ye{bottom:890.145000px;}
.y43{bottom:897.255000px;}
.y66{bottom:904.755000px;}
.y7c{bottom:906.630000px;}
.y12c{bottom:912.630000px;}
.y19e{bottom:915.630000px;}
.y102{bottom:920.505000px;}
.y52{bottom:923.505000px;}
.y2d{bottom:928.755000px;}
.y42{bottom:936.255000px;}
.y7b{bottom:938.505000px;}
.yef{bottom:944.505000px;}
.ya{bottom:954.675000px;}
.y51{bottom:962.550000px;}
.y2c{bottom:967.800000px;}
.y7a{bottom:970.050000px;}
.y11d{bottom:976.050000px;}
.y101{bottom:977.550000px;}
.y50{bottom:994.425000px;}
.y79{bottom:1001.925000px;}
.y4{bottom:1015.425000px;}
.y2b{bottom:1025.175000px;}
.y4f{bottom:1033.425000px;}
.y3{bottom:1051.455000px;}
.y2{bottom:1124.625000px;}
.y1{bottom:1182.075000px;}
.y6{bottom:1192.830000px;}
.h2c{height:2.250000px;}
.h8{height:26.250000px;}
.h36{height:26.625000px;}
.h15{height:28.107422px;}
.h3b{height:29.250000px;}
.h14{height:34.593750px;}
.h29{height:38.179688px;}
.h3e{height:38.390625px;}
.h44{height:38.917969px;}
.h1b{height:39.375000px;}
.h1f{height:39.412500px;}
.h37{height:40.125000px;}
.h3d{height:40.522500px;}
.h28{height:42.952148px;}
.h30{height:43.071460px;}
.h38{height:43.242188px;}
.h32{height:44.191406px;}
.h5{height:47.895996px;}
.h19{height:49.101562px;}
.h40{height:49.570312px;}
.h1e{height:49.807617px;}
.h2b{height:51.556641px;}
.h3c{height:51.757074px;}
.h7{height:51.890625px;}
.h47{height:54.738281px;}
.h1c{height:55.078125px;}
.h9{height:55.341797px;}
.h20{height:55.875000px;}
.h22{height:57.375000px;}
.h46{height:58.159424px;}
.h45{height:58.273462px;}
.h21{height:60.412500px;}
.h23{height:60.787500px;}
.hb{height:60.875977px;}
.hd{height:63.750000px;}
.hc{height:63.772500px;}
.h10{height:66.093750px;}
.h12{height:66.410156px;}
.h17{height:71.843994px;}
.h25{height:73.912500px;}
.h1d{height:75.750000px;}
.h26{height:77.109375px;}
.h18{height:88.125000px;}
.h4{height:92.484888px;}
.ha{height:95.625000px;}
.h11{height:99.140625px;}
.he{height:103.912500px;}
.h1a{height:109.590601px;}
.h16{height:126.696313px;}
.h24{height:131.662500px;}
.h13{height:136.959741px;}
.h39{height:145.575000px;}
.h3{height:147.223169px;}
.h2{height:147.337207px;}
.h43{height:186.075000px;}
.h3f{height:193.575000px;}
.h42{height:218.325000px;}
.h3a{height:220.950000px;}
.h2a{height:266.310000px;}
.h41{height:275.370000px;}
.hf{height:276.075000px;}
.h31{height:294.075000px;}
.h2e{height:300.825000px;}
.h27{height:306.000000px;}
.h33{height:316.995000px;}
.h2f{height:341.625000px;}
.h2d{height:403.980000px;}
.h34{height:892.875000px;}
.h35{height:893.250000px;}
.h6{height:1263.000000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w4{width:8.625000px;}
.w7{width:16.875000px;}
.wb{width:74.287500px;}
.wd{width:74.662500px;}
.w10{width:82.912500px;}
.w14{width:105.412500px;}
.w18{width:180.045000px;}
.w5{width:190.950000px;}
.w17{width:222.825000px;}
.w16{width:275.700000px;}
.w15{width:296.700000px;}
.w9{width:525.600000px;}
.w6{width:531.600000px;}
.we{width:562.755000px;}
.wc{width:587.505000px;}
.w11{width:608.520000px;}
.wf{width:728.250000px;}
.wa{width:730.500000px;}
.w8{width:892.874973px;}
.w3{width:892.874987px;}
.w2{width:892.875000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.w19{width:1262.999962px;}
.w13{width:1262.999981px;}
.w12{width:1263.000000px;}
.x0{left:0.000000px;}
.x5{left:7.875000px;}
.x6b{left:9.787500px;}
.x2{left:10.837487px;}
.x5b{left:17.250000px;}
.x5c{left:27.375000px;}
.x46{left:30.375000px;}
.x76{left:33.000000px;}
.x48{left:34.905000px;}
.x69{left:37.687500px;}
.x59{left:41.287500px;}
.x78{left:42.375000px;}
.x1{left:48.187487px;}
.x6c{left:50.100000px;}
.x55{left:52.725000px;}
.x49{left:61.905000px;}
.x7d{left:64.312487px;}
.x7f{left:68.249987px;}
.x6f{left:81.037481px;}
.x43{left:83.399987px;}
.x3{left:85.162487px;}
.x1b{left:88.049987px;}
.x18{left:90.787487px;}
.x7a{left:92.287481px;}
.x2a{left:96.412487px;}
.x7e{left:97.987487px;}
.x7{left:103.162487px;}
.x9{left:112.162487px;}
.x74{left:114.045000px;}
.x72{left:118.125000px;}
.x44{left:126.037487px;}
.x5f{left:127.912500px;}
.x5a{left:136.125000px;}
.x13{left:138.074973px;}
.xa{left:139.199987px;}
.x6a{left:143.145000px;}
.x14{left:144.824987px;}
.x4d{left:150.074973px;}
.x29{left:152.699987px;}
.x31{left:157.199973px;}
.x5d{left:159.450000px;}
.x67{left:160.950000px;}
.x4e{left:163.574987px;}
.xb{left:166.199987px;}
.x6d{left:168.075000px;}
.x32{left:170.699987px;}
.x3a{left:180.449973px;}
.x1c{left:185.924987px;}
.x71{left:187.950000px;}
.xd{left:193.199987px;}
.x60{left:202.575000px;}
.x7b{left:214.319987px;}
.x68{left:226.470000px;}
.x47{left:229.230000px;}
.x15{left:232.244973px;}
.x16{left:238.994987px;}
.x4a{left:266.369987px;}
.x79{left:269.699981px;}
.x6{left:276.870000px;}
.x3d{left:289.619987px;}
.x35{left:297.494973px;}
.x33{left:298.994973px;}
.x17{left:301.244987px;}
.x36{left:311.024987px;}
.x34{left:312.524987px;}
.x2d{left:316.274973px;}
.x56{left:318.150000px;}
.x2f{left:320.774973px;}
.x2e{left:329.774987px;}
.x30{left:334.274987px;}
.x2b{left:341.024973px;}
.x2c{left:354.524987px;}
.x4f{left:361.649973px;}
.x23{left:364.274973px;}
.x24{left:371.024987px;}
.x50{left:375.149987px;}
.x64{left:381.750000px;}
.x57{left:405.375000px;}
.x3e{left:428.069973px;}
.xc{left:438.195000px;}
.x4{left:442.320000px;}
.x25{left:450.569973px;}
.x8{left:457.979987px;}
.x26{left:464.069987px;}
.x1f{left:469.694973px;}
.x65{left:471.195000px;}
.x20{left:476.444987px;}
.x73{left:485.400000px;}
.x21{left:486.599973px;}
.x22{left:493.349987px;}
.x41{left:510.599973px;}
.x51{left:512.849973px;}
.x42{left:524.099987px;}
.x52{left:526.349987px;}
.x38{left:528.599973px;}
.x39{left:542.099987px;}
.x61{left:554.520000px;}
.x27{left:574.379973px;}
.x45{left:576.599987px;}
.x5e{left:579.225000px;}
.x28{left:587.879987px;}
.xe{left:589.049987px;}
.x63{left:590.475000px;}
.x3f{left:594.254973px;}
.x3b{left:596.504973px;}
.x6e{left:600.255000px;}
.x40{left:607.754987px;}
.x3c{left:610.004987px;}
.x7c{left:618.869987px;}
.x66{left:620.280000px;}
.x70{left:623.070000px;}
.x1d{left:624.254973px;}
.x1e{left:631.004987px;}
.x58{left:663.300000px;}
.xf{left:668.174973px;}
.x10{left:674.924987px;}
.x4b{left:677.669987px;}
.x62{left:679.424987px;}
.x4c{left:681.674987px;}
.x19{left:713.174973px;}
.x1a{left:719.924987px;}
.x53{left:722.549973px;}
.x54{left:736.049987px;}
.x11{left:741.299973px;}
.x12{left:748.079987px;}
.x75{left:761.850000px;}
.x37{left:787.454987px;}
.x77{left:985.425000px;}
@media print{
.v2{vertical-align:-57.600000pt;}
.v1{vertical-align:-28.853333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.666667pt;}
.ls48{letter-spacing:-3.520000pt;}
.ls3{letter-spacing:-1.568000pt;}
.ls7d{letter-spacing:-1.360000pt;}
.ls42{letter-spacing:-1.226667pt;}
.ls2f{letter-spacing:-1.024000pt;}
.ls49{letter-spacing:-0.896000pt;}
.ls72{letter-spacing:-0.832000pt;}
.ls63{letter-spacing:-0.819200pt;}
.ls61{letter-spacing:-0.768000pt;}
.ls84{letter-spacing:-0.749467pt;}
.ls33{letter-spacing:-0.746667pt;}
.ls7a{letter-spacing:-0.681333pt;}
.ls83{letter-spacing:-0.680000pt;}
.ls4f{letter-spacing:-0.672000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.608000pt;}
.ls58{letter-spacing:-0.595200pt;}
.ls15{letter-spacing:-0.588800pt;}
.ls36{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls5b{letter-spacing:-0.560000pt;}
.ls8c{letter-spacing:-0.545067pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.460800pt;}
.ls19{letter-spacing:-0.448000pt;}
.ls68{letter-spacing:-0.426667pt;}
.ls65{letter-spacing:-0.396800pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls67{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls53{letter-spacing:-0.336000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls70{letter-spacing:-0.307200pt;}
.ls4c{letter-spacing:-0.288000pt;}
.ls6b{letter-spacing:-0.260000pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls78{letter-spacing:-0.211200pt;}
.lse{letter-spacing:-0.192000pt;}
.ls59{letter-spacing:-0.170667pt;}
.ls5f{letter-spacing:-0.147200pt;}
.ls50{letter-spacing:-0.124800pt;}
.ls27{letter-spacing:-0.106667pt;}
.ls6a{letter-spacing:-0.105600pt;}
.ls77{letter-spacing:-0.096000pt;}
.ls71{letter-spacing:-0.076800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.021333pt;}
.lsb{letter-spacing:0.032000pt;}
.ls66{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls37{letter-spacing:0.108800pt;}
.lsc{letter-spacing:0.128000pt;}
.ls51{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.181333pt;}
.ls52{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.213333pt;}
.ls20{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.280000pt;}
.ls6c{letter-spacing:0.288000pt;}
.ls31{letter-spacing:0.307200pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.373333pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.392000pt;}
.ls43{letter-spacing:0.403200pt;}
.ls1b{letter-spacing:0.416000pt;}
.ls35{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.428800pt;}
.ls64{letter-spacing:0.432000pt;}
.lsa{letter-spacing:0.435200pt;}
.ls3c{letter-spacing:0.437333pt;}
.ls8{letter-spacing:0.440000pt;}
.ls22{letter-spacing:0.448000pt;}
.ls4e{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.504000pt;}
.ls1e{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.516533pt;}
.ls69{letter-spacing:0.528000pt;}
.ls28{letter-spacing:0.533333pt;}
.ls4b{letter-spacing:0.538667pt;}
.ls14{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.586667pt;}
.ls60{letter-spacing:0.595200pt;}
.ls4d{letter-spacing:0.624000pt;}
.ls54{letter-spacing:0.628800pt;}
.ls5a{letter-spacing:0.640000pt;}
.ls55{letter-spacing:0.672000pt;}
.ls85{letter-spacing:0.681333pt;}
.ls18{letter-spacing:0.723200pt;}
.ls3e{letter-spacing:0.748800pt;}
.ls89{letter-spacing:0.749467pt;}
.ls82{letter-spacing:0.754800pt;}
.ls76{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.784000pt;}
.ls2a{letter-spacing:0.832000pt;}
.ls8b{letter-spacing:0.872107pt;}
.ls5e{letter-spacing:0.896000pt;}
.ls8e{letter-spacing:0.953867pt;}
.ls10{letter-spacing:1.024000pt;}
.ls75{letter-spacing:1.088000pt;}
.ls90{letter-spacing:1.090133pt;}
.ls1f{letter-spacing:1.162667pt;}
.ls47{letter-spacing:1.164800pt;}
.ls73{letter-spacing:1.184000pt;}
.ls81{letter-spacing:1.224000pt;}
.ls88{letter-spacing:1.226400pt;}
.ls41{letter-spacing:1.226667pt;}
.ls56{letter-spacing:1.280000pt;}
.ls7e{letter-spacing:1.292000pt;}
.ls7f{letter-spacing:1.360000pt;}
.ls8a{letter-spacing:1.369480pt;}
.ls39{letter-spacing:1.397333pt;}
.ls79{letter-spacing:1.428000pt;}
.ls8f{letter-spacing:1.430800pt;}
.ls3a{letter-spacing:1.461333pt;}
.ls80{letter-spacing:1.489200pt;}
.ls7b{letter-spacing:1.567067pt;}
.ls3b{letter-spacing:1.600000pt;}
.ls86{letter-spacing:1.635200pt;}
.ls8d{letter-spacing:1.700000pt;}
.ls46{letter-spacing:1.770667pt;}
.ls34{letter-spacing:1.824000pt;}
.ls62{letter-spacing:1.984000pt;}
.ls87{letter-spacing:2.044000pt;}
.ls7c{letter-spacing:2.516000pt;}
.ls74{letter-spacing:4.128000pt;}
.ls3d{letter-spacing:8.128000pt;}
.ls5d{letter-spacing:14.741333pt;}
.ls5c{letter-spacing:14.794667pt;}
.ls2c{letter-spacing:25.008000pt;}
.ls17{letter-spacing:39.541333pt;}
.ls12{letter-spacing:39.674667pt;}
.ls4a{letter-spacing:59.989333pt;}
.ls40{letter-spacing:99.541333pt;}
.ls6d{letter-spacing:104.874667pt;}
.ls3f{letter-spacing:114.208000pt;}
.ls45{letter-spacing:121.008000pt;}
.ls6f{letter-spacing:122.341333pt;}
.ls44{letter-spacing:137.008000pt;}
.ls6e{letter-spacing:139.674667pt;}
.ls0{letter-spacing:178.322667pt;}
.ls57{letter-spacing:282.869333pt;}
.ws15{word-spacing:-39.873200pt;}
.ws4f{word-spacing:-36.885200pt;}
.ws8{word-spacing:-23.904000pt;}
.ws6f{word-spacing:-19.009200pt;}
.ws6d{word-spacing:-18.632000pt;}
.ws33{word-spacing:-18.592000pt;}
.ws46{word-spacing:-17.596142pt;}
.ws56{word-spacing:-16.965200pt;}
.ws60{word-spacing:-16.932000pt;}
.wsd{word-spacing:-16.768000pt;}
.ws1b{word-spacing:-16.576000pt;}
.ws32{word-spacing:-16.544000pt;}
.ws3e{word-spacing:-16.531200pt;}
.ws40{word-spacing:-16.512000pt;}
.ws3b{word-spacing:-16.408000pt;}
.ws4e{word-spacing:-16.371200pt;}
.wsf{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.307200pt;}
.ws26{word-spacing:-16.275200pt;}
.ws4a{word-spacing:-16.256000pt;}
.ws64{word-spacing:-16.215733pt;}
.ws14{word-spacing:-16.192000pt;}
.ws20{word-spacing:-16.179200pt;}
.ws3a{word-spacing:-16.172800pt;}
.ws13{word-spacing:-16.128000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws1d{word-spacing:-15.904000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws4c{word-spacing:-15.795200pt;}
.ws51{word-spacing:-15.776000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws4b{word-spacing:-15.564800pt;}
.wsb{word-spacing:-15.552000pt;}
.ws52{word-spacing:-15.532800pt;}
.wse{word-spacing:-15.488000pt;}
.ws50{word-spacing:-15.475200pt;}
.ws53{word-spacing:-15.360000pt;}
.wsc{word-spacing:-15.296000pt;}
.ws1c{word-spacing:-15.283200pt;}
.ws11{word-spacing:-15.232000pt;}
.ws3f{word-spacing:-14.976000pt;}
.ws4d{word-spacing:-14.912000pt;}
.ws6{word-spacing:-14.549333pt;}
.ws41{word-spacing:-14.496000pt;}
.ws24{word-spacing:-14.453333pt;}
.ws1{word-spacing:-14.448000pt;}
.ws2{word-spacing:-14.336000pt;}
.ws3{word-spacing:-14.224000pt;}
.ws17{word-spacing:-13.813333pt;}
.ws19{word-spacing:-13.760000pt;}
.ws1a{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.546667pt;}
.ws23{word-spacing:-13.493333pt;}
.ws1f{word-spacing:-13.440000pt;}
.ws28{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.226667pt;}
.ws18{word-spacing:-13.120000pt;}
.ws42{word-spacing:-13.066667pt;}
.ws22{word-spacing:-13.013333pt;}
.ws43{word-spacing:-12.906667pt;}
.ws45{word-spacing:-12.853333pt;}
.ws16{word-spacing:-12.746667pt;}
.ws12{word-spacing:-12.586667pt;}
.ws31{word-spacing:-12.532800pt;}
.ws21{word-spacing:-12.480000pt;}
.ws2a{word-spacing:-12.432000pt;}
.ws0{word-spacing:-12.376000pt;}
.ws27{word-spacing:-12.352000pt;}
.ws48{word-spacing:-12.240000pt;}
.ws2f{word-spacing:-12.096000pt;}
.ws2e{word-spacing:-12.048000pt;}
.ws25{word-spacing:-12.000000pt;}
.ws3d{word-spacing:-11.985200pt;}
.ws3c{word-spacing:-11.952000pt;}
.ws2b{word-spacing:-11.904000pt;}
.ws2d{word-spacing:-11.808000pt;}
.ws47{word-spacing:-11.616000pt;}
.ws29{word-spacing:-11.520000pt;}
.ws30{word-spacing:-11.472000pt;}
.ws49{word-spacing:-11.280000pt;}
.ws2c{word-spacing:-11.136000pt;}
.ws35{word-spacing:-10.624000pt;}
.ws44{word-spacing:-9.113867pt;}
.ws57{word-spacing:-5.874667pt;}
.ws5a{word-spacing:-3.322667pt;}
.ws5e{word-spacing:-3.132933pt;}
.ws5c{word-spacing:-2.993333pt;}
.ws55{word-spacing:-2.825867pt;}
.ws6a{word-spacing:-2.331107pt;}
.ws65{word-spacing:-2.202933pt;}
.ws66{word-spacing:-1.870133pt;}
.ws61{word-spacing:-1.671067pt;}
.ws69{word-spacing:-1.111600pt;}
.ws5f{word-spacing:-0.789333pt;}
.ws59{word-spacing:-0.566667pt;}
.ws67{word-spacing:-0.253333pt;}
.ws4{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.684000pt;}
.ws6e{word-spacing:1.044933pt;}
.ws63{word-spacing:1.288000pt;}
.ws62{word-spacing:1.290667pt;}
.ws6b{word-spacing:1.892933pt;}
.ws5b{word-spacing:1.968000pt;}
.ws5d{word-spacing:2.248000pt;}
.ws68{word-spacing:2.714533pt;}
.ws54{word-spacing:2.916267pt;}
.ws58{word-spacing:5.322667pt;}
.ws39{word-spacing:86.101333pt;}
.ws36{word-spacing:124.448000pt;}
.ws38{word-spacing:139.232000pt;}
.ws37{word-spacing:152.885333pt;}
.ws34{word-spacing:245.438933pt;}
._e{margin-left:-14.953067pt;}
._b{margin-left:-13.896000pt;}
._d{margin-left:-12.854933pt;}
._c{margin-left:-11.795200pt;}
._36{margin-left:-10.001067pt;}
._8{margin-left:-8.972267pt;}
._a{margin-left:-7.296000pt;}
._9{margin-left:-5.749333pt;}
._5{margin-left:-4.179733pt;}
._1{margin-left:-3.273067pt;}
._3{margin-left:-2.239467pt;}
._0{margin-left:-1.033600pt;}
._4{width:1.205867pt;}
._2{width:2.411733pt;}
._7{width:3.509867pt;}
._6{width:4.848000pt;}
._18{width:6.538133pt;}
._1d{width:7.881600pt;}
._12{width:9.417600pt;}
._33{width:10.308267pt;}
._17{width:11.200000pt;}
._22{width:12.179733pt;}
._1f{width:13.620800pt;}
._10{width:14.602133pt;}
._11{width:16.827200pt;}
._f{width:18.426133pt;}
._21{width:19.614933pt;}
._15{width:20.544000pt;}
._16{width:21.523733pt;}
._1e{width:22.499200pt;}
._13{width:23.881600pt;}
._14{width:24.970133pt;}
._1b{width:25.899200pt;}
._1c{width:27.518933pt;}
._26{width:28.555733pt;}
._23{width:29.706133pt;}
._2a{width:31.050133pt;}
._20{width:32.019733pt;}
._2b{width:33.014400pt;}
._27{width:34.048000pt;}
._28{width:35.220267pt;}
._2d{width:36.138667pt;}
._19{width:37.056000pt;}
._1a{width:38.406400pt;}
._32{width:39.632000pt;}
._29{width:40.661867pt;}
._25{width:41.920000pt;}
._24{width:42.835733pt;}
._2e{width:46.154133pt;}
._2f{width:47.900267pt;}
._49{width:48.939733pt;}
._48{width:50.259733pt;}
._4a{width:51.248533pt;}
._31{width:53.838933pt;}
._30{width:54.877333pt;}
._39{width:63.424000pt;}
._3a{width:64.979733pt;}
._3b{width:66.908800pt;}
._37{width:69.376000pt;}
._38{width:70.374933pt;}
._35{width:71.521067pt;}
._34{width:72.537067pt;}
._4c{width:93.056000pt;}
._4b{width:96.265600pt;}
._41{width:126.857600pt;}
._43{width:127.806400pt;}
._42{width:128.868267pt;}
._47{width:138.368000pt;}
._46{width:139.337600pt;}
._44{width:142.666133pt;}
._45{width:143.574933pt;}
._3d{width:164.764267pt;}
._3c{width:166.220800pt;}
._2c{width:196.896000pt;}
._40{width:235.505067pt;}
._3e{width:236.415467pt;}
._3f{width:237.711467pt;}
.fs11{font-size:2.666667pt;}
.fsa{font-size:34.666667pt;}
.fs9{font-size:42.666667pt;}
.fsf{font-size:48.000000pt;}
.fs12{font-size:48.133333pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs13{font-size:56.217707pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs15{font-size:68.000000pt;}
.fs14{font-size:68.133333pt;}
.fs10{font-size:74.666667pt;}
.fsc{font-size:84.000000pt;}
.fsd{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:108.133333pt;}
.fse{font-size:128.133333pt;}
.fsb{font-size:148.133333pt;}
.fs8{font-size:160.133333pt;}
.fs1{font-size:172.133333pt;}
.fs0{font-size:172.266667pt;}
.y0{bottom:0.000000pt;}
.y25f{bottom:4.666667pt;}
.y191{bottom:5.333333pt;}
.y275{bottom:5.653333pt;}
.y177{bottom:5.666667pt;}
.y292{bottom:6.000000pt;}
.y2b2{bottom:6.666667pt;}
.y180{bottom:7.000000pt;}
.y283{bottom:10.000000pt;}
.y9{bottom:11.000000pt;}
.y1bf{bottom:11.200000pt;}
.y24b{bottom:11.333333pt;}
.y17b{bottom:13.000000pt;}
.y19b{bottom:13.040000pt;}
.y5{bottom:13.133333pt;}
.y184{bottom:13.666667pt;}
.y173{bottom:13.680000pt;}
.y16f{bottom:14.000000pt;}
.y175{bottom:14.333333pt;}
.y273{bottom:14.653333pt;}
.y17d{bottom:14.666667pt;}
.y2a9{bottom:14.680000pt;}
.y21{bottom:16.333333pt;}
.y1d2{bottom:18.333333pt;}
.y1c9{bottom:18.666667pt;}
.y1c6{bottom:18.693333pt;}
.y245{bottom:18.706667pt;}
.y198{bottom:20.706667pt;}
.y25e{bottom:21.000000pt;}
.y179{bottom:21.666667pt;}
.y190{bottom:21.986667pt;}
.y183{bottom:22.000000pt;}
.y176{bottom:22.666667pt;}
.y2b1{bottom:22.680000pt;}
.y17f{bottom:23.026667pt;}
.y1f2{bottom:23.266667pt;}
.y251{bottom:23.333333pt;}
.y187{bottom:23.666667pt;}
.y274{bottom:23.693333pt;}
.y1be{bottom:24.000000pt;}
.y282{bottom:26.000000pt;}
.yf{bottom:27.320000pt;}
.y11{bottom:27.346667pt;}
.yd{bottom:28.666667pt;}
.y19a{bottom:29.040000pt;}
.y17a{bottom:30.000000pt;}
.y26b{bottom:30.013333pt;}
.y171{bottom:30.333333pt;}
.y2a8{bottom:30.666667pt;}
.y17c{bottom:32.360000pt;}
.y15{bottom:32.666667pt;}
.y29f{bottom:37.000000pt;}
.y25d{bottom:37.026667pt;}
.y291{bottom:38.333333pt;}
.y197{bottom:38.373333pt;}
.y18f{bottom:38.666667pt;}
.y2b0{bottom:39.013333pt;}
.y17e{bottom:39.693333pt;}
.y186{bottom:40.333333pt;}
.yb{bottom:41.666667pt;}
.y20{bottom:42.333333pt;}
.y281{bottom:42.360000pt;}
.y259{bottom:45.026667pt;}
.y13{bottom:45.333333pt;}
.y199{bottom:45.706667pt;}
.y18a{bottom:46.333333pt;}
.y26a{bottom:46.346667pt;}
.y195{bottom:46.666667pt;}
.y172{bottom:47.000000pt;}
.y2a7{bottom:47.013333pt;}
.y1e8{bottom:47.600000pt;}
.y1f3{bottom:48.200000pt;}
.y254{bottom:52.360000pt;}
.y29e{bottom:53.333333pt;}
.y256{bottom:53.360000pt;}
.y290{bottom:54.373333pt;}
.yc{bottom:54.666667pt;}
.y2af{bottom:55.000000pt;}
.y18e{bottom:55.026667pt;}
.y14{bottom:58.333333pt;}
.y280{bottom:58.360000pt;}
.y257{bottom:61.360000pt;}
.y269{bottom:62.333333pt;}
.y194{bottom:63.373333pt;}
.y2e8{bottom:63.733333pt;}
.y189{bottom:64.360000pt;}
.y279{bottom:66.693333pt;}
.y24a{bottom:67.366667pt;}
.y8{bottom:67.700000pt;}
.y1f{bottom:69.000000pt;}
.y255{bottom:69.360000pt;}
.y253{bottom:70.360000pt;}
.y28f{bottom:70.706667pt;}
.y18d{bottom:71.360000pt;}
.y2ae{bottom:71.373333pt;}
.y1e9{bottom:72.560000pt;}
.y1f4{bottom:73.173333pt;}
.y27f{bottom:74.693333pt;}
.y249{bottom:76.033333pt;}
.y7{bottom:76.366667pt;}
.y263{bottom:76.706667pt;}
.y258{bottom:77.360000pt;}
.y299{bottom:77.693333pt;}
.y268{bottom:78.706667pt;}
.y2a3{bottom:79.373333pt;}
.y193{bottom:79.693333pt;}
.y278{bottom:82.693333pt;}
.y25c{bottom:85.693333pt;}
.y1bc{bottom:85.866667pt;}
.y28e{bottom:86.693333pt;}
.y26d{bottom:86.706667pt;}
.y2ad{bottom:87.373333pt;}
.y18c{bottom:88.360000pt;}
.y27e{bottom:90.693333pt;}
.y298{bottom:93.693333pt;}
.yfa{bottom:94.700000pt;}
.y262{bottom:94.706667pt;}
.y11c{bottom:95.033333pt;}
.y295{bottom:95.040000pt;}
.ya1{bottom:95.366667pt;}
.y2a2{bottom:95.706667pt;}
.y192{bottom:96.040000pt;}
.y1e{bottom:97.000000pt;}
.y1ea{bottom:97.506667pt;}
.y1f5{bottom:98.093333pt;}
.y271{bottom:98.366667pt;}
.y1ce{bottom:98.700000pt;}
.y277{bottom:99.026667pt;}
.yf9{bottom:99.366667pt;}
.y2a{bottom:100.700000pt;}
.y25b{bottom:101.693333pt;}
.y2e7{bottom:101.766667pt;}
.yee{bottom:102.366667pt;}
.y1c5{bottom:102.693333pt;}
.y28d{bottom:103.026667pt;}
.y270{bottom:103.033333pt;}
.y26c{bottom:103.040000pt;}
.y167{bottom:103.366667pt;}
.y2ac{bottom:103.706667pt;}
.y23c{bottom:104.033333pt;}
.y18b{bottom:104.693333pt;}
.y4e{bottom:106.700000pt;}
.y27d{bottom:107.026667pt;}
.y12b{bottom:107.033333pt;}
.y18{bottom:109.040000pt;}
.y297{bottom:110.026667pt;}
.y22f{bottom:110.700000pt;}
.y267{bottom:111.040000pt;}
.yd2{bottom:111.366667pt;}
.y2a6{bottom:111.706667pt;}
.y261{bottom:112.706667pt;}
.y1bb{bottom:114.733333pt;}
.yb7{bottom:115.366667pt;}
.y20e{bottom:116.033333pt;}
.y19c{bottom:116.366667pt;}
.y1d1{bottom:118.026667pt;}
.y25a{bottom:118.053333pt;}
.y240{bottom:118.360000pt;}
.y2d2{bottom:118.366667pt;}
.y28c{bottom:119.066667pt;}
.y91{bottom:119.366667pt;}
.y2ab{bottom:119.706667pt;}
.y225{bottom:120.033333pt;}
.y1c4{bottom:122.026667pt;}
.y166{bottom:122.033333pt;}
.y1eb{bottom:122.440000pt;}
.y2e6{bottom:122.766667pt;}
.y1f6{bottom:123.026667pt;}
.y11b{bottom:123.033333pt;}
.y27c{bottom:123.386667pt;}
.y29{bottom:124.033333pt;}
.y1d{bottom:124.373333pt;}
.yed{bottom:125.700000pt;}
.y2a0{bottom:126.026667pt;}
.y1cd{bottom:126.700000pt;}
.y266{bottom:127.040000pt;}
.y285{bottom:127.400000pt;}
.y2a5{bottom:128.040000pt;}
.y244{bottom:128.400000pt;}
.y114{bottom:128.700000pt;}
.y1e6{bottom:129.033333pt;}
.y78{bottom:129.366667pt;}
.y1c0{bottom:130.033333pt;}
.yec{bottom:130.366667pt;}
.y21b{bottom:130.700000pt;}
.y2de{bottom:131.366667pt;}
.y14f{bottom:131.700000pt;}
.y29d{bottom:134.360000pt;}
.y17{bottom:134.706667pt;}
.y23f{bottom:135.026667pt;}
.y1c1{bottom:135.360000pt;}
.y28b{bottom:135.400000pt;}
.yf8{bottom:136.040000pt;}
.y2c7{bottom:136.706667pt;}
.y41{bottom:137.693333pt;}
.y228{bottom:139.040000pt;}
.y27b{bottom:139.386667pt;}
.ya0{bottom:139.706667pt;}
.y26f{bottom:140.733333pt;}
.y4d{bottom:141.360000pt;}
.y1c3{bottom:141.733333pt;}
.y16d{bottom:143.373333pt;}
.y294{bottom:143.400000pt;}
.y1ba{bottom:143.573333pt;}
.y143{bottom:143.693333pt;}
.y2e5{bottom:143.800000pt;}
.y2a4{bottom:144.080000pt;}
.y20d{bottom:144.360000pt;}
.y243{bottom:145.066667pt;}
.y196{bottom:145.360000pt;}
.y64{bottom:146.373333pt;}
.y2d1{bottom:146.693333pt;}
.yad{bottom:147.360000pt;}
.y1ec{bottom:147.400000pt;}
.y1f7{bottom:148.000000pt;}
.y224{bottom:148.040000pt;}
.y2b4{bottom:148.066667pt;}
.yeb{bottom:149.373333pt;}
.y165{bottom:150.026667pt;}
.y1c{bottom:150.040000pt;}
.y29c{bottom:150.386667pt;}
.y11a{bottom:151.373333pt;}
.y28a{bottom:151.400000pt;}
.y23e{bottom:151.693333pt;}
.y2aa{bottom:152.080000pt;}
.yea{bottom:154.040000pt;}
.y22e{bottom:154.733333pt;}
.y27a{bottom:155.720000pt;}
.yd1{bottom:155.733333pt;}
.y1d0{bottom:157.026667pt;}
.y1b8{bottom:157.333333pt;}
.y1e5{bottom:157.400000pt;}
.y77{bottom:157.733333pt;}
.y284{bottom:158.400000pt;}
.yb6{bottom:159.400000pt;}
.y265{bottom:159.413333pt;}
.y293{bottom:159.733333pt;}
.y242{bottom:161.733333pt;}
.y90{bottom:163.400000pt;}
.y28{bottom:163.733333pt;}
.y2c6{bottom:165.066667pt;}
.y29b{bottom:166.720000pt;}
.y12e{bottom:167.400000pt;}
.y289{bottom:167.733333pt;}
.y1dd{bottom:169.733333pt;}
.y1cc{bottom:171.066667pt;}
.y16c{bottom:171.733333pt;}
.y1ed{bottom:172.333333pt;}
.y20c{bottom:172.400000pt;}
.ye9{bottom:172.733333pt;}
.y1f8{bottom:172.933333pt;}
.y2dd{bottom:173.733333pt;}
.y21a{bottom:174.733333pt;}
.yac{bottom:175.400000pt;}
.y1b{bottom:175.706667pt;}
.y264{bottom:175.746667pt;}
.y14e{bottom:176.066667pt;}
.y4c{bottom:176.400000pt;}
.ye8{bottom:177.400000pt;}
.y164{bottom:178.400000pt;}
.y247{bottom:179.066667pt;}
.yf7{bottom:179.400000pt;}
.y40{bottom:181.733333pt;}
.y29a{bottom:182.720000pt;}
.y1c8{bottom:183.400000pt;}
.y63{bottom:183.733333pt;}
.y1e4{bottom:185.400000pt;}
.y76{bottom:185.733333pt;}
.y2e4{bottom:187.466667pt;}
.y2c8{bottom:187.733333pt;}
.y26e{bottom:189.733333pt;}
.y130{bottom:190.733333pt;}
.y8f{bottom:191.400000pt;}
.y23b{bottom:192.400000pt;}
.y2c5{bottom:193.066667pt;}
.y142{bottom:194.066667pt;}
.y16e{bottom:195.400000pt;}
.ye7{bottom:196.066667pt;}
.y1cb{bottom:197.066667pt;}
.y1ee{bottom:197.293333pt;}
.y1f9{bottom:197.893333pt;}
.y1dc{bottom:198.066667pt;}
.y22d{bottom:199.066667pt;}
.yd0{bottom:199.733333pt;}
.y288{bottom:200.106667pt;}
.ye6{bottom:200.733333pt;}
.y1bd{bottom:201.266667pt;}
.y1a{bottom:201.706667pt;}
.y2dc{bottom:201.733333pt;}
.y2d0{bottom:202.733333pt;}
.y2b3{bottom:202.773333pt;}
.y27{bottom:203.066667pt;}
.yb5{bottom:203.733333pt;}
.y4b{bottom:204.400000pt;}
.y260{bottom:205.426667pt;}
.y163{bottom:206.400000pt;}
.y119{bottom:207.400000pt;}
.y2cd{bottom:211.400000pt;}
.y9f{bottom:211.733333pt;}
.y1e3{bottom:213.733333pt;}
.y118{bottom:214.066667pt;}
.y12d{bottom:215.733333pt;}
.y2a1{bottom:215.760000pt;}
.y287{bottom:216.440000pt;}
.y20b{bottom:216.733333pt;}
.y219{bottom:218.733333pt;}
.y126{bottom:219.400000pt;}
.y8e{bottom:219.733333pt;}
.y14d{bottom:220.066667pt;}
.y23a{bottom:220.400000pt;}
.y62{bottom:221.400000pt;}
.y1ef{bottom:222.226667pt;}
.y1ca{bottom:222.400000pt;}
.y1fa{bottom:222.840000pt;}
.yf6{bottom:223.400000pt;}
.y125{bottom:224.066667pt;}
.y3f{bottom:225.733333pt;}
.y1db{bottom:226.066667pt;}
.y26{bottom:226.400000pt;}
.y22c{bottom:227.066667pt;}
.y19{bottom:227.400000pt;}
.yc9{bottom:227.733333pt;}
.y113{bottom:229.066667pt;}
.y75{bottom:229.733333pt;}
.y2cf{bottom:231.066667pt;}
.ybb{bottom:231.733333pt;}
.y286{bottom:232.440000pt;}
.y223{bottom:232.733333pt;}
.y162{bottom:234.400000pt;}
.y136{bottom:235.733333pt;}
.y1af{bottom:236.400000pt;}
.y1c7{bottom:237.400000pt;}
.ye5{bottom:237.733333pt;}
.y141{bottom:238.066667pt;}
.y4a{bottom:239.066667pt;}
.y2cc{bottom:239.400000pt;}
.y1e2{bottom:241.733333pt;}
.y124{bottom:243.066667pt;}
.ycf{bottom:243.733333pt;}
.y20a{bottom:244.733333pt;}
.y246{bottom:246.733333pt;}
.y218{bottom:247.066667pt;}
.y1f0{bottom:247.173333pt;}
.yab{bottom:247.733333pt;}
.y1fb{bottom:247.773333pt;}
.y239{bottom:248.733333pt;}
.y2e3{bottom:250.933333pt;}
.yf5{bottom:251.733333pt;}
.y1b9{bottom:251.773333pt;}
.y1da{bottom:254.066667pt;}
.y1b7{bottom:254.400000pt;}
.y22b{bottom:255.066667pt;}
.y9e{bottom:256.066667pt;}
.y112{bottom:257.066667pt;}
.y74{bottom:258.066667pt;}
.y61{bottom:259.066667pt;}
.yba{bottom:259.733333pt;}
.y3e{bottom:260.733333pt;}
.y241{bottom:261.733333pt;}
.y161{bottom:262.733333pt;}
.y8d{bottom:263.733333pt;}
.y14c{bottom:264.400000pt;}
.y2c4{bottom:265.400000pt;}
.y25{bottom:266.066667pt;}
.y12a{bottom:266.400000pt;}
.y227{bottom:267.733333pt;}
.y1e1{bottom:269.773333pt;}
.y16b{bottom:272.106667pt;}
.y1f1{bottom:272.133333pt;}
.y1fc{bottom:272.733333pt;}
.y209{bottom:272.773333pt;}
.y49{bottom:274.106667pt;}
.y2e2{bottom:274.973333pt;}
.y217{bottom:275.106667pt;}
.yaa{bottom:275.773333pt;}
.yf4{bottom:279.760000pt;}
.y1ae{bottom:280.773333pt;}
.y1b6{bottom:282.426667pt;}
.yc8{bottom:284.106667pt;}
.y123{bottom:284.440000pt;}
.y111{bottom:285.426667pt;}
.yce{bottom:288.093333pt;}
.y222{bottom:288.760000pt;}
.y129{bottom:289.773333pt;}
.y8c{bottom:291.760000pt;}
.y238{bottom:292.773333pt;}
.ye3{bottom:293.773333pt;}
.y140{bottom:294.426667pt;}
.y3d{bottom:295.440000pt;}
.y226{bottom:295.773333pt;}
.y1e0{bottom:296.106667pt;}
.y60{bottom:296.440000pt;}
.y2e1{bottom:298.973333pt;}
.ye4{bottom:299.106667pt;}
.y22a{bottom:299.440000pt;}
.y9d{bottom:300.093333pt;}
.y208{bottom:301.106667pt;}
.y48{bottom:302.106667pt;}
.y216{bottom:303.093333pt;}
.ya9{bottom:304.106667pt;}
.y2ce{bottom:305.440000pt;}
.y160{bottom:306.760000pt;}
.y24{bottom:307.440000pt;}
.yf3{bottom:307.773333pt;}
.y14b{bottom:308.440000pt;}
.y1ad{bottom:308.773333pt;}
.y2c3{bottom:309.426667pt;}
.y1d9{bottom:310.440000pt;}
.y1b5{bottom:310.773333pt;}
.y110{bottom:313.440000pt;}
.ycd{bottom:316.106667pt;}
.y122{bottom:320.106667pt;}
.y237{bottom:320.773333pt;}
.y1df{bottom:321.426667pt;}
.ye2{bottom:322.106667pt;}
.y13f{bottom:322.440000pt;}
.y135{bottom:323.773333pt;}
.yc7{bottom:328.440000pt;}
.y207{bottom:329.106667pt;}
.y188{bottom:329.440000pt;}
.y3c{bottom:330.093333pt;}
.y215{bottom:331.440000pt;}
.yb4{bottom:332.106667pt;}
.y221{bottom:333.093333pt;}
.y5f{bottom:334.106667pt;}
.y15f{bottom:334.773333pt;}
.y8b{bottom:336.093333pt;}
.y47{bottom:336.760000pt;}
.y2c2{bottom:337.773333pt;}
.y1b4{bottom:338.773333pt;}
.y128{bottom:341.440000pt;}
.y9c{bottom:344.440000pt;}
.y1de{bottom:345.093333pt;}
.y229{bottom:345.760000pt;}
.y2e0{bottom:346.040000pt;}
.ya8{bottom:348.093333pt;}
.y236{bottom:349.106667pt;}
.ye1{bottom:350.106667pt;}
.y13e{bottom:350.773333pt;}
.y23{bottom:351.426667pt;}
.y117{bottom:352.106667pt;}
.y14a{bottom:352.440000pt;}
.y1d8{bottom:354.426667pt;}
.yc6{bottom:356.440000pt;}
.y206{bottom:357.106667pt;}
.y10f{bottom:357.440000pt;}
.y73{bottom:358.440000pt;}
.y145{bottom:360.440000pt;}
.y220{bottom:361.106667pt;}
.y15e{bottom:363.106667pt;}
.y8a{bottom:364.106667pt;}
.y3b{bottom:365.106667pt;}
.y2c1{bottom:365.773333pt;}
.y1b3{bottom:366.773333pt;}
.y2cb{bottom:368.106667pt;}
.y5e{bottom:371.773333pt;}
.ycc{bottom:372.440000pt;}
.y2db{bottom:374.440000pt;}
.y214{bottom:375.440000pt;}
.ya7{bottom:376.440000pt;}
.y235{bottom:377.106667pt;}
.ye0{bottom:378.106667pt;}
.y22{bottom:379.773333pt;}
.y116{bottom:380.106667pt;}
.y296{bottom:381.840000pt;}
.y1d7{bottom:382.773333pt;}
.yc5{bottom:384.466667pt;}
.y205{bottom:385.466667pt;}
.y10e{bottom:385.800000pt;}
.y72{bottom:386.466667pt;}
.y9b{bottom:388.466667pt;}
.y21f{bottom:389.133333pt;}
.y15d{bottom:391.133333pt;}
.y89{bottom:392.466667pt;}
.y1ac{bottom:393.133333pt;}
.y2df{bottom:394.066667pt;}
.y16{bottom:394.800000pt;}
.y2ca{bottom:396.133333pt;}
.y149{bottom:396.800000pt;}
.y3a{bottom:399.800000pt;}
.y16a{bottom:400.466667pt;}
.y2da{bottom:402.466667pt;}
.y252{bottom:402.506667pt;}
.y213{bottom:403.800000pt;}
.y276{bottom:403.840000pt;}
.yb3{bottom:404.466667pt;}
.y234{bottom:405.133333pt;}
.yde{bottom:406.466667pt;}
.yfb{bottom:408.466667pt;}
.y5d{bottom:409.466667pt;}
.y2c0{bottom:409.800000pt;}
.y1d6{bottom:410.800000pt;}
.y1b2{bottom:411.133333pt;}
.ydf{bottom:411.800000pt;}
.yc4{bottom:412.800000pt;}
.y204{bottom:413.466667pt;}
.y10d{bottom:413.800000pt;}
.y9a{bottom:416.466667pt;}
.y21e{bottom:417.466667pt;}
.y88{bottom:420.466667pt;}
.y13d{bottom:422.800000pt;}
.y2c9{bottom:424.466667pt;}
.y169{bottom:428.800000pt;}
.y71{bottom:430.800000pt;}
.y212{bottom:431.800000pt;}
.yb2{bottom:432.466667pt;}
.y233{bottom:433.466667pt;}
.ydd{bottom:434.466667pt;}
.y39{bottom:434.800000pt;}
.y15c{bottom:435.466667pt;}
.yf2{bottom:436.466667pt;}
.y1ab{bottom:437.133333pt;}
.y2bf{bottom:438.133333pt;}
.y1d5{bottom:439.133333pt;}
.y148{bottom:440.800000pt;}
.y10c{bottom:441.800000pt;}
.y99{bottom:444.800000pt;}
.y21d{bottom:445.466667pt;}
.y5c{bottom:446.800000pt;}
.y185{bottom:447.133333pt;}
.ya6{bottom:448.466667pt;}
.y13b{bottom:451.133333pt;}
.y121{bottom:452.466667pt;}
.y203{bottom:455.466667pt;}
.y13c{bottom:456.466667pt;}
.yc3{bottom:456.800000pt;}
.y1b1{bottom:457.466667pt;}
.y70{bottom:458.800000pt;}
.y211{bottom:459.800000pt;}
.yb1{bottom:460.800000pt;}
.y232{bottom:461.466667pt;}
.ydb{bottom:462.800000pt;}
.y15b{bottom:463.466667pt;}
.y87{bottom:464.466667pt;}
.y1aa{bottom:465.466667pt;}
.y2be{bottom:466.133333pt;}
.y1d4{bottom:467.133333pt;}
.ydc{bottom:468.133333pt;}
.y38{bottom:469.466667pt;}
.y10b{bottom:470.133333pt;}
.ycb{bottom:472.800000pt;}
.y2d9{bottom:474.800000pt;}
.ya5{bottom:476.800000pt;}
.y13a{bottom:479.133333pt;}
.y120{bottom:480.466667pt;}
.y5b{bottom:484.466667pt;}
.yc2{bottom:484.800000pt;}
.y6f{bottom:486.800000pt;}
.y21c{bottom:487.466667pt;}
.y210{bottom:488.133333pt;}
.y98{bottom:488.800000pt;}
.y231{bottom:489.800000pt;}
.y1b0{bottom:490.466667pt;}
.yd9{bottom:490.800000pt;}
.y15a{bottom:491.466667pt;}
.y86{bottom:492.800000pt;}
.y1a9{bottom:493.466667pt;}
.y2bd{bottom:494.466667pt;}
.yda{bottom:496.133333pt;}
.y202{bottom:497.133333pt;}
.y37{bottom:497.466667pt;}
.y10a{bottom:498.173333pt;}
.y168{bottom:500.840000pt;}
.y1e7{bottom:501.666667pt;}
.y182{bottom:501.840000pt;}
.y2d8{bottom:502.840000pt;}
.ya4{bottom:504.840000pt;}
.y139{bottom:507.506667pt;}
.yfe{bottom:508.840000pt;}
.y1d3{bottom:509.173333pt;}
.y97{bottom:516.840000pt;}
.yd8{bottom:518.840000pt;}
.y159{bottom:519.840000pt;}
.y85{bottom:520.840000pt;}
.y1a7{bottom:521.840000pt;}
.y5a{bottom:522.173333pt;}
.y2bc{bottom:522.506667pt;}
.y201{bottom:525.173333pt;}
.y109{bottom:526.506667pt;}
.y1a8{bottom:527.173333pt;}
.yc1{bottom:529.173333pt;}
.y6e{bottom:531.173333pt;}
.y230{bottom:531.840000pt;}
.y36{bottom:532.506667pt;}
.y250{bottom:532.560000pt;}
.yb0{bottom:532.840000pt;}
.y20f{bottom:534.506667pt;}
.yfd{bottom:536.840000pt;}
.y1cf{bottom:537.506667pt;}
.y138{bottom:543.173333pt;}
.y23d{bottom:543.506667pt;}
.y96{bottom:545.173333pt;}
.yd7{bottom:547.173333pt;}
.y158{bottom:547.840000pt;}
.y84{bottom:548.840000pt;}
.y1a6{bottom:549.840000pt;}
.y181{bottom:553.506667pt;}
.y108{bottom:554.506667pt;}
.yc0{bottom:557.173333pt;}
.y6d{bottom:559.173333pt;}
.y59{bottom:559.506667pt;}
.yaf{bottom:561.173333pt;}
.yfc{bottom:564.840000pt;}
.y2bb{bottom:566.506667pt;}
.y35{bottom:567.173333pt;}
.y200{bottom:569.506667pt;}
.yca{bottom:573.173333pt;}
.yd6{bottom:575.173333pt;}
.y157{bottom:575.840000pt;}
.y272{bottom:576.573333pt;}
.y83{bottom:577.173333pt;}
.y1a5{bottom:577.840000pt;}
.y137{bottom:581.840000pt;}
.y107{bottom:582.506667pt;}
.y6c{bottom:587.173333pt;}
.y95{bottom:589.173333pt;}
.yf1{bottom:593.173333pt;}
.y152{bottom:594.293333pt;}
.y2ba{bottom:594.840000pt;}
.y1c2{bottom:596.506667pt;}
.y58{bottom:597.173333pt;}
.y24f{bottom:598.266667pt;}
.y11f{bottom:598.506667pt;}
.ybf{bottom:601.506667pt;}
.y34{bottom:601.840000pt;}
.y2d7{bottom:603.173333pt;}
.y156{bottom:604.173333pt;}
.y82{bottom:605.173333pt;}
.y1a4{bottom:606.173333pt;}
.y134{bottom:609.173333pt;}
.y1ff{bottom:613.533333pt;}
.y94{bottom:617.533333pt;}
.yd5{bottom:619.200000pt;}
.yf0{bottom:621.200000pt;}
.y2b9{bottom:622.866667pt;}
.y24e{bottom:626.266667pt;}
.y127{bottom:626.533333pt;}
.y106{bottom:626.866667pt;}
.ybe{bottom:629.533333pt;}
.y6b{bottom:631.533333pt;}
.y155{bottom:632.200000pt;}
.ya3{bottom:633.533333pt;}
.y19d{bottom:634.333333pt;}
.y57{bottom:634.866667pt;}
.y33{bottom:636.866667pt;}
.y133{bottom:637.200000pt;}
.y12{bottom:640.866667pt;}
.y178{bottom:643.533333pt;}
.y93{bottom:645.533333pt;}
.yd4{bottom:647.533333pt;}
.y81{bottom:649.533333pt;}
.y1a3{bottom:650.200000pt;}
.y2b8{bottom:650.866667pt;}
.y151{bottom:651.333333pt;}
.y24d{bottom:654.600000pt;}
.y105{bottom:654.866667pt;}
.y100{bottom:656.333333pt;}
.y1fe{bottom:657.533333pt;}
.y6a{bottom:659.533333pt;}
.ya2{bottom:661.533333pt;}
.y32{bottom:664.866667pt;}
.y132{bottom:665.533333pt;}
.y46{bottom:671.533333pt;}
.y56{bottom:672.200000pt;}
.ybd{bottom:673.533333pt;}
.yd3{bottom:675.533333pt;}
.y154{bottom:676.533333pt;}
.y80{bottom:677.533333pt;}
.y1a2{bottom:678.200000pt;}
.y2b7{bottom:679.200000pt;}
.y24c{bottom:682.640000pt;}
.y104{bottom:682.866667pt;}
.y2d6{bottom:687.866667pt;}
.y92{bottom:689.533333pt;}
.y11e{bottom:693.533333pt;}
.y174{bottom:693.866667pt;}
.y131{bottom:698.866667pt;}
.y31{bottom:699.866667pt;}
.y1fd{bottom:701.866667pt;}
.yff{bottom:702.373333pt;}
.y65{bottom:703.400000pt;}
.y69{bottom:703.866667pt;}
.y7f{bottom:705.533333pt;}
.y1a1{bottom:706.533333pt;}
.y150{bottom:709.400000pt;}
.y115{bottom:710.866667pt;}
.y2d5{bottom:715.866667pt;}
.y55{bottom:716.533333pt;}
.ybc{bottom:717.866667pt;}
.y153{bottom:720.533333pt;}
.yb9{bottom:721.533333pt;}
.y2b6{bottom:723.200000pt;}
.y30{bottom:727.906667pt;}
.y170{bottom:729.560000pt;}
.y248{bottom:731.293333pt;}
.y103{bottom:731.893333pt;}
.y10{bottom:733.893333pt;}
.y7e{bottom:733.906667pt;}
.y45{bottom:734.560000pt;}
.y1a0{bottom:739.893333pt;}
.y147{bottom:745.893333pt;}
.y68{bottom:747.893333pt;}
.yb8{bottom:749.893333pt;}
.y54{bottom:751.226667pt;}
.y12f{bottom:755.240000pt;}
.y2d4{bottom:759.893333pt;}
.yae{bottom:761.893333pt;}
.y2f{bottom:762.560000pt;}
.y2b5{bottom:767.560000pt;}
.y44{bottom:769.226667pt;}
.y67{bottom:775.893333pt;}
.y7d{bottom:777.893333pt;}
.y19f{bottom:781.226667pt;}
.y144{bottom:783.226667pt;}
.y53{bottom:785.893333pt;}
.y2d3{bottom:788.226667pt;}
.y146{bottom:789.893333pt;}
.y2e{bottom:790.893333pt;}
.ye{bottom:791.240000pt;}
.y43{bottom:797.560000pt;}
.y66{bottom:804.226667pt;}
.y7c{bottom:805.893333pt;}
.y12c{bottom:811.226667pt;}
.y19e{bottom:813.893333pt;}
.y102{bottom:818.226667pt;}
.y52{bottom:820.893333pt;}
.y2d{bottom:825.560000pt;}
.y42{bottom:832.226667pt;}
.y7b{bottom:834.226667pt;}
.yef{bottom:839.560000pt;}
.ya{bottom:848.600000pt;}
.y51{bottom:855.600000pt;}
.y2c{bottom:860.266667pt;}
.y7a{bottom:862.266667pt;}
.y11d{bottom:867.600000pt;}
.y101{bottom:868.933333pt;}
.y50{bottom:883.933333pt;}
.y79{bottom:890.600000pt;}
.y4{bottom:902.600000pt;}
.y2b{bottom:911.266667pt;}
.y4f{bottom:918.600000pt;}
.y3{bottom:934.626667pt;}
.y2{bottom:999.666667pt;}
.y1{bottom:1050.733333pt;}
.y6{bottom:1060.293333pt;}
.h2c{height:2.000000pt;}
.h8{height:23.333333pt;}
.h36{height:23.666667pt;}
.h15{height:24.984375pt;}
.h3b{height:26.000000pt;}
.h14{height:30.750000pt;}
.h29{height:33.937500pt;}
.h3e{height:34.125000pt;}
.h44{height:34.593750pt;}
.h1b{height:35.000000pt;}
.h1f{height:35.033333pt;}
.h37{height:35.666667pt;}
.h3d{height:36.020000pt;}
.h28{height:38.179688pt;}
.h30{height:38.285742pt;}
.h38{height:38.437500pt;}
.h32{height:39.281250pt;}
.h5{height:42.574219pt;}
.h19{height:43.645833pt;}
.h40{height:44.062500pt;}
.h1e{height:44.273438pt;}
.h2b{height:45.828125pt;}
.h3c{height:46.006288pt;}
.h7{height:46.125000pt;}
.h47{height:48.656250pt;}
.h1c{height:48.958333pt;}
.h9{height:49.192708pt;}
.h20{height:49.666667pt;}
.h22{height:51.000000pt;}
.h46{height:51.697266pt;}
.h45{height:51.798633pt;}
.h21{height:53.700000pt;}
.h23{height:54.033333pt;}
.hb{height:54.111979pt;}
.hd{height:56.666667pt;}
.hc{height:56.686667pt;}
.h10{height:58.750000pt;}
.h12{height:59.031250pt;}
.h17{height:63.861328pt;}
.h25{height:65.700000pt;}
.h1d{height:67.333333pt;}
.h26{height:68.541667pt;}
.h18{height:78.333333pt;}
.h4{height:82.208789pt;}
.ha{height:85.000000pt;}
.h11{height:88.125000pt;}
.he{height:92.366667pt;}
.h1a{height:97.413867pt;}
.h16{height:112.618945pt;}
.h24{height:117.033333pt;}
.h13{height:121.741992pt;}
.h39{height:129.400000pt;}
.h3{height:130.865039pt;}
.h2{height:130.966406pt;}
.h43{height:165.400000pt;}
.h3f{height:172.066667pt;}
.h42{height:194.066667pt;}
.h3a{height:196.400000pt;}
.h2a{height:236.720000pt;}
.h41{height:244.773333pt;}
.hf{height:245.400000pt;}
.h31{height:261.400000pt;}
.h2e{height:267.400000pt;}
.h27{height:272.000000pt;}
.h33{height:281.773333pt;}
.h2f{height:303.666667pt;}
.h2d{height:359.093333pt;}
.h34{height:793.666667pt;}
.h35{height:794.000000pt;}
.h6{height:1122.666667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w4{width:7.666667pt;}
.w7{width:15.000000pt;}
.wb{width:66.033333pt;}
.wd{width:66.366667pt;}
.w10{width:73.700000pt;}
.w14{width:93.700000pt;}
.w18{width:160.040000pt;}
.w5{width:169.733333pt;}
.w17{width:198.066667pt;}
.w16{width:245.066667pt;}
.w15{width:263.733333pt;}
.w9{width:467.200000pt;}
.w6{width:472.533333pt;}
.we{width:500.226667pt;}
.wc{width:522.226667pt;}
.w11{width:540.906667pt;}
.wf{width:647.333333pt;}
.wa{width:649.333333pt;}
.w8{width:793.666643pt;}
.w3{width:793.666655pt;}
.w2{width:793.666667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.w19{width:1122.666633pt;}
.w13{width:1122.666650pt;}
.w12{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5{left:7.000000pt;}
.x6b{left:8.700000pt;}
.x2{left:9.633322pt;}
.x5b{left:15.333333pt;}
.x5c{left:24.333333pt;}
.x46{left:27.000000pt;}
.x76{left:29.333333pt;}
.x48{left:31.026667pt;}
.x69{left:33.500000pt;}
.x59{left:36.700000pt;}
.x78{left:37.666667pt;}
.x1{left:42.833322pt;}
.x6c{left:44.533333pt;}
.x55{left:46.866667pt;}
.x49{left:55.026667pt;}
.x7d{left:57.166655pt;}
.x7f{left:60.666655pt;}
.x6f{left:72.033317pt;}
.x43{left:74.133322pt;}
.x3{left:75.699988pt;}
.x1b{left:78.266655pt;}
.x18{left:80.699988pt;}
.x7a{left:82.033317pt;}
.x2a{left:85.699988pt;}
.x7e{left:87.099988pt;}
.x7{left:91.699988pt;}
.x9{left:99.699988pt;}
.x74{left:101.373333pt;}
.x72{left:105.000000pt;}
.x44{left:112.033322pt;}
.x5f{left:113.700000pt;}
.x5a{left:121.000000pt;}
.x13{left:122.733310pt;}
.xa{left:123.733322pt;}
.x6a{left:127.240000pt;}
.x14{left:128.733322pt;}
.x4d{left:133.399976pt;}
.x29{left:135.733322pt;}
.x31{left:139.733310pt;}
.x5d{left:141.733333pt;}
.x67{left:143.066667pt;}
.x4e{left:145.399988pt;}
.xb{left:147.733322pt;}
.x6d{left:149.400000pt;}
.x32{left:151.733322pt;}
.x3a{left:160.399976pt;}
.x1c{left:165.266655pt;}
.x71{left:167.066667pt;}
.xd{left:171.733322pt;}
.x60{left:180.066667pt;}
.x7b{left:190.506655pt;}
.x68{left:201.306667pt;}
.x47{left:203.760000pt;}
.x15{left:206.439976pt;}
.x16{left:212.439988pt;}
.x4a{left:236.773322pt;}
.x79{left:239.733317pt;}
.x6{left:246.106667pt;}
.x3d{left:257.439988pt;}
.x35{left:264.439976pt;}
.x33{left:265.773310pt;}
.x17{left:267.773322pt;}
.x36{left:276.466655pt;}
.x34{left:277.799988pt;}
.x2d{left:281.133310pt;}
.x56{left:282.800000pt;}
.x2f{left:285.133310pt;}
.x2e{left:293.133322pt;}
.x30{left:297.133322pt;}
.x2b{left:303.133310pt;}
.x2c{left:315.133322pt;}
.x4f{left:321.466643pt;}
.x23{left:323.799976pt;}
.x24{left:329.799988pt;}
.x50{left:333.466655pt;}
.x64{left:339.333333pt;}
.x57{left:360.333333pt;}
.x3e{left:380.506643pt;}
.xc{left:389.506667pt;}
.x4{left:393.173333pt;}
.x25{left:400.506643pt;}
.x8{left:407.093322pt;}
.x26{left:412.506655pt;}
.x1f{left:417.506643pt;}
.x65{left:418.840000pt;}
.x20{left:423.506655pt;}
.x73{left:431.466667pt;}
.x21{left:432.533310pt;}
.x22{left:438.533322pt;}
.x41{left:453.866643pt;}
.x51{left:455.866643pt;}
.x42{left:465.866655pt;}
.x52{left:467.866655pt;}
.x38{left:469.866643pt;}
.x39{left:481.866655pt;}
.x61{left:492.906667pt;}
.x27{left:510.559976pt;}
.x45{left:512.533322pt;}
.x5e{left:514.866667pt;}
.x28{left:522.559988pt;}
.xe{left:523.599988pt;}
.x63{left:524.866667pt;}
.x3f{left:528.226643pt;}
.x3b{left:530.226643pt;}
.x6e{left:533.560000pt;}
.x40{left:540.226655pt;}
.x3c{left:542.226655pt;}
.x7c{left:550.106655pt;}
.x66{left:551.360000pt;}
.x70{left:553.840000pt;}
.x1d{left:554.893310pt;}
.x1e{left:560.893322pt;}
.x58{left:589.600000pt;}
.xf{left:593.933310pt;}
.x10{left:599.933322pt;}
.x4b{left:602.373322pt;}
.x62{left:603.933322pt;}
.x4c{left:605.933322pt;}
.x19{left:633.933310pt;}
.x1a{left:639.933322pt;}
.x53{left:642.266643pt;}
.x54{left:654.266655pt;}
.x11{left:658.933310pt;}
.x12{left:664.959988pt;}
.x75{left:677.200000pt;}
.x37{left:699.959988pt;}
.x77{left:875.933333pt;}
}




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