
    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_270501542f2357e2e3f690ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_b571b554ad82793bbe270d11.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5d90d12260dee5ee0d14d1db.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_239828a36a78a00e7843fb0b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_082305a660d1bd332ffa1ca5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_4964aae367611fe9bc85794d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_6a775505f4af965a2199a39b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_3e20a74b1f5d19c061b78b9f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.956543;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.210499,0.000000,-0.070159,0.239953,0,0);-ms-transform:matrix(0.210499,0.000000,-0.070159,0.239953,0,0);-webkit-transform:matrix(0.210499,0.000000,-0.070159,0.239953,0,0);}
.m3{transform:matrix(0.215684,0.000000,-0.071887,0.239441,0,0);-ms-transform:matrix(0.215684,0.000000,-0.071887,0.239441,0,0);-webkit-transform:matrix(0.215684,0.000000,-0.071887,0.239441,0,0);}
.m12{transform:matrix(0.219313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219313,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.220469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220469,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.225866,0.000000,-0.075281,0.238396,0,0);-ms-transform:matrix(0.225866,0.000000,-0.075281,0.238396,0,0);-webkit-transform:matrix(0.225866,0.000000,-0.075281,0.238396,0,0);}
.m15{transform:matrix(0.232985,0.000000,-0.077654,0.237634,0,0);-ms-transform:matrix(0.232985,0.000000,-0.077654,0.237634,0,0);-webkit-transform:matrix(0.232985,0.000000,-0.077654,0.237634,0,0);}
.md{transform:matrix(0.235447,0.000000,-0.078474,0.237364,0,0);-ms-transform:matrix(0.235447,0.000000,-0.078474,0.237364,0,0);-webkit-transform:matrix(0.235447,0.000000,-0.078474,0.237364,0,0);}
.m18{transform:matrix(0.236860,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.236860,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236860,0.000001,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237332,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.238038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238038,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.240466,0.000000,-0.080147,0.236805,0,0);-ms-transform:matrix(0.240466,0.000000,-0.080147,0.236805,0,0);-webkit-transform:matrix(0.240466,0.000000,-0.080147,0.236805,0,0);}
.m1a{transform:matrix(0.244497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244497,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247691,0.000000,-0.082555,0.235976,0,0);-ms-transform:matrix(0.247691,0.000000,-0.082555,0.235976,0,0);-webkit-transform:matrix(0.247691,0.000000,-0.082555,0.235976,0,0);}
.mc{transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253169,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253546,0.000000,-0.084507,0.235284,0,0);-ms-transform:matrix(0.253546,0.000000,-0.084507,0.235284,0,0);-webkit-transform:matrix(0.253546,0.000000,-0.084507,0.235284,0,0);}
.m16{transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.262173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262173,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.262412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262412,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264688,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.269404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269404,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.277831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277831,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.287411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287411,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.291993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291993,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.356411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356411,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.v4{vertical-align:-101.542134px;}
.v7{vertical-align:-76.866333px;}
.va{vertical-align:-56.505248px;}
.v3{vertical-align:-45.812490px;}
.v15{vertical-align:-30.414180px;}
.v1{vertical-align:-21.600000px;}
.v12{vertical-align:-17.834065px;}
.vb{vertical-align:-15.563232px;}
.v13{vertical-align:-13.758924px;}
.vd{vertical-align:-11.807849px;}
.v16{vertical-align:-6.000000px;}
.v6{vertical-align:-3.750396px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:11.832042px;}
.v9{vertical-align:14.097627px;}
.ve{vertical-align:15.563232px;}
.v11{vertical-align:18.622999px;}
.v2{vertical-align:21.600000px;}
.v10{vertical-align:29.793817px;}
.v5{vertical-align:40.073785px;}
.v8{vertical-align:41.704505px;}
.v14{vertical-align:45.764921px;}
.vc{vertical-align:57.557453px;}
.ls19{letter-spacing:-1.259338px;}
.lsf{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.480000px;}
.ls3e{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.120000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls40{letter-spacing:0.030000px;}
.ls42{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.120000px;}
.ls44{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.195600px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.327921px;}
.ls4{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.420000px;}
.ls21{letter-spacing:0.430245px;}
.ls30{letter-spacing:0.531876px;}
.lse{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls2e{letter-spacing:0.713803px;}
.ls3b{letter-spacing:0.920787px;}
.ls3f{letter-spacing:2.100000px;}
.ls39{letter-spacing:8.308188px;}
.ls31{letter-spacing:14.051049px;}
.ls32{letter-spacing:14.289203px;}
.ls43{letter-spacing:15.720000px;}
.ls2a{letter-spacing:16.444422px;}
.ls25{letter-spacing:21.301332px;}
.ls1d{letter-spacing:30.487524px;}
.ls17{letter-spacing:42.530861px;}
.ls41{letter-spacing:45.720000px;}
.ls13{letter-spacing:62.229543px;}
.ls2d{letter-spacing:62.262489px;}
.ls35{letter-spacing:66.084978px;}
.ls38{letter-spacing:67.353404px;}
.ls34{letter-spacing:69.573149px;}
.ls36{letter-spacing:78.135022px;}
.ls2c{letter-spacing:83.099265px;}
.ls2b{letter-spacing:83.505433px;}
.ls29{letter-spacing:88.049025px;}
.ls37{letter-spacing:89.170325px;}
.ls12{letter-spacing:94.147729px;}
.ls33{letter-spacing:95.005084px;}
.ls10{letter-spacing:145.691892px;}
.ls18{letter-spacing:154.307650px;}
.ls11{letter-spacing:169.833659px;}
.ls16{letter-spacing:187.657057px;}
.ls2f{letter-spacing:232.238403px;}
.ls14{letter-spacing:235.665838px;}
.ls23{letter-spacing:278.550062px;}
.ls22{letter-spacing:280.031963px;}
.ls20{letter-spacing:280.660595px;}
.ls15{letter-spacing:295.820500px;}
.ls27{letter-spacing:318.011026px;}
.ls1e{letter-spacing:326.729132px;}
.ls1b{letter-spacing:340.961140px;}
.ls1f{letter-spacing:341.298392px;}
.ls1a{letter-spacing:343.591701px;}
.ls1c{letter-spacing:354.113944px;}
.ls24{letter-spacing:485.492547px;}
.ls26{letter-spacing:487.408245px;}
.ls28{letter-spacing:513.137625px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws28{word-spacing:-39.187777px;}
.ws18{word-spacing:-36.521659px;}
.ws32{word-spacing:-23.315804px;}
.ws27{word-spacing:-22.871963px;}
.ws1{word-spacing:-18.384000px;}
.ws2b{word-spacing:-17.998441px;}
.ws24{word-spacing:-16.794645px;}
.ws16{word-spacing:-16.664133px;}
.ws17{word-spacing:-16.630992px;}
.ws8{word-spacing:-15.540000px;}
.ws19{word-spacing:-15.371655px;}
.ws0{word-spacing:-15.204000px;}
.ws9{word-spacing:-15.120000px;}
.ws3{word-spacing:-15.000000px;}
.ws36{word-spacing:-14.880000px;}
.ws7{word-spacing:-14.760000px;}
.ws38{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.460000px;}
.wsa{word-spacing:-14.220000px;}
.ws5{word-spacing:-12.900000px;}
.ws2e{word-spacing:-10.439304px;}
.ws37{word-spacing:-10.095600px;}
.ws2{word-spacing:-9.900000px;}
.ws25{word-spacing:-9.802202px;}
.ws23{word-spacing:-6.095207px;}
.ws1e{word-spacing:-2.670141px;}
.ws4{word-spacing:0.000000px;}
.ws2a{word-spacing:3.620343px;}
.ws15{word-spacing:7.176123px;}
.ws20{word-spacing:11.953377px;}
.wsd{word-spacing:12.241261px;}
.ws1f{word-spacing:16.440992px;}
.ws1a{word-spacing:21.685790px;}
.ws1c{word-spacing:43.041578px;}
.ws21{word-spacing:45.768295px;}
.ws2c{word-spacing:46.602424px;}
.ws1b{word-spacing:50.328104px;}
.ws30{word-spacing:51.687345px;}
.ws2d{word-spacing:52.195480px;}
.ws14{word-spacing:53.929653px;}
.ws26{word-spacing:66.188493px;}
.ws11{word-spacing:75.364618px;}
.ws2f{word-spacing:79.860079px;}
.ws12{word-spacing:87.195437px;}
.ws10{word-spacing:94.918874px;}
.ws13{word-spacing:98.943516px;}
.wsb{word-spacing:108.144136px;}
.ws29{word-spacing:123.008427px;}
.ws22{word-spacing:137.938150px;}
.wsf{word-spacing:180.670678px;}
.ws31{word-spacing:252.745506px;}
.wse{word-spacing:253.501966px;}
.ws1d{word-spacing:339.241177px;}
.ws33{word-spacing:346.636938px;}
.ws35{word-spacing:495.055273px;}
.ws34{word-spacing:507.635760px;}
.wsc{word-spacing:1587.786158px;}
._1e{margin-left:-1536.526250px;}
._55{margin-left:-753.095136px;}
._4e{margin-left:-636.546947px;}
._4b{margin-left:-521.609297px;}
._4c{margin-left:-436.531024px;}
._48{margin-left:-434.967115px;}
._61{margin-left:-373.815073px;}
._4a{margin-left:-352.954833px;}
._63{margin-left:-335.672106px;}
._66{margin-left:-330.047612px;}
._62{margin-left:-324.050875px;}
._65{margin-left:-319.778742px;}
._64{margin-left:-308.557501px;}
._49{margin-left:-210.573722px;}
._44{margin-left:-171.608258px;}
._38{margin-left:-167.354843px;}
._50{margin-left:-165.348892px;}
._4f{margin-left:-159.041044px;}
._45{margin-left:-147.151514px;}
._46{margin-left:-128.919451px;}
._39{margin-left:-118.871352px;}
._36{margin-left:-111.294778px;}
._47{margin-left:-102.996578px;}
._42{margin-left:-100.956014px;}
._41{margin-left:-98.991381px;}
._3b{margin-left:-92.978151px;}
._5f{margin-left:-24.983927px;}
._34{margin-left:-6.161318px;}
._37{margin-left:-4.723202px;}
._3a{margin-left:-2.805164px;}
._1{margin-left:-1.152000px;}
._0{width:1.182000px;}
._f{width:2.202000px;}
._10{width:3.246000px;}
._a{width:4.440000px;}
._9{width:5.532000px;}
._6{width:6.882000px;}
._7{width:7.896000px;}
._11{width:9.300000px;}
._13{width:10.458000px;}
._c{width:11.580000px;}
._b{width:12.684000px;}
._8{width:13.800000px;}
._12{width:16.392000px;}
._67{width:17.736000px;}
._14{width:18.816000px;}
._e{width:19.956000px;}
._d{width:21.000000px;}
._1f{width:24.000000px;}
._69{width:25.224000px;}
._68{width:26.520000px;}
._52{width:32.052000px;}
._51{width:33.120000px;}
._1b{width:38.811422px;}
._1d{width:39.920546px;}
._1c{width:41.540365px;}
._3d{width:43.418722px;}
._1a{width:48.731136px;}
._59{width:63.418418px;}
._43{width:92.028783px;}
._5d{width:100.215322px;}
._5e{width:106.334792px;}
._5a{width:108.079807px;}
._5c{width:110.726412px;}
._57{width:111.772880px;}
._58{width:117.265814px;}
._19{width:124.127948px;}
._56{width:125.463602px;}
._28{width:130.793156px;}
._54{width:144.064673px;}
._15{width:169.194503px;}
._20{width:198.180000px;}
._26{width:203.182635px;}
._27{width:207.522253px;}
._25{width:209.684796px;}
._16{width:219.640974px;}
._35{width:227.316386px;}
._3e{width:242.659137px;}
._3c{width:246.659153px;}
._3f{width:252.449652px;}
._60{width:262.317154px;}
._5b{width:268.369720px;}
._2c{width:269.815020px;}
._30{width:271.915544px;}
._53{width:275.645406px;}
._40{width:280.329656px;}
._29{width:303.307307px;}
._2e{width:306.884726px;}
._21{width:315.145098px;}
._4{width:336.180000px;}
._2a{width:354.772826px;}
._22{width:356.505186px;}
._24{width:360.544452px;}
._18{width:379.713008px;}
._17{width:425.169411px;}
._2d{width:497.692499px;}
._33{width:498.703043px;}
._4d{width:516.514567px;}
._31{width:517.981023px;}
._2b{width:530.029880px;}
._32{width:531.401332px;}
._23{width:536.381866px;}
._2f{width:543.529512px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs14{font-size:32.847020px;}
.fs2f{font-size:37.198742px;}
.fs1c{font-size:39.208809px;}
.fs8{font-size:39.600000px;}
.fs1f{font-size:41.613135px;}
.fs1d{font-size:41.661135px;}
.fs24{font-size:41.757218px;}
.fs17{font-size:41.765136px;}
.fs31{font-size:42.000000px;}
.fs2d{font-size:42.469589px;}
.fs22{font-size:43.924665px;}
.fs29{font-size:44.940956px;}
.fsa{font-size:45.140904px;}
.fs11{font-size:47.143021px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs15{font-size:56.355158px;}
.fs2{font-size:60.000000px;}
.fs30{font-size:63.769721px;}
.fs1{font-size:66.000000px;}
.fs10{font-size:66.523970px;}
.fsf{font-size:66.656531px;}
.fs1a{font-size:67.178581px;}
.fs16{font-size:68.222447px;}
.fs1e{font-size:71.380286px;}
.fs20{font-size:71.993766px;}
.fs4{font-size:72.000000px;}
.fs18{font-size:72.076055px;}
.fs26{font-size:72.136658px;}
.fsb{font-size:72.181653px;}
.fsd{font-size:72.486092px;}
.fs2e{font-size:72.805522px;}
.fsc{font-size:75.364618px;}
.fs25{font-size:75.890455px;}
.fs19{font-size:75.912940px;}
.fs27{font-size:76.156260px;}
.fs21{font-size:76.272380px;}
.fs2a{font-size:77.608625px;}
.fs9{font-size:77.969817px;}
.fs23{font-size:79.174511px;}
.fs28{font-size:79.691683px;}
.fs12{font-size:80.913350px;}
.fs1b{font-size:100.897902px;}
.fse{font-size:108.874265px;}
.fs2c{font-size:109.354622px;}
.fs2b{font-size:116.568320px;}
.fs13{font-size:121.363280px;}
.y0{bottom:0.000000px;}
.y13c{bottom:3.219252px;}
.y15a{bottom:3.219326px;}
.yf{bottom:3.915000px;}
.y195{bottom:3.995897px;}
.y17d{bottom:3.998262px;}
.y184{bottom:3.998263px;}
.y180{bottom:3.998264px;}
.yf1{bottom:4.243055px;}
.y153{bottom:4.326877px;}
.y155{bottom:4.326879px;}
.y154{bottom:4.326889px;}
.y156{bottom:4.326890px;}
.y1ee{bottom:4.500000px;}
.yfa{bottom:4.685030px;}
.y122{bottom:4.783755px;}
.y1e6{bottom:4.800000px;}
.y168{bottom:4.838192px;}
.y174{bottom:4.838198px;}
.y130{bottom:4.849567px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y1ba{bottom:5.685000px;}
.yc1{bottom:5.700000px;}
.ybc{bottom:5.715000px;}
.yc8{bottom:5.730000px;}
.y1b6{bottom:5.745000px;}
.yb9{bottom:6.000000px;}
.y1bc{bottom:6.015000px;}
.y18e{bottom:6.046529px;}
.y192{bottom:6.046544px;}
.y18b{bottom:6.046545px;}
.y16c{bottom:6.063267px;}
.y16f{bottom:6.063292px;}
.y170{bottom:6.063298px;}
.y15e{bottom:6.099318px;}
.y151{bottom:7.110754px;}
.y157{bottom:7.110794px;}
.y114{bottom:7.198524px;}
.y119{bottom:7.198561px;}
.y115{bottom:7.231941px;}
.y11d{bottom:7.231952px;}
.y3e{bottom:7.485000px;}
.y14a{bottom:7.669474px;}
.y196{bottom:7.991786px;}
.y127{bottom:8.013778px;}
.y1e9{bottom:8.100000px;}
.y11e{bottom:8.169567px;}
.y111{bottom:8.258569px;}
.y112{bottom:8.545860px;}
.y12b{bottom:8.586267px;}
.y191{bottom:9.087999px;}
.yf0{bottom:9.257211px;}
.yf2{bottom:9.257229px;}
.y189{bottom:9.486264px;}
.y175{bottom:9.752451px;}
.y169{bottom:9.752454px;}
.y172{bottom:10.719022px;}
.y16d{bottom:10.719062px;}
.y171{bottom:10.719065px;}
.y160{bottom:10.755059px;}
.y161{bottom:10.755064px;}
.y15f{bottom:10.755087px;}
.y14f{bottom:11.336840px;}
.y147{bottom:12.322037px;}
.y5{bottom:12.337500px;}
.y123{bottom:13.247250px;}
.y18d{bottom:13.650082px;}
.yfb{bottom:15.208028px;}
.y17f{bottom:17.453550px;}
.y152{bottom:18.883506px;}
.y142{bottom:20.428045px;}
.y1e7{bottom:20.700000px;}
.y141{bottom:21.481902px;}
.y190{bottom:21.832999px;}
.y150{bottom:21.835435px;}
.y1e8{bottom:21.900000px;}
.y121{bottom:22.324366px;}
.y185{bottom:22.451167px;}
.y181{bottom:22.451175px;}
.y194{bottom:22.548841px;}
.y18f{bottom:25.091322px;}
.y3d{bottom:25.485000px;}
.yc0{bottom:25.500000px;}
.ybb{bottom:25.515000px;}
.yc7{bottom:25.530000px;}
.yc3{bottom:25.800000px;}
.y126{bottom:25.963310px;}
.y146{bottom:26.171043px;}
.y1d2{bottom:26.400000px;}
.y18c{bottom:30.305789px;}
.y183{bottom:31.177908px;}
.y17c{bottom:31.177914px;}
.y129{bottom:32.463837px;}
.y18a{bottom:32.623316px;}
.y12a{bottom:33.608805px;}
.y110{bottom:33.931393px;}
.y140{bottom:34.930203px;}
.y10f{bottom:35.798782px;}
.y14b{bottom:39.583366px;}
.y120{bottom:40.232411px;}
.y17e{bottom:42.211648px;}
.y182{bottom:42.519228px;}
.y125{bottom:43.421122px;}
.yc6{bottom:45.330000px;}
.y3c{bottom:45.600000px;}
.ybf{bottom:45.630000px;}
.y208{bottom:45.915000px;}
.y4{bottom:46.800000px;}
.y13f{bottom:47.688924px;}
.y128{bottom:48.655264px;}
.y1e4{bottom:54.045000px;}
.y1{bottom:57.037500px;}
.y124{bottom:61.371329px;}
.y3b{bottom:63.030000px;}
.y13e{bottom:66.372033px;}
.y145{bottom:71.025195px;}
.y40{bottom:74.137500px;}
.y3a{bottom:80.130000px;}
.y3{bottom:81.337500px;}
.y144{bottom:84.873752px;}
.y149{bottom:92.979310px;}
.y148{bottom:95.051047px;}
.y39{bottom:97.530000px;}
.y143{bottom:99.702711px;}
.y13a{bottom:113.437500px;}
.y38{bottom:114.630000px;}
.y7c{bottom:121.537500px;}
.y2c{bottom:122.137500px;}
.yed{bottom:123.037500px;}
.y284{bottom:123.337500px;}
.y1de{bottom:124.837500px;}
.y243{bottom:125.437500px;}
.y1a7{bottom:126.337500px;}
.yb7{bottom:128.437500px;}
.y215{bottom:129.937500px;}
.y139{bottom:130.537500px;}
.y37{bottom:132.030000px;}
.y7b{bottom:138.937500px;}
.y2b{bottom:139.237500px;}
.y283{bottom:140.437500px;}
.y242{bottom:142.837500px;}
.y1dd{bottom:144.637500px;}
.yb6{bottom:145.837500px;}
.yec{bottom:146.737500px;}
.y1a6{bottom:147.037500px;}
.y214{bottom:147.337500px;}
.y138{bottom:147.937500px;}
.y36{bottom:149.130000px;}
.y7a{bottom:154.245000px;}
.y2a{bottom:156.645000px;}
.y282{bottom:157.830000px;}
.y241{bottom:159.930000px;}
.yb5{bottom:162.930000px;}
.y1dc{bottom:164.430000px;}
.y79{bottom:164.745000px;}
.y137{bottom:165.030000px;}
.y35{bottom:166.530000px;}
.yeb{bottom:167.130000px;}
.y1a5{bottom:169.545000px;}
.y29{bottom:173.745000px;}
.y281{bottom:174.930000px;}
.y240{bottom:177.345000px;}
.yb4{bottom:180.375000px;}
.y78{bottom:181.875000px;}
.y136{bottom:182.475000px;}
.y34{bottom:183.630000px;}
.yea{bottom:184.275000px;}
.y1a4{bottom:189.375000px;}
.y28{bottom:191.175000px;}
.y280{bottom:192.375000px;}
.y23f{bottom:194.475000px;}
.yb3{bottom:197.475000px;}
.y77{bottom:199.275000px;}
.y213{bottom:199.575000px;}
.y135{bottom:200.175000px;}
.y33{bottom:201.030000px;}
.ye9{bottom:201.675000px;}
.y1db{bottom:204.375000px;}
.y27{bottom:208.275000px;}
.y1a3{bottom:209.175000px;}
.y27f{bottom:209.475000px;}
.y23e{bottom:211.875000px;}
.yb2{bottom:214.875000px;}
.y76{bottom:216.375000px;}
.y32{bottom:218.175000px;}
.ye8{bottom:218.775000px;}
.y212{bottom:219.075000px;}
.y134{bottom:220.275000px;}
.y1da{bottom:221.775000px;}
.y26{bottom:225.675000px;}
.y27e{bottom:226.875000px;}
.y1a2{bottom:228.975000px;}
.yb1{bottom:231.975000px;}
.y211{bottom:233.475000px;}
.y75{bottom:233.775000px;}
.y31{bottom:235.560000px;}
.ye7{bottom:236.175000px;}
.y1d9{bottom:236.475000px;}
.y133{bottom:237.675000px;}
.y25{bottom:242.775000px;}
.y27d{bottom:243.975000px;}
.y23d{bottom:246.375000px;}
.y210{bottom:248.175000px;}
.y1a1{bottom:248.775000px;}
.yb0{bottom:249.375000px;}
.y74{bottom:250.875000px;}
.y30{bottom:252.660000px;}
.ye6{bottom:253.275000px;}
.y132{bottom:254.775000px;}
.y1d8{bottom:256.875000px;}
.y24{bottom:260.175000px;}
.y27c{bottom:261.375000px;}
.y23c{bottom:264.075000px;}
.yaf{bottom:266.475000px;}
.y73{bottom:268.275000px;}
.y1a0{bottom:268.575000px;}
.y2f{bottom:270.075000px;}
.ye5{bottom:270.675000px;}
.y131{bottom:272.175000px;}
.y23{bottom:277.275000px;}
.y1d7{bottom:277.575000px;}
.y27b{bottom:278.475000px;}
.yae{bottom:283.575000px;}
.y72{bottom:285.375000px;}
.y12f{bottom:286.049980px;}
.ye4{bottom:287.175000px;}
.y2e{bottom:287.775000px;}
.y19f{bottom:288.675000px;}
.y20f{bottom:289.275000px;}
.y22{bottom:294.675000px;}
.y27a{bottom:295.875000px;}
.y12e{bottom:296.475000px;}
.y1d6{bottom:297.975000px;}
.ye3{bottom:298.875000px;}
.yad{bottom:300.975000px;}
.y71{bottom:302.775000px;}
.y19e{bottom:308.475000px;}
.y20e{bottom:309.675000px;}
.y21{bottom:311.775000px;}
.y279{bottom:312.975000px;}
.y12d{bottom:313.275000px;}
.y23b{bottom:315.375000px;}
.yac{bottom:318.075000px;}
.y1d5{bottom:318.675000px;}
.ye2{bottom:319.575000px;}
.y70{bottom:319.875000px;}
.y11f{bottom:327.449980px;}
.y19d{bottom:328.275000px;}
.y20{bottom:329.175000px;}
.y20d{bottom:330.375000px;}
.y23a{bottom:332.475000px;}
.yab{bottom:335.475000px;}
.y6f{bottom:337.275000px;}
.y1d4{bottom:339.375000px;}
.ye1{bottom:340.275000px;}
.y1f{bottom:346.320000px;}
.y278{bottom:347.505000px;}
.y19c{bottom:348.105000px;}
.y11c{bottom:348.449959px;}
.y239{bottom:349.920000px;}
.y20c{bottom:351.120000px;}
.yaa{bottom:352.620000px;}
.y6e{bottom:355.020000px;}
.y12c{bottom:355.920000px;}
.y1d1{bottom:359.820000px;}
.ye0{bottom:360.705000px;}
.y1e{bottom:364.005000px;}
.y277{bottom:364.905000px;}
.y238{bottom:367.005000px;}
.y19b{bottom:367.905000px;}
.ya9{bottom:370.005000px;}
.y20b{bottom:371.505000px;}
.y6d{bottom:375.105000px;}
.y1d3{bottom:380.505000px;}
.ydf{bottom:381.405000px;}
.y276{bottom:382.020000px;}
.y237{bottom:384.405000px;}
.y1d{bottom:384.705000px;}
.ya8{bottom:387.120000px;}
.y19a{bottom:388.920000px;}
.y20a{bottom:392.205000px;}
.y6c{bottom:392.520000px;}
.y275{bottom:399.420000px;}
.y236{bottom:400.920000px;}
.yde{bottom:401.820000px;}
.ya7{bottom:404.505000px;}
.y11b{bottom:404.820000px;}
.y6b{bottom:409.005000px;}
.y199{bottom:410.505000px;}
.y1d0{bottom:412.320000px;}
.y207{bottom:412.905000px;}
.y235{bottom:415.320000px;}
.y274{bottom:416.505000px;}
.y11a{bottom:419.205000px;}
.ya6{bottom:421.620000px;}
.y258{bottom:422.205000px;}
.ydd{bottom:422.505000px;}
.y6a{bottom:423.420000px;}
.y198{bottom:427.320000px;}
.y1cf{bottom:432.705000px;}
.y118{bottom:433.049959px;}
.y273{bottom:433.920000px;}
.ya5{bottom:439.005000px;}
.y117{bottom:440.505000px;}
.y69{bottom:440.820000px;}
.y257{bottom:441.705000px;}
.y197{bottom:447.420000px;}
.y1ce{bottom:449.820000px;}
.y272{bottom:451.005000px;}
.y209{bottom:453.120000px;}
.ydc{bottom:454.620000px;}
.ya4{bottom:456.120000px;}
.y68{bottom:457.905000px;}
.y116{bottom:458.220000px;}
.y188{bottom:463.949959px;}
.y2d{bottom:465.720000px;}
.y1cd{bottom:467.205000px;}
.y271{bottom:468.420000px;}
.y193{bottom:468.449959px;}
.y10e{bottom:469.350000px;}
.y256{bottom:471.405000px;}
.ya3{bottom:473.505000px;}
.ydb{bottom:474.705000px;}
.y67{bottom:475.320000px;}
.y187{bottom:477.420000px;}
.y255{bottom:482.205000px;}
.y1cc{bottom:484.320000px;}
.y113{bottom:484.350000px;}
.y206{bottom:485.220000px;}
.y270{bottom:485.505000px;}
.ya2{bottom:491.205000px;}
.y10d{bottom:491.820000px;}
.yda{bottom:492.120000px;}
.y66{bottom:492.420000px;}
.y254{bottom:498.720000px;}
.y1cb{bottom:501.720000px;}
.y26f{bottom:502.920000px;}
.y205{bottom:504.720000px;}
.yd9{bottom:509.205000px;}
.y65{bottom:509.820000px;}
.ya1{bottom:510.720000px;}
.y253{bottom:513.120000px;}
.y234{bottom:518.850000px;}
.y204{bottom:519.150000px;}
.y1ca{bottom:519.450000px;}
.y26e{bottom:520.050000px;}
.y17b{bottom:521.249959px;}
.ya0{bottom:525.150000px;}
.yd8{bottom:526.650000px;}
.y64{bottom:526.950000px;}
.y10c{bottom:527.850000px;}
.y252{bottom:530.550000px;}
.y233{bottom:536.250000px;}
.y203{bottom:536.550000px;}
.y26d{bottom:537.450000px;}
.y1c9{bottom:538.950000px;}
.y9f{bottom:540.450000px;}
.y186{bottom:542.250000px;}
.y10b{bottom:542.550000px;}
.yd7{bottom:543.750000px;}
.y63{bottom:544.350000px;}
.y251{bottom:547.650000px;}
.y9e{bottom:551.250000px;}
.y1c8{bottom:553.350000px;}
.y202{bottom:553.650000px;}
.y26c{bottom:554.550000px;}
.y232{bottom:554.850000px;}
.y10a{bottom:559.650000px;}
.yd6{bottom:561.150000px;}
.y62{bottom:561.450000px;}
.y250{bottom:564.150000px;}
.y9d{bottom:568.350000px;}
.y1c7{bottom:570.750000px;}
.y201{bottom:571.050000px;}
.y231{bottom:571.650000px;}
.y26b{bottom:571.950000px;}
.y109{bottom:577.050000px;}
.yd5{bottom:578.250000px;}
.y61{bottom:578.850000px;}
.y9c{bottom:585.750000px;}
.y1c6{bottom:587.850000px;}
.y200{bottom:588.150000px;}
.y26a{bottom:589.050000px;}
.y230{bottom:591.450000px;}
.y17a{bottom:591.750000px;}
.y108{bottom:594.150000px;}
.yd4{bottom:595.650000px;}
.y24f{bottom:595.950000px;}
.y60{bottom:596.550000px;}
.y9b{bottom:602.850000px;}
.y1c5{bottom:605.250000px;}
.y1ff{bottom:605.550000px;}
.y269{bottom:606.450000px;}
.y22f{bottom:611.250000px;}
.y107{bottom:611.550000px;}
.yd3{bottom:612.750000px;}
.y24e{bottom:613.350000px;}
.y5f{bottom:617.250000px;}
.y9a{bottom:620.250000px;}
.y1c4{bottom:622.350000px;}
.y1fe{bottom:622.650000px;}
.y268{bottom:623.550000px;}
.y106{bottom:628.650000px;}
.yd2{bottom:630.150000px;}
.y24d{bottom:630.450000px;}
.y22e{bottom:631.050000px;}
.y179{bottom:631.350000px;}
.y5e{bottom:636.750000px;}
.y99{bottom:637.350000px;}
.y1c3{bottom:639.750000px;}
.y1fd{bottom:640.050000px;}
.y267{bottom:640.950000px;}
.y105{bottom:646.050000px;}
.yd1{bottom:647.250000px;}
.y24c{bottom:647.850000px;}
.y22d{bottom:650.850000px;}
.y5d{bottom:651.150000px;}
.y98{bottom:654.750000px;}
.y1c2{bottom:656.850000px;}
.y1fc{bottom:657.150000px;}
.y266{bottom:658.050000px;}
.y104{bottom:663.150000px;}
.yd0{bottom:664.650000px;}
.y24b{bottom:664.950000px;}
.y22c{bottom:667.650000px;}
.y5c{bottom:668.550000px;}
.y178{bottom:670.950000px;}
.y97{bottom:671.850000px;}
.y1c1{bottom:674.250000px;}
.y1fb{bottom:674.550000px;}
.y265{bottom:675.450000px;}
.y103{bottom:680.550000px;}
.ycf{bottom:681.795000px;}
.y22b{bottom:682.380000px;}
.y5b{bottom:685.695000px;}
.y96{bottom:689.595000px;}
.y177{bottom:690.780000px;}
.y1c0{bottom:691.380000px;}
.y1fa{bottom:692.280000px;}
.y264{bottom:692.595000px;}
.y22a{bottom:696.780000px;}
.y102{bottom:697.695000px;}
.y24a{bottom:698.895000px;}
.yce{bottom:699.195000px;}
.y5a{bottom:703.095000px;}
.y173{bottom:707.549919px;}
.y1bf{bottom:708.795000px;}
.y95{bottom:709.095000px;}
.y263{bottom:709.980000px;}
.y1f9{bottom:711.780000px;}
.y249{bottom:713.280000px;}
.y101{bottom:715.080000px;}
.ycd{bottom:716.280000px;}
.y176{bottom:716.595000px;}
.y229{bottom:717.480000px;}
.y59{bottom:719.595000px;}
.y94{bottom:723.795000px;}
.y1be{bottom:725.895000px;}
.y262{bottom:727.080000px;}
.y1f8{bottom:728.580000px;}
.y248{bottom:730.695000px;}
.y100{bottom:732.195000px;}
.ycc{bottom:733.695000px;}
.y58{bottom:733.995000px;}
.y228{bottom:737.880000px;}
.y16e{bottom:739.049919px;}
.y93{bottom:739.080000px;}
.y1bd{bottom:740.595000px;}
.y261{bottom:744.495000px;}
.y247{bottom:747.795000px;}
.y1f7{bottom:748.380000px;}
.y92{bottom:749.595000px;}
.yff{bottom:749.880000px;}
.y57{bottom:751.395000px;}
.y227{bottom:758.595000px;}
.y1bb{bottom:760.980000px;}
.y260{bottom:761.595000px;}
.y246{bottom:765.195000px;}
.y91{bottom:766.695000px;}
.y1f6{bottom:768.195000px;}
.y56{bottom:768.495000px;}
.yfe{bottom:769.380000px;}
.y16b{bottom:770.249919px;}
.ycb{bottom:771.495000px;}
.y167{bottom:771.749919px;}
.y25f{bottom:778.980000px;}
.y226{bottom:779.295000px;}
.y16a{bottom:780.795000px;}
.y1b9{bottom:781.695000px;}
.y245{bottom:782.295000px;}
.y90{bottom:784.080000px;}
.y55{bottom:785.880000px;}
.y1f5{bottom:787.995000px;}
.yca{bottom:788.880000px;}
.y25e{bottom:796.080000px;}
.y225{bottom:799.695000px;}
.y244{bottom:799.995000px;}
.y8f{bottom:801.195000px;}
.y1b8{bottom:802.380000px;}
.y54{bottom:802.980000px;}
.yc9{bottom:803.295000px;}
.y1c{bottom:804.195000px;}
.y166{bottom:806.295000px;}
.y1f4{bottom:807.795000px;}
.y25d{bottom:813.495000px;}
.y8e{bottom:818.580000px;}
.y53{bottom:819.480000px;}
.y224{bottom:820.380000px;}
.y1b{bottom:821.580000px;}
.y1b7{bottom:822.780000px;}
.y165{bottom:826.380000px;}
.y1f3{bottom:827.880000px;}
.y25c{bottom:830.580000px;}
.y52{bottom:834.195000px;}
.yfd{bottom:835.080000px;}
.y8d{bottom:835.695000px;}
.y1a{bottom:838.695000px;}
.y223{bottom:840.780000px;}
.y1b5{bottom:843.480000px;}
.yc5{bottom:843.795000px;}
.yf9{bottom:846.150000px;}
.y164{bottom:846.195000px;}
.y1f2{bottom:847.695000px;}
.y25b{bottom:847.995000px;}
.y51{bottom:851.325000px;}
.y8c{bottom:853.125000px;}
.yfc{bottom:861.225000px;}
.y222{bottom:861.525000px;}
.y19{bottom:863.025000px;}
.y1b4{bottom:864.225000px;}
.y25a{bottom:865.125000px;}
.y163{bottom:867.225000px;}
.y1f1{bottom:867.525000px;}
.y50{bottom:868.725000px;}
.y8b{bottom:870.825000px;}
.yf8{bottom:882.225000px;}
.y259{bottom:882.525000px;}
.y1f0{bottom:884.325000px;}
.y1b3{bottom:884.625000px;}
.y4f{bottom:885.225000px;}
.y18{bottom:886.125000px;}
.y15d{bottom:886.949919px;}
.y8a{bottom:890.325000px;}
.yf7{bottom:896.625000px;}
.y1ef{bottom:897.225000px;}
.y162{bottom:897.525000px;}
.y4e{bottom:899.625000px;}
.y221{bottom:902.625000px;}
.yc4{bottom:904.125000px;}
.y89{bottom:904.725000px;}
.y1b2{bottom:905.325000px;}
.y1ed{bottom:912.225000px;}
.y17{bottom:913.125000px;}
.yf6{bottom:914.025000px;}
.y4d{bottom:917.025000px;}
.y88{bottom:920.025000px;}
.y220{bottom:923.325000px;}
.y16{bottom:925.425000px;}
.y1b1{bottom:925.725000px;}
.y1ec{bottom:928.725000px;}
.y87{bottom:930.825000px;}
.yf5{bottom:931.125000px;}
.y4c{bottom:934.125000px;}
.yc2{bottom:944.325000px;}
.y1eb{bottom:945.225000px;}
.y1b0{bottom:946.425000px;}
.yf4{bottom:947.625000px;}
.y15{bottom:947.925000px;}
.y15c{bottom:948.525000px;}
.y4b{bottom:951.525000px;}
.y21f{bottom:955.425000px;}
.yef{bottom:958.649919px;}
.y14{bottom:959.925000px;}
.y1ea{bottom:962.025000px;}
.y86{bottom:965.325000px;}
.y15b{bottom:965.925000px;}
.yf3{bottom:966.225000px;}
.y1af{bottom:967.125000px;}
.y4a{bottom:968.625000px;}
.y21e{bottom:974.925000px;}
.y1e3{bottom:978.525000px;}
.y159{bottom:979.949919px;}
.y13{bottom:982.425000px;}
.y158{bottom:983.025000px;}
.ybe{bottom:984.825000px;}
.y49{bottom:986.025000px;}
.yee{bottom:989.025000px;}
.y21d{bottom:989.325000px;}
.y12{bottom:994.725000px;}
.y14e{bottom:998.849919px;}
.y85{bottom:999.825000px;}
.y48{bottom:1003.125000px;}
.y21c{bottom:1006.725000px;}
.y14d{bottom:1010.925000px;}
.y11{bottom:1015.425000px;}
.y1ae{bottom:1016.325000px;}
.y84{bottom:1016.955000px;}
.y47{bottom:1020.570000px;}
.y21b{bottom:1023.870000px;}
.y1e5{bottom:1027.770000px;}
.y1ad{bottom:1030.755000px;}
.y10{bottom:1033.755000px;}
.y13d{bottom:1034.250000px;}
.y83{bottom:1034.370000px;}
.y46{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y21a{bottom:1041.255000px;}
.ybd{bottom:1045.155000px;}
.y1ac{bottom:1048.170000px;}
.y82{bottom:1051.455000px;}
.y45{bottom:1055.070000px;}
.y219{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.y1ab{bottom:1065.255000px;}
.yba{bottom:1065.855000px;}
.yb{bottom:1068.255000px;}
.y81{bottom:1068.870000px;}
.y44{bottom:1072.170000px;}
.y218{bottom:1075.755000px;}
.y1e2{bottom:1081.455000px;}
.y1aa{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.y80{bottom:1085.955000px;}
.y13b{bottom:1088.250000px;}
.y43{bottom:1089.570000px;}
.y14c{bottom:1091.370000px;}
.y217{bottom:1092.870000px;}
.y9{bottom:1097.955000px;}
.y1a9{bottom:1099.755000px;}
.y1e1{bottom:1101.255000px;}
.y7f{bottom:1103.370000px;}
.yb8{bottom:1106.070000px;}
.y42{bottom:1106.670000px;}
.y216{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.y1a8{bottom:1117.455000px;}
.y7e{bottom:1120.455000px;}
.y1e0{bottom:1121.070000px;}
.y41{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y7d{bottom:1138.170000px;}
.y1df{bottom:1140.870000px;}
.y6{bottom:1141.170000px;}
.y3f{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h77{height:15.600000px;}
.h72{height:15.885000px;}
.h76{height:15.900000px;}
.h73{height:15.937500px;}
.h3d{height:18.900079px;}
.h4d{height:18.900161px;}
.h7b{height:19.785000px;}
.h18{height:19.800000px;}
.h1d{height:19.837500px;}
.h16{height:20.100000px;}
.h7a{height:20.137500px;}
.hb{height:20.947266px;}
.ha{height:21.000000px;}
.h3b{height:22.499524px;}
.h2d{height:22.499617px;}
.h30{height:22.499658px;}
.h48{height:27.377244px;}
.h6c{height:27.553951px;}
.hc{height:27.650391px;}
.h4e{height:28.800267px;}
.h1e{height:28.800412px;}
.h53{height:28.800642px;}
.h40{height:29.162180px;}
.h75{height:29.326172px;}
.h69{height:29.654059px;}
.h6d{height:30.659901px;}
.h5d{height:31.379672px;}
.h64{height:31.458187px;}
.h74{height:31.800000px;}
.h4c{height:32.316635px;}
.h46{height:32.401117px;}
.h34{height:32.917246px;}
.h60{height:33.288784px;}
.h6b{height:33.298780px;}
.h23{height:33.299517px;}
.h15{height:33.515625px;}
.h7{height:33.867188px;}
.h4f{height:34.298326px;}
.h56{height:34.417082px;}
.h42{height:34.423608px;}
.h38{height:34.919904px;}
.h67{height:35.004231px;}
.h3{height:36.000000px;}
.h54{height:36.203533px;}
.h5e{height:37.041179px;}
.h20{height:37.205979px;}
.h8{height:37.705078px;}
.he{height:38.100586px;}
.h36{height:38.856162px;}
.h1c{height:39.585000px;}
.h17{height:39.600000px;}
.h1a{height:39.900000px;}
.h6f{height:40.500000px;}
.h6a{height:41.819969px;}
.hd{height:41.894531px;}
.h4{height:42.333984px;}
.h49{height:42.691389px;}
.h13{height:43.330078px;}
.h4b{height:43.452200px;}
.h7c{height:43.681641px;}
.h62{height:44.100571px;}
.h14{height:44.507812px;}
.h66{height:47.170142px;}
.h70{height:49.190391px;}
.h78{height:49.250391px;}
.h31{height:49.275811px;}
.h10{height:49.453125px;}
.h22{height:50.273438px;}
.h41{height:50.326542px;}
.h24{height:50.400275px;}
.h29{height:50.612848px;}
.h6{height:50.800781px;}
.h32{height:51.079907px;}
.h11{height:51.996094px;}
.h6e{height:52.560200px;}
.h52{height:53.327413px;}
.h45{height:53.388367px;}
.h5a{height:53.433257px;}
.h27{height:53.466586px;}
.h2b{height:53.692091px;}
.h1f{height:54.441815px;}
.h2f{height:54.830303px;}
.h5c{height:54.899090px;}
.h2e{height:54.939563px;}
.h28{height:55.799542px;}
.h26{height:55.824280px;}
.h57{height:56.213779px;}
.h3e{height:56.230220px;}
.h44{height:56.230435px;}
.h59{height:56.410667px;}
.h51{height:56.496680px;}
.h35{height:56.497114px;}
.h55{height:58.646354px;}
.h5b{height:59.029435px;}
.h50{height:59.338612px;}
.hf{height:59.343750px;}
.h43{height:59.406436px;}
.h1b{height:59.422500px;}
.h25{height:59.493472px;}
.h19{height:59.737500px;}
.h2a{height:59.744396px;}
.h79{height:60.000000px;}
.h3c{height:60.546605px;}
.h5f{height:63.966484px;}
.h21{height:64.264185px;}
.h71{height:65.137500px;}
.h1{height:65.645508px;}
.h37{height:66.690300px;}
.h61{height:68.510731px;}
.h58{height:68.991856px;}
.h47{height:71.037074px;}
.h33{height:74.699514px;}
.h65{height:80.769153px;}
.h63{height:81.001446px;}
.h4a{height:82.666812px;}
.h3a{height:89.896531px;}
.h68{height:90.421856px;}
.h2{height:97.200000px;}
.h3f{height:120.602968px;}
.h2c{height:120.719420px;}
.h39{height:131.601036px;}
.h12{height:304.575000px;}
.h0{height:1263.000000px;}
.w46{width:16.837500px;}
.w26{width:18.900236px;}
.w23{width:18.900393px;}
.w29{width:22.498982px;}
.w24{width:25.199879px;}
.w1a{width:29.700215px;}
.w4b{width:31.200000px;}
.w18{width:38.699888px;}
.w1b{width:41.399915px;}
.w1e{width:44.100714px;}
.w21{width:44.100750px;}
.w13{width:49.237500px;}
.w10{width:49.500000px;}
.w12{width:50.700000px;}
.w25{width:52.198607px;}
.w1d{width:52.200015px;}
.w11{width:58.837500px;}
.wf{width:71.122500px;}
.w36{width:71.400000px;}
.w4{width:72.300000px;}
.w19{width:75.599344px;}
.we{width:82.200000px;}
.w31{width:84.637500px;}
.w2e{width:87.300000px;}
.w3e{width:87.937500px;}
.w3a{width:89.737500px;}
.w3f{width:92.137500px;}
.w14{width:93.037500px;}
.w4d{width:94.837500px;}
.w4c{width:95.137500px;}
.w3d{width:96.000000px;}
.w3b{width:96.337500px;}
.w35{width:99.337500px;}
.w33{width:99.637500px;}
.w3c{width:103.537500px;}
.w8{width:106.237500px;}
.w3{width:108.000000px;}
.w34{width:108.637500px;}
.wc{width:110.737500px;}
.w32{width:111.937500px;}
.wa{width:114.037500px;}
.w4a{width:130.237500px;}
.w1f{width:131.404233px;}
.w40{width:132.937500px;}
.w43{width:139.537500px;}
.w44{width:139.575000px;}
.w2c{width:141.037500px;}
.w27{width:144.904783px;}
.wb{width:147.637500px;}
.w49{width:150.330000px;}
.w2a{width:162.930000px;}
.w48{width:169.530000px;}
.w28{width:172.798180px;}
.w2b{width:174.675000px;}
.w2f{width:197.475000px;}
.w30{width:208.875000px;}
.w17{width:214.194154px;}
.w1c{width:215.996938px;}
.w6{width:253.275000px;}
.w9{width:256.875000px;}
.w22{width:268.194003px;}
.w39{width:277.575000px;}
.w41{width:279.675000px;}
.w42{width:279.720000px;}
.w20{width:305.094979px;}
.w45{width:320.475000px;}
.w47{width:353.520000px;}
.w38{width:388.350000px;}
.w15{width:403.507057px;}
.w2d{width:480.450000px;}
.w5{width:483.450000px;}
.w16{width:624.892837px;}
.wd{width:631.695000px;}
.w37{width:666.525000px;}
.w7{width:730.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5c{left:1.299986px;}
.x22{left:3.178559px;}
.x13{left:7.800000px;}
.x2{left:10.799998px;}
.x55{left:11.968877px;}
.x39{left:13.609331px;}
.x6e{left:14.700000px;}
.x10{left:16.200000px;}
.x7a{left:18.600000px;}
.x3{left:22.200000px;}
.x49{left:23.770835px;}
.x74{left:25.230000px;}
.x4{left:27.600000px;}
.x2b{left:29.817925px;}
.x4e{left:31.323195px;}
.x77{left:32.700000px;}
.x76{left:34.500000px;}
.x2a{left:35.767446px;}
.x34{left:37.373067px;}
.x83{left:39.000000px;}
.x45{left:41.054794px;}
.x4b{left:42.255456px;}
.x2d{left:45.015077px;}
.x17{left:46.200000px;}
.x3d{left:47.688865px;}
.x5e{left:49.164261px;}
.x19{left:50.700000px;}
.x31{left:53.073370px;}
.x21{left:55.107868px;}
.x6d{left:57.000000px;}
.x54{left:58.006363px;}
.x64{left:59.720999px;}
.x65{left:61.989287px;}
.x4f{left:63.220353px;}
.x62{left:66.230985px;}
.x59{left:67.559397px;}
.x26{left:70.230492px;}
.x48{left:72.283479px;}
.x3f{left:73.798836px;}
.xb{left:78.337500px;}
.x4d{left:79.835839px;}
.x1{left:81.037487px;}
.x25{left:82.048483px;}
.xf{left:83.137500px;}
.x63{left:84.735679px;}
.x6a{left:86.437500px;}
.x70{left:87.930000px;}
.x72{left:89.430000px;}
.x20{left:90.857021px;}
.x5a{left:93.667922px;}
.x4c{left:95.478842px;}
.x4a{left:96.556904px;}
.x40{left:98.577888px;}
.x3c{left:99.907325px;}
.x53{left:101.050885px;}
.x2e{left:104.684655px;}
.x2c{left:106.520680px;}
.x12{left:108.037487px;}
.x30{left:113.660959px;}
.x60{left:114.981031px;}
.xe{left:116.745000px;}
.x42{left:118.501644px;}
.x28{left:120.749990px;}
.x2f{left:122.364524px;}
.x3b{left:123.679621px;}
.x47{left:125.249990px;}
.x24{left:128.837124px;}
.x41{left:130.081455px;}
.x29{left:132.666537px;}
.x38{left:135.149990px;}
.x3e{left:138.892347px;}
.x84{left:142.837500px;}
.x5d{left:150.644987px;}
.x9{left:153.629987px;}
.x61{left:157.585528px;}
.x66{left:160.141133px;}
.x52{left:161.767272px;}
.x1a{left:164.445000px;}
.x67{left:165.811853px;}
.x6f{left:169.245000px;}
.x3a{left:176.549980px;}
.x14{left:188.475000px;}
.x80{left:213.675000px;}
.x5f{left:225.974987px;}
.x1b{left:236.475000px;}
.xc{left:241.567500px;}
.x7c{left:243.975000px;}
.x6b{left:250.275000px;}
.x86{left:251.475000px;}
.x75{left:254.475000px;}
.x50{left:256.574987px;}
.x1c{left:286.875000px;}
.x51{left:288.548563px;}
.x68{left:297.719987px;}
.x18{left:315.375000px;}
.x69{left:322.949980px;}
.x32{left:334.949980px;}
.x57{left:342.149959px;}
.x1d{left:346.320000px;}
.x81{left:353.820000px;}
.x71{left:367.320000px;}
.x33{left:373.649959px;}
.x58{left:386.219987px;}
.x43{left:392.519987px;}
.x1e{left:397.620000px;}
.x5b{left:403.319987px;}
.x6{left:405.119987px;}
.x85{left:420.450000px;}
.x6c{left:425.850000px;}
.x7d{left:438.450000px;}
.x56{left:441.449987px;}
.x15{left:445.950000px;}
.x1f{left:447.750000px;}
.x35{left:449.249987px;}
.x78{left:467.550000px;}
.x23{left:484.649987px;}
.x44{left:493.949959px;}
.x36{left:510.449959px;}
.x37{left:540.194987px;}
.x7b{left:542.595000px;}
.x46{left:546.194987px;}
.x87{left:551.595000px;}
.xd{left:561.780000px;}
.x73{left:576.780000px;}
.x88{left:583.395000px;}
.x11{left:588.494987px;}
.x8{left:614.879987px;}
.x82{left:634.395000px;}
.x7e{left:639.195000px;}
.x7{left:648.194987px;}
.x79{left:677.025000px;}
.x89{left:679.125000px;}
.x5{left:698.624987px;}
.x27{left:706.124987px;}
.x16{left:709.425000px;}
.x7f{left:728.025000px;}
.xa{left:812.369987px;}
@media print{
.v4{vertical-align:-90.259675pt;}
.v7{vertical-align:-68.325630pt;}
.va{vertical-align:-50.226887pt;}
.v3{vertical-align:-40.722213pt;}
.v15{vertical-align:-27.034826pt;}
.v1{vertical-align:-19.200000pt;}
.v12{vertical-align:-15.852502pt;}
.vb{vertical-align:-13.833984pt;}
.v13{vertical-align:-12.230154pt;}
.vd{vertical-align:-10.495866pt;}
.v16{vertical-align:-5.333333pt;}
.v6{vertical-align:-3.333686pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:10.517371pt;}
.v9{vertical-align:12.531224pt;}
.ve{vertical-align:13.833984pt;}
.v11{vertical-align:16.553777pt;}
.v2{vertical-align:19.200000pt;}
.v10{vertical-align:26.483393pt;}
.v5{vertical-align:35.621143pt;}
.v8{vertical-align:37.070671pt;}
.v14{vertical-align:40.679930pt;}
.vc{vertical-align:51.162180pt;}
.ls19{letter-spacing:-1.119411pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls3e{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls40{letter-spacing:0.026667pt;}
.ls42{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls44{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.173867pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.291485pt;}
.ls4{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.373333pt;}
.ls21{letter-spacing:0.382440pt;}
.ls30{letter-spacing:0.472778pt;}
.lse{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls2e{letter-spacing:0.634492pt;}
.ls3b{letter-spacing:0.818477pt;}
.ls3f{letter-spacing:1.866667pt;}
.ls39{letter-spacing:7.385056pt;}
.ls31{letter-spacing:12.489822pt;}
.ls32{letter-spacing:12.701513pt;}
.ls43{letter-spacing:13.973333pt;}
.ls2a{letter-spacing:14.617264pt;}
.ls25{letter-spacing:18.934517pt;}
.ls1d{letter-spacing:27.100022pt;}
.ls17{letter-spacing:37.805210pt;}
.ls41{letter-spacing:40.640000pt;}
.ls13{letter-spacing:55.315149pt;}
.ls2d{letter-spacing:55.344435pt;}
.ls35{letter-spacing:58.742203pt;}
.ls38{letter-spacing:59.869692pt;}
.ls34{letter-spacing:61.842799pt;}
.ls36{letter-spacing:69.453353pt;}
.ls2c{letter-spacing:73.866014pt;}
.ls2b{letter-spacing:74.227051pt;}
.ls29{letter-spacing:78.265800pt;}
.ls37{letter-spacing:79.262512pt;}
.ls12{letter-spacing:83.686870pt;}
.ls33{letter-spacing:84.448963pt;}
.ls10{letter-spacing:129.503904pt;}
.ls18{letter-spacing:137.162355pt;}
.ls11{letter-spacing:150.963252pt;}
.ls16{letter-spacing:166.806273pt;}
.ls2f{letter-spacing:206.434136pt;}
.ls14{letter-spacing:209.480745pt;}
.ls23{letter-spacing:247.600055pt;}
.ls22{letter-spacing:248.917300pt;}
.ls20{letter-spacing:249.476084pt;}
.ls15{letter-spacing:262.951555pt;}
.ls27{letter-spacing:282.676467pt;}
.ls1e{letter-spacing:290.425895pt;}
.ls1b{letter-spacing:303.076569pt;}
.ls1f{letter-spacing:303.376348pt;}
.ls1a{letter-spacing:305.414845pt;}
.ls1c{letter-spacing:314.767950pt;}
.ls24{letter-spacing:431.548930pt;}
.ls26{letter-spacing:433.251773pt;}
.ls28{letter-spacing:456.122333pt;}
.ws28{word-spacing:-34.833579pt;}
.ws18{word-spacing:-32.463697pt;}
.ws32{word-spacing:-20.725159pt;}
.ws27{word-spacing:-20.330634pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2b{word-spacing:-15.998615pt;}
.ws24{word-spacing:-14.928574pt;}
.ws16{word-spacing:-14.812563pt;}
.ws17{word-spacing:-14.783104pt;}
.ws8{word-spacing:-13.813333pt;}
.ws19{word-spacing:-13.663693pt;}
.ws0{word-spacing:-13.514667pt;}
.ws9{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws36{word-spacing:-13.226667pt;}
.ws7{word-spacing:-13.120000pt;}
.ws38{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.853333pt;}
.wsa{word-spacing:-12.640000pt;}
.ws5{word-spacing:-11.466667pt;}
.ws2e{word-spacing:-9.279382pt;}
.ws37{word-spacing:-8.973867pt;}
.ws2{word-spacing:-8.800000pt;}
.ws25{word-spacing:-8.713069pt;}
.ws23{word-spacing:-5.417962pt;}
.ws1e{word-spacing:-2.373458pt;}
.ws4{word-spacing:0.000000pt;}
.ws2a{word-spacing:3.218082pt;}
.ws15{word-spacing:6.378776pt;}
.ws20{word-spacing:10.625224pt;}
.wsd{word-spacing:10.881121pt;}
.ws1f{word-spacing:14.614215pt;}
.ws1a{word-spacing:19.276257pt;}
.ws1c{word-spacing:38.259180pt;}
.ws21{word-spacing:40.682929pt;}
.ws2c{word-spacing:41.424377pt;}
.ws1b{word-spacing:44.736092pt;}
.ws30{word-spacing:45.944306pt;}
.ws2d{word-spacing:46.395982pt;}
.ws14{word-spacing:47.937469pt;}
.ws26{word-spacing:58.834216pt;}
.ws11{word-spacing:66.990772pt;}
.ws2f{word-spacing:70.986737pt;}
.ws12{word-spacing:77.507055pt;}
.ws10{word-spacing:84.372333pt;}
.ws13{word-spacing:87.949792pt;}
.wsb{word-spacing:96.128121pt;}
.ws29{word-spacing:109.340824pt;}
.ws22{word-spacing:122.611689pt;}
.wsf{word-spacing:160.596158pt;}
.ws31{word-spacing:224.662672pt;}
.wse{word-spacing:225.335081pt;}
.ws1d{word-spacing:301.547713pt;}
.ws33{word-spacing:308.121722pt;}
.ws35{word-spacing:440.049132pt;}
.ws34{word-spacing:451.231787pt;}
.wsc{word-spacing:1411.365474pt;}
._1e{margin-left:-1365.801111pt;}
._55{margin-left:-669.417899pt;}
._4e{margin-left:-565.819509pt;}
._4b{margin-left:-463.652708pt;}
._4c{margin-left:-388.027577pt;}
._48{margin-left:-386.637436pt;}
._61{margin-left:-332.280065pt;}
._4a{margin-left:-313.737629pt;}
._63{margin-left:-298.375205pt;}
._66{margin-left:-293.375655pt;}
._62{margin-left:-288.045223pt;}
._65{margin-left:-284.247771pt;}
._64{margin-left:-274.273334pt;}
._49{margin-left:-187.176642pt;}
._44{margin-left:-152.540674pt;}
._38{margin-left:-148.759860pt;}
._50{margin-left:-146.976793pt;}
._4f{margin-left:-141.369817pt;}
._45{margin-left:-130.801346pt;}
._46{margin-left:-114.595067pt;}
._39{margin-left:-105.663424pt;}
._36{margin-left:-98.928691pt;}
._47{margin-left:-91.552514pt;}
._42{margin-left:-89.738679pt;}
._41{margin-left:-87.992339pt;}
._3b{margin-left:-82.647245pt;}
._5f{margin-left:-22.207935pt;}
._34{margin-left:-5.476727pt;}
._37{margin-left:-4.198402pt;}
._3a{margin-left:-2.493479pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.050667pt;}
._f{width:1.957333pt;}
._10{width:2.885333pt;}
._a{width:3.946667pt;}
._9{width:4.917333pt;}
._6{width:6.117333pt;}
._7{width:7.018667pt;}
._11{width:8.266667pt;}
._13{width:9.296000pt;}
._c{width:10.293333pt;}
._b{width:11.274667pt;}
._8{width:12.266667pt;}
._12{width:14.570667pt;}
._67{width:15.765333pt;}
._14{width:16.725333pt;}
._e{width:17.738667pt;}
._d{width:18.666667pt;}
._1f{width:21.333333pt;}
._69{width:22.421333pt;}
._68{width:23.573333pt;}
._52{width:28.490667pt;}
._51{width:29.440000pt;}
._1b{width:34.499041pt;}
._1d{width:35.484930pt;}
._1c{width:36.924769pt;}
._3d{width:38.594420pt;}
._1a{width:43.316565pt;}
._59{width:56.371927pt;}
._43{width:81.803362pt;}
._5d{width:89.080286pt;}
._5e{width:94.519815pt;}
._5a{width:96.070940pt;}
._5c{width:98.423477pt;}
._57{width:99.353671pt;}
._58{width:104.236279pt;}
._19{width:110.335954pt;}
._56{width:111.523202pt;}
._28{width:116.260583pt;}
._54{width:128.057487pt;}
._15{width:150.395113pt;}
._20{width:176.160000pt;}
._26{width:180.606786pt;}
._27{width:184.464225pt;}
._25{width:186.386486pt;}
._16{width:195.236421pt;}
._35{width:202.059010pt;}
._3e{width:215.697010pt;}
._3c{width:219.252580pt;}
._3f{width:224.399691pt;}
._60{width:233.170803pt;}
._5b{width:238.550862pt;}
._2c{width:239.835573pt;}
._30{width:241.702705pt;}
._53{width:245.018138pt;}
._40{width:249.181917pt;}
._29{width:269.606495pt;}
._2e{width:272.786424pt;}
._21{width:280.128976pt;}
._4{width:298.826667pt;}
._2a{width:315.353623pt;}
._22{width:316.893498pt;}
._24{width:320.483957pt;}
._18{width:337.522674pt;}
._17{width:377.928366pt;}
._2d{width:442.393333pt;}
._33{width:443.291593pt;}
._4d{width:459.124059pt;}
._31{width:460.427576pt;}
._2b{width:471.137671pt;}
._32{width:472.356739pt;}
._23{width:476.783881pt;}
._2f{width:483.137344pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs14{font-size:29.197351pt;}
.fs2f{font-size:33.065549pt;}
.fs1c{font-size:34.852274pt;}
.fs8{font-size:35.200000pt;}
.fs1f{font-size:36.989453pt;}
.fs1d{font-size:37.032120pt;}
.fs24{font-size:37.117527pt;}
.fs17{font-size:37.124565pt;}
.fs31{font-size:37.333333pt;}
.fs2d{font-size:37.750746pt;}
.fs22{font-size:39.044147pt;}
.fs29{font-size:39.947517pt;}
.fsa{font-size:40.125248pt;}
.fs11{font-size:41.904907pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs15{font-size:50.093474pt;}
.fs2{font-size:53.333333pt;}
.fs30{font-size:56.684196pt;}
.fs1{font-size:58.666667pt;}
.fs10{font-size:59.132417pt;}
.fsf{font-size:59.250250pt;}
.fs1a{font-size:59.714294pt;}
.fs16{font-size:60.642176pt;}
.fs1e{font-size:63.449143pt;}
.fs20{font-size:63.994459pt;}
.fs4{font-size:64.000000pt;}
.fs18{font-size:64.067604pt;}
.fs26{font-size:64.121474pt;}
.fsb{font-size:64.161470pt;}
.fsd{font-size:64.432082pt;}
.fs2e{font-size:64.716019pt;}
.fsc{font-size:66.990772pt;}
.fs25{font-size:67.458182pt;}
.fs19{font-size:67.478169pt;}
.fs27{font-size:67.694454pt;}
.fs21{font-size:67.797671pt;}
.fs2a{font-size:68.985445pt;}
.fs9{font-size:69.306504pt;}
.fs23{font-size:70.377343pt;}
.fs28{font-size:70.837052pt;}
.fs12{font-size:71.922978pt;}
.fs1b{font-size:89.687024pt;}
.fse{font-size:96.777124pt;}
.fs2c{font-size:97.204109pt;}
.fs2b{font-size:103.616285pt;}
.fs13{font-size:107.878471pt;}
.y0{bottom:0.000000pt;}
.y13c{bottom:2.861557pt;}
.y15a{bottom:2.861623pt;}
.yf{bottom:3.480000pt;}
.y195{bottom:3.551908pt;}
.y17d{bottom:3.554010pt;}
.y184{bottom:3.554012pt;}
.y180{bottom:3.554013pt;}
.yf1{bottom:3.771605pt;}
.y153{bottom:3.846113pt;}
.y155{bottom:3.846114pt;}
.y154{bottom:3.846123pt;}
.y156{bottom:3.846124pt;}
.y1ee{bottom:4.000000pt;}
.yfa{bottom:4.164471pt;}
.y122{bottom:4.252226pt;}
.y1e6{bottom:4.266667pt;}
.y168{bottom:4.300615pt;}
.y174{bottom:4.300621pt;}
.y130{bottom:4.310726pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y1ba{bottom:5.053333pt;}
.yc1{bottom:5.066667pt;}
.ybc{bottom:5.080000pt;}
.yc8{bottom:5.093333pt;}
.y1b6{bottom:5.106667pt;}
.yb9{bottom:5.333333pt;}
.y1bc{bottom:5.346667pt;}
.y18e{bottom:5.374692pt;}
.y192{bottom:5.374705pt;}
.y18b{bottom:5.374707pt;}
.y16c{bottom:5.389571pt;}
.y16f{bottom:5.389593pt;}
.y170{bottom:5.389598pt;}
.y15e{bottom:5.421616pt;}
.y151{bottom:6.320670pt;}
.y157{bottom:6.320705pt;}
.y114{bottom:6.398688pt;}
.y119{bottom:6.398721pt;}
.y115{bottom:6.428392pt;}
.y11d{bottom:6.428402pt;}
.y3e{bottom:6.653333pt;}
.y14a{bottom:6.817310pt;}
.y196{bottom:7.103809pt;}
.y127{bottom:7.123358pt;}
.y1e9{bottom:7.200000pt;}
.y11e{bottom:7.261838pt;}
.y111{bottom:7.340950pt;}
.y112{bottom:7.596320pt;}
.y12b{bottom:7.632237pt;}
.y191{bottom:8.078221pt;}
.yf0{bottom:8.228632pt;}
.yf2{bottom:8.228648pt;}
.y189{bottom:8.432235pt;}
.y175{bottom:8.668845pt;}
.y169{bottom:8.668848pt;}
.y172{bottom:9.528020pt;}
.y16d{bottom:9.528055pt;}
.y171{bottom:9.528057pt;}
.y160{bottom:9.560053pt;}
.y161{bottom:9.560056pt;}
.y15f{bottom:9.560077pt;}
.y14f{bottom:10.077191pt;}
.y147{bottom:10.952922pt;}
.y5{bottom:10.966667pt;}
.y123{bottom:11.775333pt;}
.y18d{bottom:12.133406pt;}
.yfb{bottom:13.518247pt;}
.y17f{bottom:15.514267pt;}
.y152{bottom:16.785339pt;}
.y142{bottom:18.158262pt;}
.y1e7{bottom:18.400000pt;}
.y141{bottom:19.095024pt;}
.y190{bottom:19.407110pt;}
.y150{bottom:19.409275pt;}
.y1e8{bottom:19.466667pt;}
.y121{bottom:19.843881pt;}
.y185{bottom:19.956593pt;}
.y181{bottom:19.956600pt;}
.y194{bottom:20.043414pt;}
.y18f{bottom:22.303397pt;}
.y3d{bottom:22.653333pt;}
.yc0{bottom:22.666667pt;}
.ybb{bottom:22.680000pt;}
.yc7{bottom:22.693333pt;}
.yc3{bottom:22.933333pt;}
.y126{bottom:23.078498pt;}
.y146{bottom:23.263150pt;}
.y1d2{bottom:23.466667pt;}
.y18c{bottom:26.938480pt;}
.y183{bottom:27.713696pt;}
.y17c{bottom:27.713701pt;}
.y129{bottom:28.856744pt;}
.y18a{bottom:28.998503pt;}
.y12a{bottom:29.874493pt;}
.y110{bottom:30.161238pt;}
.y140{bottom:31.049069pt;}
.y10f{bottom:31.821140pt;}
.y14b{bottom:35.185214pt;}
.y120{bottom:35.762144pt;}
.y17e{bottom:37.521465pt;}
.y182{bottom:37.794869pt;}
.y125{bottom:38.596553pt;}
.yc6{bottom:40.293333pt;}
.y3c{bottom:40.533333pt;}
.ybf{bottom:40.560000pt;}
.y208{bottom:40.813333pt;}
.y4{bottom:41.600000pt;}
.y13f{bottom:42.390154pt;}
.y128{bottom:43.249124pt;}
.y1e4{bottom:48.040000pt;}
.y1{bottom:50.700000pt;}
.y124{bottom:54.552292pt;}
.y3b{bottom:56.026667pt;}
.y13e{bottom:58.997362pt;}
.y145{bottom:63.133507pt;}
.y40{bottom:65.900000pt;}
.y3a{bottom:71.226667pt;}
.y3{bottom:72.300000pt;}
.y144{bottom:75.443335pt;}
.y149{bottom:82.648275pt;}
.y148{bottom:84.489819pt;}
.y39{bottom:86.693333pt;}
.y143{bottom:88.624632pt;}
.y13a{bottom:100.833333pt;}
.y38{bottom:101.893333pt;}
.y7c{bottom:108.033333pt;}
.y2c{bottom:108.566667pt;}
.yed{bottom:109.366667pt;}
.y284{bottom:109.633333pt;}
.y1de{bottom:110.966667pt;}
.y243{bottom:111.500000pt;}
.y1a7{bottom:112.300000pt;}
.yb7{bottom:114.166667pt;}
.y215{bottom:115.500000pt;}
.y139{bottom:116.033333pt;}
.y37{bottom:117.360000pt;}
.y7b{bottom:123.500000pt;}
.y2b{bottom:123.766667pt;}
.y283{bottom:124.833333pt;}
.y242{bottom:126.966667pt;}
.y1dd{bottom:128.566667pt;}
.yb6{bottom:129.633333pt;}
.yec{bottom:130.433333pt;}
.y1a6{bottom:130.700000pt;}
.y214{bottom:130.966667pt;}
.y138{bottom:131.500000pt;}
.y36{bottom:132.560000pt;}
.y7a{bottom:137.106667pt;}
.y2a{bottom:139.240000pt;}
.y282{bottom:140.293333pt;}
.y241{bottom:142.160000pt;}
.yb5{bottom:144.826667pt;}
.y1dc{bottom:146.160000pt;}
.y79{bottom:146.440000pt;}
.y137{bottom:146.693333pt;}
.y35{bottom:148.026667pt;}
.yeb{bottom:148.560000pt;}
.y1a5{bottom:150.706667pt;}
.y29{bottom:154.440000pt;}
.y281{bottom:155.493333pt;}
.y240{bottom:157.640000pt;}
.yb4{bottom:160.333333pt;}
.y78{bottom:161.666667pt;}
.y136{bottom:162.200000pt;}
.y34{bottom:163.226667pt;}
.yea{bottom:163.800000pt;}
.y1a4{bottom:168.333333pt;}
.y28{bottom:169.933333pt;}
.y280{bottom:171.000000pt;}
.y23f{bottom:172.866667pt;}
.yb3{bottom:175.533333pt;}
.y77{bottom:177.133333pt;}
.y213{bottom:177.400000pt;}
.y135{bottom:177.933333pt;}
.y33{bottom:178.693333pt;}
.ye9{bottom:179.266667pt;}
.y1db{bottom:181.666667pt;}
.y27{bottom:185.133333pt;}
.y1a3{bottom:185.933333pt;}
.y27f{bottom:186.200000pt;}
.y23e{bottom:188.333333pt;}
.yb2{bottom:191.000000pt;}
.y76{bottom:192.333333pt;}
.y32{bottom:193.933333pt;}
.ye8{bottom:194.466667pt;}
.y212{bottom:194.733333pt;}
.y134{bottom:195.800000pt;}
.y1da{bottom:197.133333pt;}
.y26{bottom:200.600000pt;}
.y27e{bottom:201.666667pt;}
.y1a2{bottom:203.533333pt;}
.yb1{bottom:206.200000pt;}
.y211{bottom:207.533333pt;}
.y75{bottom:207.800000pt;}
.y31{bottom:209.386667pt;}
.ye7{bottom:209.933333pt;}
.y1d9{bottom:210.200000pt;}
.y133{bottom:211.266667pt;}
.y25{bottom:215.800000pt;}
.y27d{bottom:216.866667pt;}
.y23d{bottom:219.000000pt;}
.y210{bottom:220.600000pt;}
.y1a1{bottom:221.133333pt;}
.yb0{bottom:221.666667pt;}
.y74{bottom:223.000000pt;}
.y30{bottom:224.586667pt;}
.ye6{bottom:225.133333pt;}
.y132{bottom:226.466667pt;}
.y1d8{bottom:228.333333pt;}
.y24{bottom:231.266667pt;}
.y27c{bottom:232.333333pt;}
.y23c{bottom:234.733333pt;}
.yaf{bottom:236.866667pt;}
.y73{bottom:238.466667pt;}
.y1a0{bottom:238.733333pt;}
.y2f{bottom:240.066667pt;}
.ye5{bottom:240.600000pt;}
.y131{bottom:241.933333pt;}
.y23{bottom:246.466667pt;}
.y1d7{bottom:246.733333pt;}
.y27b{bottom:247.533333pt;}
.yae{bottom:252.066667pt;}
.y72{bottom:253.666667pt;}
.y12f{bottom:254.266649pt;}
.ye4{bottom:255.266667pt;}
.y2e{bottom:255.800000pt;}
.y19f{bottom:256.600000pt;}
.y20f{bottom:257.133333pt;}
.y22{bottom:261.933333pt;}
.y27a{bottom:263.000000pt;}
.y12e{bottom:263.533333pt;}
.y1d6{bottom:264.866667pt;}
.ye3{bottom:265.666667pt;}
.yad{bottom:267.533333pt;}
.y71{bottom:269.133333pt;}
.y19e{bottom:274.200000pt;}
.y20e{bottom:275.266667pt;}
.y21{bottom:277.133333pt;}
.y279{bottom:278.200000pt;}
.y12d{bottom:278.466667pt;}
.y23b{bottom:280.333333pt;}
.yac{bottom:282.733333pt;}
.y1d5{bottom:283.266667pt;}
.ye2{bottom:284.066667pt;}
.y70{bottom:284.333333pt;}
.y11f{bottom:291.066649pt;}
.y19d{bottom:291.800000pt;}
.y20{bottom:292.600000pt;}
.y20d{bottom:293.666667pt;}
.y23a{bottom:295.533333pt;}
.yab{bottom:298.200000pt;}
.y6f{bottom:299.800000pt;}
.y1d4{bottom:301.666667pt;}
.ye1{bottom:302.466667pt;}
.y1f{bottom:307.840000pt;}
.y278{bottom:308.893333pt;}
.y19c{bottom:309.426667pt;}
.y11c{bottom:309.733297pt;}
.y239{bottom:311.040000pt;}
.y20c{bottom:312.106667pt;}
.yaa{bottom:313.440000pt;}
.y6e{bottom:315.573333pt;}
.y12c{bottom:316.373333pt;}
.y1d1{bottom:319.840000pt;}
.ye0{bottom:320.626667pt;}
.y1e{bottom:323.560000pt;}
.y277{bottom:324.360000pt;}
.y238{bottom:326.226667pt;}
.y19b{bottom:327.026667pt;}
.ya9{bottom:328.893333pt;}
.y20b{bottom:330.226667pt;}
.y6d{bottom:333.426667pt;}
.y1d3{bottom:338.226667pt;}
.ydf{bottom:339.026667pt;}
.y276{bottom:339.573333pt;}
.y237{bottom:341.693333pt;}
.y1d{bottom:341.960000pt;}
.ya8{bottom:344.106667pt;}
.y19a{bottom:345.706667pt;}
.y20a{bottom:348.626667pt;}
.y6c{bottom:348.906667pt;}
.y275{bottom:355.040000pt;}
.y236{bottom:356.373333pt;}
.yde{bottom:357.173333pt;}
.ya7{bottom:359.560000pt;}
.y11b{bottom:359.840000pt;}
.y6b{bottom:363.560000pt;}
.y199{bottom:364.893333pt;}
.y1d0{bottom:366.506667pt;}
.y207{bottom:367.026667pt;}
.y235{bottom:369.173333pt;}
.y274{bottom:370.226667pt;}
.y11a{bottom:372.626667pt;}
.ya6{bottom:374.773333pt;}
.y258{bottom:375.293333pt;}
.ydd{bottom:375.560000pt;}
.y6a{bottom:376.373333pt;}
.y198{bottom:379.840000pt;}
.y1cf{bottom:384.626667pt;}
.y118{bottom:384.933297pt;}
.y273{bottom:385.706667pt;}
.ya5{bottom:390.226667pt;}
.y117{bottom:391.560000pt;}
.y69{bottom:391.840000pt;}
.y257{bottom:392.626667pt;}
.y197{bottom:397.706667pt;}
.y1ce{bottom:399.840000pt;}
.y272{bottom:400.893333pt;}
.y209{bottom:402.773333pt;}
.ydc{bottom:404.106667pt;}
.ya4{bottom:405.440000pt;}
.y68{bottom:407.026667pt;}
.y116{bottom:407.306667pt;}
.y188{bottom:412.399964pt;}
.y2d{bottom:413.973333pt;}
.y1cd{bottom:415.293333pt;}
.y271{bottom:416.373333pt;}
.y193{bottom:416.399964pt;}
.y10e{bottom:417.200000pt;}
.y256{bottom:419.026667pt;}
.ya3{bottom:420.893333pt;}
.ydb{bottom:421.960000pt;}
.y67{bottom:422.506667pt;}
.y187{bottom:424.373333pt;}
.y255{bottom:428.626667pt;}
.y1cc{bottom:430.506667pt;}
.y113{bottom:430.533333pt;}
.y206{bottom:431.306667pt;}
.y270{bottom:431.560000pt;}
.ya2{bottom:436.626667pt;}
.y10d{bottom:437.173333pt;}
.yda{bottom:437.440000pt;}
.y66{bottom:437.706667pt;}
.y254{bottom:443.306667pt;}
.y1cb{bottom:445.973333pt;}
.y26f{bottom:447.040000pt;}
.y205{bottom:448.640000pt;}
.yd9{bottom:452.626667pt;}
.y65{bottom:453.173333pt;}
.ya1{bottom:453.973333pt;}
.y253{bottom:456.106667pt;}
.y234{bottom:461.200000pt;}
.y204{bottom:461.466667pt;}
.y1ca{bottom:461.733333pt;}
.y26e{bottom:462.266667pt;}
.y17b{bottom:463.333297pt;}
.ya0{bottom:466.800000pt;}
.yd8{bottom:468.133333pt;}
.y64{bottom:468.400000pt;}
.y10c{bottom:469.200000pt;}
.y252{bottom:471.600000pt;}
.y233{bottom:476.666667pt;}
.y203{bottom:476.933333pt;}
.y26d{bottom:477.733333pt;}
.y1c9{bottom:479.066667pt;}
.y9f{bottom:480.400000pt;}
.y186{bottom:482.000000pt;}
.y10b{bottom:482.266667pt;}
.yd7{bottom:483.333333pt;}
.y63{bottom:483.866667pt;}
.y251{bottom:486.800000pt;}
.y9e{bottom:490.000000pt;}
.y1c8{bottom:491.866667pt;}
.y202{bottom:492.133333pt;}
.y26c{bottom:492.933333pt;}
.y232{bottom:493.200000pt;}
.y10a{bottom:497.466667pt;}
.yd6{bottom:498.800000pt;}
.y62{bottom:499.066667pt;}
.y250{bottom:501.466667pt;}
.y9d{bottom:505.200000pt;}
.y1c7{bottom:507.333333pt;}
.y201{bottom:507.600000pt;}
.y231{bottom:508.133333pt;}
.y26b{bottom:508.400000pt;}
.y109{bottom:512.933333pt;}
.yd5{bottom:514.000000pt;}
.y61{bottom:514.533333pt;}
.y9c{bottom:520.666667pt;}
.y1c6{bottom:522.533333pt;}
.y200{bottom:522.800000pt;}
.y26a{bottom:523.600000pt;}
.y230{bottom:525.733333pt;}
.y17a{bottom:526.000000pt;}
.y108{bottom:528.133333pt;}
.yd4{bottom:529.466667pt;}
.y24f{bottom:529.733333pt;}
.y60{bottom:530.266667pt;}
.y9b{bottom:535.866667pt;}
.y1c5{bottom:538.000000pt;}
.y1ff{bottom:538.266667pt;}
.y269{bottom:539.066667pt;}
.y22f{bottom:543.333333pt;}
.y107{bottom:543.600000pt;}
.yd3{bottom:544.666667pt;}
.y24e{bottom:545.200000pt;}
.y5f{bottom:548.666667pt;}
.y9a{bottom:551.333333pt;}
.y1c4{bottom:553.200000pt;}
.y1fe{bottom:553.466667pt;}
.y268{bottom:554.266667pt;}
.y106{bottom:558.800000pt;}
.yd2{bottom:560.133333pt;}
.y24d{bottom:560.400000pt;}
.y22e{bottom:560.933333pt;}
.y179{bottom:561.200000pt;}
.y5e{bottom:566.000000pt;}
.y99{bottom:566.533333pt;}
.y1c3{bottom:568.666667pt;}
.y1fd{bottom:568.933333pt;}
.y267{bottom:569.733333pt;}
.y105{bottom:574.266667pt;}
.yd1{bottom:575.333333pt;}
.y24c{bottom:575.866667pt;}
.y22d{bottom:578.533333pt;}
.y5d{bottom:578.800000pt;}
.y98{bottom:582.000000pt;}
.y1c2{bottom:583.866667pt;}
.y1fc{bottom:584.133333pt;}
.y266{bottom:584.933333pt;}
.y104{bottom:589.466667pt;}
.yd0{bottom:590.800000pt;}
.y24b{bottom:591.066667pt;}
.y22c{bottom:593.466667pt;}
.y5c{bottom:594.266667pt;}
.y178{bottom:596.400000pt;}
.y97{bottom:597.200000pt;}
.y1c1{bottom:599.333333pt;}
.y1fb{bottom:599.600000pt;}
.y265{bottom:600.400000pt;}
.y103{bottom:604.933333pt;}
.ycf{bottom:606.040000pt;}
.y22b{bottom:606.560000pt;}
.y5b{bottom:609.506667pt;}
.y96{bottom:612.973333pt;}
.y177{bottom:614.026667pt;}
.y1c0{bottom:614.560000pt;}
.y1fa{bottom:615.360000pt;}
.y264{bottom:615.640000pt;}
.y22a{bottom:619.360000pt;}
.y102{bottom:620.173333pt;}
.y24a{bottom:621.240000pt;}
.yce{bottom:621.506667pt;}
.y5a{bottom:624.973333pt;}
.y173{bottom:628.933261pt;}
.y1bf{bottom:630.040000pt;}
.y95{bottom:630.306667pt;}
.y263{bottom:631.093333pt;}
.y1f9{bottom:632.693333pt;}
.y249{bottom:634.026667pt;}
.y101{bottom:635.626667pt;}
.ycd{bottom:636.693333pt;}
.y176{bottom:636.973333pt;}
.y229{bottom:637.760000pt;}
.y59{bottom:639.640000pt;}
.y94{bottom:643.373333pt;}
.y1be{bottom:645.240000pt;}
.y262{bottom:646.293333pt;}
.y1f8{bottom:647.626667pt;}
.y248{bottom:649.506667pt;}
.y100{bottom:650.840000pt;}
.ycc{bottom:652.173333pt;}
.y58{bottom:652.440000pt;}
.y228{bottom:655.893333pt;}
.y16e{bottom:656.933261pt;}
.y93{bottom:656.960000pt;}
.y1bd{bottom:658.306667pt;}
.y261{bottom:661.773333pt;}
.y247{bottom:664.706667pt;}
.y1f7{bottom:665.226667pt;}
.y92{bottom:666.306667pt;}
.yff{bottom:666.560000pt;}
.y57{bottom:667.906667pt;}
.y227{bottom:674.306667pt;}
.y1bb{bottom:676.426667pt;}
.y260{bottom:676.973333pt;}
.y246{bottom:680.173333pt;}
.y91{bottom:681.506667pt;}
.y1f6{bottom:682.840000pt;}
.y56{bottom:683.106667pt;}
.yfe{bottom:683.893333pt;}
.y16b{bottom:684.666594pt;}
.ycb{bottom:685.773333pt;}
.y167{bottom:685.999928pt;}
.y25f{bottom:692.426667pt;}
.y226{bottom:692.706667pt;}
.y16a{bottom:694.040000pt;}
.y1b9{bottom:694.840000pt;}
.y245{bottom:695.373333pt;}
.y90{bottom:696.960000pt;}
.y55{bottom:698.560000pt;}
.y1f5{bottom:700.440000pt;}
.yca{bottom:701.226667pt;}
.y25e{bottom:707.626667pt;}
.y225{bottom:710.840000pt;}
.y244{bottom:711.106667pt;}
.y8f{bottom:712.173333pt;}
.y1b8{bottom:713.226667pt;}
.y54{bottom:713.760000pt;}
.yc9{bottom:714.040000pt;}
.y1c{bottom:714.840000pt;}
.y166{bottom:716.706667pt;}
.y1f4{bottom:718.040000pt;}
.y25d{bottom:723.106667pt;}
.y8e{bottom:727.626667pt;}
.y53{bottom:728.426667pt;}
.y224{bottom:729.226667pt;}
.y1b{bottom:730.293333pt;}
.y1b7{bottom:731.360000pt;}
.y165{bottom:734.560000pt;}
.y1f3{bottom:735.893333pt;}
.y25c{bottom:738.293333pt;}
.y52{bottom:741.506667pt;}
.yfd{bottom:742.293333pt;}
.y8d{bottom:742.840000pt;}
.y1a{bottom:745.506667pt;}
.y223{bottom:747.360000pt;}
.y1b5{bottom:749.760000pt;}
.yc5{bottom:750.040000pt;}
.yf9{bottom:752.133333pt;}
.y164{bottom:752.173333pt;}
.y1f2{bottom:753.506667pt;}
.y25b{bottom:753.773333pt;}
.y51{bottom:756.733333pt;}
.y8c{bottom:758.333333pt;}
.yfc{bottom:765.533333pt;}
.y222{bottom:765.800000pt;}
.y19{bottom:767.133333pt;}
.y1b4{bottom:768.200000pt;}
.y25a{bottom:769.000000pt;}
.y163{bottom:770.866667pt;}
.y1f1{bottom:771.133333pt;}
.y50{bottom:772.200000pt;}
.y8b{bottom:774.066667pt;}
.yf8{bottom:784.200000pt;}
.y259{bottom:784.466667pt;}
.y1f0{bottom:786.066667pt;}
.y1b3{bottom:786.333333pt;}
.y4f{bottom:786.866667pt;}
.y18{bottom:787.666667pt;}
.y15d{bottom:788.399928pt;}
.y8a{bottom:791.400000pt;}
.yf7{bottom:797.000000pt;}
.y1ef{bottom:797.533333pt;}
.y162{bottom:797.800000pt;}
.y4e{bottom:799.666667pt;}
.y221{bottom:802.333333pt;}
.yc4{bottom:803.666667pt;}
.y89{bottom:804.200000pt;}
.y1b2{bottom:804.733333pt;}
.y1ed{bottom:810.866667pt;}
.y17{bottom:811.666667pt;}
.yf6{bottom:812.466667pt;}
.y4d{bottom:815.133333pt;}
.y88{bottom:817.800000pt;}
.y220{bottom:820.733333pt;}
.y16{bottom:822.600000pt;}
.y1b1{bottom:822.866667pt;}
.y1ec{bottom:825.533333pt;}
.y87{bottom:827.400000pt;}
.yf5{bottom:827.666667pt;}
.y4c{bottom:830.333333pt;}
.yc2{bottom:839.400000pt;}
.y1eb{bottom:840.200000pt;}
.y1b0{bottom:841.266667pt;}
.yf4{bottom:842.333333pt;}
.y15{bottom:842.600000pt;}
.y15c{bottom:843.133333pt;}
.y4b{bottom:845.800000pt;}
.y21f{bottom:849.266667pt;}
.yef{bottom:852.133261pt;}
.y14{bottom:853.266667pt;}
.y1ea{bottom:855.133333pt;}
.y86{bottom:858.066667pt;}
.y15b{bottom:858.600000pt;}
.yf3{bottom:858.866667pt;}
.y1af{bottom:859.666667pt;}
.y4a{bottom:861.000000pt;}
.y21e{bottom:866.600000pt;}
.y1e3{bottom:869.800000pt;}
.y159{bottom:871.066594pt;}
.y13{bottom:873.266667pt;}
.y158{bottom:873.800000pt;}
.ybe{bottom:875.400000pt;}
.y49{bottom:876.466667pt;}
.yee{bottom:879.133333pt;}
.y21d{bottom:879.400000pt;}
.y12{bottom:884.200000pt;}
.y14e{bottom:887.866594pt;}
.y85{bottom:888.733333pt;}
.y48{bottom:891.666667pt;}
.y21c{bottom:894.866667pt;}
.y14d{bottom:898.600000pt;}
.y11{bottom:902.600000pt;}
.y1ae{bottom:903.400000pt;}
.y84{bottom:903.960000pt;}
.y47{bottom:907.173333pt;}
.y21b{bottom:910.106667pt;}
.y1e5{bottom:913.573333pt;}
.y1ad{bottom:916.226667pt;}
.y10{bottom:918.893333pt;}
.y13d{bottom:919.333333pt;}
.y83{bottom:919.440000pt;}
.y46{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y21a{bottom:925.560000pt;}
.ybd{bottom:929.026667pt;}
.y1ac{bottom:931.706667pt;}
.y82{bottom:934.626667pt;}
.y45{bottom:937.840000pt;}
.y219{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.y1ab{bottom:946.893333pt;}
.yba{bottom:947.426667pt;}
.yb{bottom:949.560000pt;}
.y81{bottom:950.106667pt;}
.y44{bottom:953.040000pt;}
.y218{bottom:956.226667pt;}
.y1e2{bottom:961.293333pt;}
.y1aa{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.y80{bottom:965.293333pt;}
.y13b{bottom:967.333333pt;}
.y43{bottom:968.506667pt;}
.y14c{bottom:970.106667pt;}
.y217{bottom:971.440000pt;}
.y9{bottom:975.960000pt;}
.y1a9{bottom:977.560000pt;}
.y1e1{bottom:978.893333pt;}
.y7f{bottom:980.773333pt;}
.yb8{bottom:983.173333pt;}
.y42{bottom:983.706667pt;}
.y216{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.y1a8{bottom:993.293333pt;}
.y7e{bottom:995.960000pt;}
.y1e0{bottom:996.506667pt;}
.y41{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y7d{bottom:1011.706667pt;}
.y1df{bottom:1014.106667pt;}
.y6{bottom:1014.373333pt;}
.y3f{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h77{height:13.866667pt;}
.h72{height:14.120000pt;}
.h76{height:14.133333pt;}
.h73{height:14.166667pt;}
.h3d{height:16.800070pt;}
.h4d{height:16.800143pt;}
.h7b{height:17.586667pt;}
.h18{height:17.600000pt;}
.h1d{height:17.633333pt;}
.h16{height:17.866667pt;}
.h7a{height:17.900000pt;}
.hb{height:18.619792pt;}
.ha{height:18.666667pt;}
.h3b{height:19.999577pt;}
.h2d{height:19.999660pt;}
.h30{height:19.999696pt;}
.h48{height:24.335328pt;}
.h6c{height:24.492401pt;}
.hc{height:24.578125pt;}
.h4e{height:25.600237pt;}
.h1e{height:25.600367pt;}
.h53{height:25.600571pt;}
.h40{height:25.921937pt;}
.h75{height:26.067708pt;}
.h69{height:26.359163pt;}
.h6d{height:27.253245pt;}
.h5d{height:27.893041pt;}
.h64{height:27.962833pt;}
.h74{height:28.266667pt;}
.h4c{height:28.725898pt;}
.h46{height:28.800993pt;}
.h34{height:29.259774pt;}
.h60{height:29.590031pt;}
.h6b{height:29.598915pt;}
.h23{height:29.599571pt;}
.h15{height:29.791667pt;}
.h7{height:30.104167pt;}
.h4f{height:30.487401pt;}
.h56{height:30.592962pt;}
.h42{height:30.598762pt;}
.h38{height:31.039914pt;}
.h67{height:31.114872pt;}
.h3{height:32.000000pt;}
.h54{height:32.180918pt;}
.h5e{height:32.925492pt;}
.h20{height:33.071982pt;}
.h8{height:33.515625pt;}
.he{height:33.867188pt;}
.h36{height:34.538810pt;}
.h1c{height:35.186667pt;}
.h17{height:35.200000pt;}
.h1a{height:35.466667pt;}
.h6f{height:36.000000pt;}
.h6a{height:37.173306pt;}
.hd{height:37.239583pt;}
.h4{height:37.630208pt;}
.h49{height:37.947901pt;}
.h13{height:38.515625pt;}
.h4b{height:38.624178pt;}
.h7c{height:38.828125pt;}
.h62{height:39.200508pt;}
.h14{height:39.562500pt;}
.h66{height:41.929015pt;}
.h70{height:43.724792pt;}
.h78{height:43.778125pt;}
.h31{height:43.800721pt;}
.h10{height:43.958333pt;}
.h22{height:44.687500pt;}
.h41{height:44.734704pt;}
.h24{height:44.800245pt;}
.h29{height:44.989198pt;}
.h6{height:45.156250pt;}
.h32{height:45.404361pt;}
.h11{height:46.218750pt;}
.h6e{height:46.720177pt;}
.h52{height:47.402145pt;}
.h45{height:47.456326pt;}
.h5a{height:47.496228pt;}
.h27{height:47.525854pt;}
.h2b{height:47.726303pt;}
.h1f{height:48.392725pt;}
.h2f{height:48.738047pt;}
.h5c{height:48.799191pt;}
.h2e{height:48.835167pt;}
.h28{height:49.599593pt;}
.h26{height:49.621583pt;}
.h57{height:49.967804pt;}
.h3e{height:49.982418pt;}
.h44{height:49.982609pt;}
.h59{height:50.142815pt;}
.h51{height:50.219271pt;}
.h35{height:50.219657pt;}
.h55{height:52.130093pt;}
.h5b{height:52.470609pt;}
.h50{height:52.745433pt;}
.hf{height:52.750000pt;}
.h43{height:52.805721pt;}
.h1b{height:52.820000pt;}
.h25{height:52.883086pt;}
.h19{height:53.100000pt;}
.h2a{height:53.106130pt;}
.h79{height:53.333333pt;}
.h3c{height:53.819204pt;}
.h5f{height:56.859097pt;}
.h21{height:57.123720pt;}
.h71{height:57.900000pt;}
.h1{height:58.351562pt;}
.h37{height:59.280267pt;}
.h61{height:60.898427pt;}
.h58{height:61.326095pt;}
.h47{height:63.144066pt;}
.h33{height:66.399568pt;}
.h65{height:71.794802pt;}
.h63{height:72.001285pt;}
.h4a{height:73.481611pt;}
.h3a{height:79.908028pt;}
.h68{height:80.374983pt;}
.h2{height:86.400000pt;}
.h3f{height:107.202638pt;}
.h2c{height:107.306151pt;}
.h39{height:116.978699pt;}
.h12{height:270.733333pt;}
.h0{height:1122.666667pt;}
.w46{width:14.966667pt;}
.w26{width:16.800209pt;}
.w23{width:16.800349pt;}
.w29{width:19.999095pt;}
.w24{width:22.399892pt;}
.w1a{width:26.400191pt;}
.w4b{width:27.733333pt;}
.w18{width:34.399900pt;}
.w1b{width:36.799925pt;}
.w1e{width:39.200635pt;}
.w21{width:39.200666pt;}
.w13{width:43.766667pt;}
.w10{width:44.000000pt;}
.w12{width:45.066667pt;}
.w25{width:46.398762pt;}
.w1d{width:46.400013pt;}
.w11{width:52.300000pt;}
.wf{width:63.220000pt;}
.w36{width:63.466667pt;}
.w4{width:64.266667pt;}
.w19{width:67.199416pt;}
.we{width:73.066667pt;}
.w31{width:75.233333pt;}
.w2e{width:77.600000pt;}
.w3e{width:78.166667pt;}
.w3a{width:79.766667pt;}
.w3f{width:81.900000pt;}
.w14{width:82.700000pt;}
.w4d{width:84.300000pt;}
.w4c{width:84.566667pt;}
.w3d{width:85.333333pt;}
.w3b{width:85.633333pt;}
.w35{width:88.300000pt;}
.w33{width:88.566667pt;}
.w3c{width:92.033333pt;}
.w8{width:94.433333pt;}
.w3{width:96.000000pt;}
.w34{width:96.566667pt;}
.wc{width:98.433333pt;}
.w32{width:99.500000pt;}
.wa{width:101.366667pt;}
.w4a{width:115.766667pt;}
.w1f{width:116.803763pt;}
.w40{width:118.166667pt;}
.w43{width:124.033333pt;}
.w44{width:124.066667pt;}
.w2c{width:125.366667pt;}
.w27{width:128.804252pt;}
.wb{width:131.233333pt;}
.w49{width:133.626667pt;}
.w2a{width:144.826667pt;}
.w48{width:150.693333pt;}
.w28{width:153.598382pt;}
.w2b{width:155.266667pt;}
.w2f{width:175.533333pt;}
.w30{width:185.666667pt;}
.w17{width:190.394804pt;}
.w1c{width:191.997278pt;}
.w6{width:225.133333pt;}
.w9{width:228.333333pt;}
.w22{width:238.394669pt;}
.w39{width:246.733333pt;}
.w41{width:248.600000pt;}
.w42{width:248.640000pt;}
.w20{width:271.195536pt;}
.w45{width:284.866667pt;}
.w47{width:314.240000pt;}
.w38{width:345.200000pt;}
.w15{width:358.672939pt;}
.w2d{width:427.066667pt;}
.w5{width:429.733333pt;}
.w16{width:555.460300pt;}
.wd{width:561.506667pt;}
.w37{width:592.466667pt;}
.w7{width:649.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:1.155543pt;}
.x22{left:2.825386pt;}
.x13{left:6.933333pt;}
.x2{left:9.599999pt;}
.x55{left:10.639002pt;}
.x39{left:12.097183pt;}
.x6e{left:13.066667pt;}
.x10{left:14.400000pt;}
.x7a{left:16.533333pt;}
.x3{left:19.733333pt;}
.x49{left:21.129631pt;}
.x74{left:22.426667pt;}
.x4{left:24.533333pt;}
.x2b{left:26.504823pt;}
.x4e{left:27.842840pt;}
.x77{left:29.066667pt;}
.x76{left:30.666667pt;}
.x2a{left:31.793285pt;}
.x34{left:33.220504pt;}
.x83{left:34.666667pt;}
.x45{left:36.493151pt;}
.x4b{left:37.560405pt;}
.x2d{left:40.013402pt;}
.x17{left:41.066667pt;}
.x3d{left:42.390102pt;}
.x5e{left:43.701565pt;}
.x19{left:45.066667pt;}
.x31{left:47.176329pt;}
.x21{left:48.984771pt;}
.x6d{left:50.666667pt;}
.x54{left:51.561212pt;}
.x64{left:53.085332pt;}
.x65{left:55.101588pt;}
.x4f{left:56.195870pt;}
.x62{left:58.871987pt;}
.x59{left:60.052797pt;}
.x26{left:62.427104pt;}
.x48{left:64.251981pt;}
.x3f{left:65.598965pt;}
.xb{left:69.633333pt;}
.x4d{left:70.965190pt;}
.x1{left:72.033322pt;}
.x25{left:72.931984pt;}
.xf{left:73.900000pt;}
.x63{left:75.320603pt;}
.x6a{left:76.833333pt;}
.x70{left:78.160000pt;}
.x72{left:79.493333pt;}
.x20{left:80.761796pt;}
.x5a{left:83.260375pt;}
.x4c{left:84.870082pt;}
.x4a{left:85.828359pt;}
.x40{left:87.624790pt;}
.x3c{left:88.806511pt;}
.x53{left:89.823009pt;}
.x2e{left:93.053027pt;}
.x2c{left:94.685049pt;}
.x12{left:96.033322pt;}
.x30{left:101.031963pt;}
.x60{left:102.205361pt;}
.xe{left:103.773333pt;}
.x42{left:105.334794pt;}
.x28{left:107.333324pt;}
.x2f{left:108.768466pt;}
.x3b{left:109.937441pt;}
.x47{left:111.333324pt;}
.x24{left:114.521888pt;}
.x41{left:115.627960pt;}
.x29{left:117.925810pt;}
.x38{left:120.133324pt;}
.x3e{left:123.459864pt;}
.x84{left:126.966667pt;}
.x5d{left:133.906655pt;}
.x9{left:136.559988pt;}
.x61{left:140.076025pt;}
.x66{left:142.347674pt;}
.x52{left:143.793131pt;}
.x1a{left:146.173333pt;}
.x67{left:147.388314pt;}
.x6f{left:150.440000pt;}
.x3a{left:156.933315pt;}
.x14{left:167.533333pt;}
.x80{left:189.933333pt;}
.x5f{left:200.866655pt;}
.x1b{left:210.200000pt;}
.xc{left:214.726667pt;}
.x7c{left:216.866667pt;}
.x6b{left:222.466667pt;}
.x86{left:223.533333pt;}
.x75{left:226.200000pt;}
.x50{left:228.066655pt;}
.x1c{left:255.000000pt;}
.x51{left:256.487612pt;}
.x68{left:264.639988pt;}
.x18{left:280.333333pt;}
.x69{left:287.066649pt;}
.x32{left:297.733315pt;}
.x57{left:304.133297pt;}
.x1d{left:307.840000pt;}
.x81{left:314.506667pt;}
.x71{left:326.506667pt;}
.x33{left:332.133297pt;}
.x58{left:343.306655pt;}
.x43{left:348.906655pt;}
.x1e{left:353.440000pt;}
.x5b{left:358.506655pt;}
.x6{left:360.106655pt;}
.x85{left:373.733333pt;}
.x6c{left:378.533333pt;}
.x7d{left:389.733333pt;}
.x56{left:392.399988pt;}
.x15{left:396.400000pt;}
.x1f{left:398.000000pt;}
.x35{left:399.333322pt;}
.x78{left:415.600000pt;}
.x23{left:430.799988pt;}
.x44{left:439.066630pt;}
.x36{left:453.733297pt;}
.x37{left:480.173322pt;}
.x7b{left:482.306667pt;}
.x46{left:485.506655pt;}
.x87{left:490.306667pt;}
.xd{left:499.360000pt;}
.x73{left:512.693333pt;}
.x88{left:518.573333pt;}
.x11{left:523.106655pt;}
.x8{left:546.559988pt;}
.x82{left:563.906667pt;}
.x7e{left:568.173333pt;}
.x7{left:576.173322pt;}
.x79{left:601.800000pt;}
.x89{left:603.666667pt;}
.x5{left:620.999988pt;}
.x27{left:627.666655pt;}
.x16{left:630.600000pt;}
.x7f{left:647.133333pt;}
.xa{left:722.106655pt;}
}




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