
    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_78a1aa99c01f90008ed3e562.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.833008;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_f7aee61e7f8b6a37c11fc566.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903320;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_cc2f08da45b7a4bff6ac32b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_187c06b345832bc6016e8fdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_c45c316bcae54ae4cdf8aa74.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_4abaaff28d695b1eeaedba5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999023;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_1661a93bb6597dfacf18f26f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_29356203b98bf4d2c137401b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_25a28cf6635cea778347ee78.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.809082;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_deea3979098134edf4776932.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873535;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_92637edd026dd9fd11f5055a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_944dab3df39d3acb49adce89.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_141104af44594c8a2225b699.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.669434;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_935968f940d028db88a5f1b9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.856445;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_944fa6ae6e898fd3a75168e3.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0792d541dbc6c56f92a21dbc.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_737c1c76ecd3ccab3665d29a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.833008;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_8c7eaabbfc839909fa118515.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.895996;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_3933c9157ab8d761c4c6b90f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.903320;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_0a85a164a5197009b83878c1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.746582;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_d6a6bd56cd707f277853d754.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.999023;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:ff16;src:url('chunks/assets/font_8f9f579c179988be7e45a84b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.944824;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:ff17;src:url('chunks/assets/font_31974115bcec48faea4c32d3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-60.207600px;}
.v9{vertical-align:-25.974000px;}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.998800px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.v4{vertical-align:25.954800px;}
.v8{vertical-align:39.600000px;}
.v6{vertical-align:43.200000px;}
.ls8{letter-spacing:-10.482000px;}
.lsb{letter-spacing:-5.790000px;}
.ls7{letter-spacing:-4.986000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003120px;}
.ls2{letter-spacing:0.009300px;}
.ls3{letter-spacing:0.011760px;}
.ls0{letter-spacing:0.114000px;}
.lsa{letter-spacing:0.454740px;}
.lsd{letter-spacing:0.463242px;}
.ls11{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.779400px;}
.ls4{letter-spacing:0.780000px;}
.ls10{letter-spacing:1.646526px;}
.lsf{letter-spacing:2.244726px;}
.ls6{letter-spacing:4.416000px;}
.lse{letter-spacing:4.870926px;}
.lsc{letter-spacing:30.023400px;}
.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;}
}
.ws1{word-spacing:-28.896000px;}
.ws88{word-spacing:-24.258000px;}
.ws26{word-spacing:-23.478000px;}
.ws78{word-spacing:-17.820000px;}
.ws6e{word-spacing:-16.272000px;}
.ws0{word-spacing:-14.916000px;}
.ws27{word-spacing:-14.142414px;}
.ws61{word-spacing:-13.687674px;}
.ws4{word-spacing:-13.560000px;}
.ws1e{word-spacing:-13.182000px;}
.ws6{word-spacing:-12.996000px;}
.ws2{word-spacing:-12.204000px;}
.ws74{word-spacing:-11.232000px;}
.ws62{word-spacing:-10.277124px;}
.ws3{word-spacing:-9.486576px;}
.ws50{word-spacing:-9.126000px;}
.ws8a{word-spacing:-8.112000px;}
.wsb4{word-spacing:-8.034000px;}
.ws5{word-spacing:-7.905480px;}
.ws7f{word-spacing:-7.800000px;}
.ws47{word-spacing:-7.488000px;}
.ws44{word-spacing:-7.254000px;}
.ws6b{word-spacing:-7.098000px;}
.ws7b{word-spacing:-6.942000px;}
.wsb5{word-spacing:-6.318000px;}
.wsa3{word-spacing:-5.538000px;}
.wsb7{word-spacing:-5.382000px;}
.ws9{word-spacing:-5.298000px;}
.ws63{word-spacing:-4.914000px;}
.ws8c{word-spacing:-4.836000px;}
.ws6d{word-spacing:-4.602000px;}
.ws35{word-spacing:-4.290000px;}
.wsa4{word-spacing:-4.056000px;}
.wsa0{word-spacing:-3.822000px;}
.ws59{word-spacing:-3.744000px;}
.ws77{word-spacing:-3.630000px;}
.ws43{word-spacing:-3.588000px;}
.wsb3{word-spacing:-3.510000px;}
.ws65{word-spacing:-3.432000px;}
.wsb1{word-spacing:-3.276000px;}
.ws8{word-spacing:-3.252000px;}
.ws31{word-spacing:-3.120000px;}
.wsa1{word-spacing:-2.886000px;}
.ws9d{word-spacing:-2.730000px;}
.ws96{word-spacing:-2.496000px;}
.wsa9{word-spacing:-2.418000px;}
.ws1b{word-spacing:-2.340000px;}
.wsbc{word-spacing:-2.304000px;}
.ws1d{word-spacing:-2.184000px;}
.ws8b{word-spacing:-2.106000px;}
.ws4f{word-spacing:-2.028000px;}
.ws79{word-spacing:-1.950000px;}
.ws75{word-spacing:-1.728000px;}
.ws80{word-spacing:-1.482000px;}
.ws4d{word-spacing:-1.404000px;}
.wsa2{word-spacing:-1.248000px;}
.wsa5{word-spacing:-1.170000px;}
.ws23{word-spacing:-1.092000px;}
.ws40{word-spacing:-0.936000px;}
.ws5f{word-spacing:-0.858000px;}
.ws42{word-spacing:-0.780000px;}
.wsba{word-spacing:-0.720000px;}
.ws36{word-spacing:-0.702000px;}
.ws54{word-spacing:-0.624000px;}
.ws2b{word-spacing:-0.612000px;}
.ws86{word-spacing:-0.546000px;}
.ws85{word-spacing:-0.390000px;}
.ws87{word-spacing:-0.234000px;}
.wsb{word-spacing:-0.210000px;}
.wsa{word-spacing:-0.114000px;}
.wsc{word-spacing:-0.084000px;}
.ws73{word-spacing:-0.072000px;}
.wsd{word-spacing:-0.012000px;}
.ws7{word-spacing:0.000000px;}
.ws4c{word-spacing:0.234000px;}
.ws9b{word-spacing:0.454740px;}
.ws93{word-spacing:0.702000px;}
.ws3c{word-spacing:0.924000px;}
.wsa7{word-spacing:1.092000px;}
.ws83{word-spacing:1.170000px;}
.wsb9{word-spacing:1.248000px;}
.ws7c{word-spacing:1.404000px;}
.ws32{word-spacing:1.482000px;}
.ws18{word-spacing:1.560000px;}
.ws17{word-spacing:1.716000px;}
.ws4e{word-spacing:1.794000px;}
.wsa8{word-spacing:2.028000px;}
.ws64{word-spacing:2.106000px;}
.wsaa{word-spacing:2.184000px;}
.ws5c{word-spacing:2.340000px;}
.ws46{word-spacing:2.418000px;}
.ws2a{word-spacing:2.496000px;}
.ws28{word-spacing:2.544000px;}
.ws29{word-spacing:2.550000px;}
.ws22{word-spacing:2.808000px;}
.ws98{word-spacing:3.042000px;}
.ws60{word-spacing:3.432000px;}
.ws99{word-spacing:3.666000px;}
.ws5d{word-spacing:3.822000px;}
.ws30{word-spacing:3.978000px;}
.wsf{word-spacing:4.260000px;}
.wsb6{word-spacing:4.290000px;}
.ws14{word-spacing:4.368000px;}
.ws12{word-spacing:4.416000px;}
.ws10{word-spacing:4.434000px;}
.wse{word-spacing:4.494000px;}
.ws11{word-spacing:4.506000px;}
.ws13{word-spacing:4.734000px;}
.ws21{word-spacing:5.382000px;}
.ws2d{word-spacing:5.460000px;}
.ws89{word-spacing:5.538000px;}
.ws57{word-spacing:5.694000px;}
.ws3e{word-spacing:6.006000px;}
.ws41{word-spacing:6.084000px;}
.ws9c{word-spacing:6.162000px;}
.ws1f{word-spacing:6.318000px;}
.ws15{word-spacing:6.420000px;}
.ws5b{word-spacing:6.552000px;}
.ws8d{word-spacing:6.630000px;}
.ws3f{word-spacing:6.708000px;}
.ws84{word-spacing:6.786000px;}
.ws92{word-spacing:6.942000px;}
.ws5a{word-spacing:7.098000px;}
.ws91{word-spacing:7.566000px;}
.wsb2{word-spacing:7.722000px;}
.ws20{word-spacing:7.800000px;}
.ws9f{word-spacing:8.268000px;}
.ws1c{word-spacing:8.736000px;}
.wsad{word-spacing:9.360000px;}
.ws69{word-spacing:9.516000px;}
.wsb0{word-spacing:10.062000px;}
.ws37{word-spacing:10.140000px;}
.ws48{word-spacing:10.842000px;}
.ws7e{word-spacing:10.998000px;}
.ws5e{word-spacing:11.466000px;}
.ws6c{word-spacing:11.934000px;}
.ws45{word-spacing:12.090000px;}
.ws34{word-spacing:12.168000px;}
.ws39{word-spacing:12.714000px;}
.ws53{word-spacing:13.338000px;}
.ws90{word-spacing:13.728000px;}
.ws8e{word-spacing:13.884000px;}
.ws24{word-spacing:14.196000px;}
.ws33{word-spacing:14.352000px;}
.ws8f{word-spacing:14.664000px;}
.ws25{word-spacing:14.898000px;}
.ws7a{word-spacing:14.976000px;}
.ws38{word-spacing:15.678000px;}
.ws19{word-spacing:15.834000px;}
.wsac{word-spacing:15.912000px;}
.ws58{word-spacing:16.614000px;}
.ws2c{word-spacing:17.550000px;}
.ws97{word-spacing:17.784000px;}
.ws4a{word-spacing:18.330000px;}
.wsbb{word-spacing:18.360000px;}
.wsb8{word-spacing:18.720000px;}
.ws67{word-spacing:19.578000px;}
.ws3a{word-spacing:19.734000px;}
.ws95{word-spacing:20.046000px;}
.ws82{word-spacing:20.202000px;}
.ws68{word-spacing:20.280000px;}
.ws1a{word-spacing:21.450000px;}
.wsa6{word-spacing:22.308000px;}
.ws66{word-spacing:22.698000px;}
.ws55{word-spacing:22.932000px;}
.ws2e{word-spacing:23.088000px;}
.ws49{word-spacing:23.400000px;}
.ws2f{word-spacing:25.818000px;}
.ws16{word-spacing:26.520000px;}
.ws94{word-spacing:27.846000px;}
.ws7d{word-spacing:28.548000px;}
.ws81{word-spacing:29.250000px;}
.ws9a{word-spacing:29.874000px;}
.ws4b{word-spacing:30.108000px;}
.wsaf{word-spacing:35.178000px;}
.ws9e{word-spacing:35.334000px;}
.wsab{word-spacing:35.880000px;}
.ws56{word-spacing:36.660000px;}
.ws3d{word-spacing:39.078000px;}
.ws6a{word-spacing:44.538000px;}
.wsae{word-spacing:47.970000px;}
.ws3b{word-spacing:57.798000px;}
.ws52{word-spacing:64.818000px;}
.ws51{word-spacing:64.974000px;}
.ws70{word-spacing:70.437600px;}
.ws71{word-spacing:126.906000px;}
.ws72{word-spacing:159.738600px;}
.ws76{word-spacing:159.739200px;}
.ws6f{word-spacing:276.743400px;}
._23{margin-left:-28.626000px;}
._24{margin-left:-22.183200px;}
._6{margin-left:-18.999120px;}
._14{margin-left:-11.146200px;}
._3{margin-left:-9.517848px;}
._15{margin-left:-8.360400px;}
._16{margin-left:-7.355400px;}
._1d{margin-left:-5.896800px;}
._1{margin-left:-4.876200px;}
._2{margin-left:-3.663000px;}
._21{margin-left:-2.656800px;}
._0{margin-left:-1.512000px;}
._1a{width:1.049412px;}
._4{width:2.782560px;}
._5{width:4.260000px;}
._1b{width:5.275800px;}
._f{width:6.822036px;}
._2a{width:7.826148px;}
._22{width:8.845200px;}
._26{width:9.900000px;}
._27{width:10.958400px;}
._17{width:11.977212px;}
._d{width:13.013988px;}
._29{width:14.073588px;}
._18{width:15.319200px;}
._11{width:16.829436px;}
._9{width:17.933994px;}
._a{width:20.070024px;}
._b{width:21.197970px;}
._10{width:22.890036px;}
._12{width:25.889994px;}
._e{width:28.517970px;}
._25{width:32.472000px;}
._28{width:34.646400px;}
._c{width:36.762570px;}
._19{width:40.138800px;}
._1c{width:47.627400px;}
._7{width:56.753970px;}
._8{width:63.774000px;}
._13{width:65.471436px;}
._1e{width:166.624800px;}
._1f{width:324.407400px;}
._20{width:338.034000px;}
.fc3{color:transparent;}
.fc1{color:rgb(43,121,66);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs4{font-size:41.976000px;}
.fs8{font-size:45.474000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.631500px;}
.y1{bottom:78.912450px;}
.y28{bottom:81.487650px;}
.y3{bottom:81.744150px;}
.y27{bottom:109.511850px;}
.y1c2{bottom:127.482300px;}
.y1f8{bottom:129.622500px;}
.y4e{bottom:131.787450px;}
.y26{bottom:132.911850px;}
.y8a{bottom:134.941500px;}
.y1e7{bottom:135.986250px;}
.y246{bottom:138.720450px;}
.y76{bottom:140.239200px;}
.yac{bottom:142.099650px;}
.y21d{bottom:147.679200px;}
.y1c1{bottom:150.882300px;}
.y1f7{bottom:153.022500px;}
.y4d{bottom:155.187450px;}
.y25{bottom:156.311850px;}
.y89{bottom:158.341500px;}
.y1e6{bottom:159.386250px;}
.y245{bottom:160.320300px;}
.y75{bottom:163.639200px;}
.yab{bottom:163.699650px;}
.y21c{bottom:169.279200px;}
.y1f6{bottom:176.422500px;}
.y4c{bottom:178.587450px;}
.y24{bottom:179.711850px;}
.y88{bottom:181.741500px;}
.y244{bottom:181.920450px;}
.y1e5{bottom:182.786250px;}
.yaa{bottom:185.299650px;}
.y74{bottom:187.039200px;}
.y21b{bottom:190.879200px;}
.y1c0{bottom:197.682300px;}
.y1f5{bottom:199.822500px;}
.y4b{bottom:201.987450px;}
.y23{bottom:203.111850px;}
.y87{bottom:205.141500px;}
.y1e4{bottom:206.186250px;}
.ya9{bottom:206.899650px;}
.y73{bottom:210.439200px;}
.y243{bottom:212.024250px;}
.y21a{bottom:220.983150px;}
.y1f4{bottom:223.222500px;}
.y19b{bottom:224.911650px;}
.y22{bottom:226.511850px;}
.y86{bottom:228.541500px;}
.y1e3{bottom:229.586250px;}
.ya8{bottom:232.751550px;}
.y242{bottom:233.624400px;}
.y72{bottom:233.839200px;}
.y4a{bottom:234.147450px;}
.y219{bottom:242.583000px;}
.y96{bottom:245.847600px;}
.y21{bottom:249.911850px;}
.y1bf{bottom:250.975800px;}
.y9b{bottom:252.225600px;}
.ya7{bottom:254.351550px;}
.y19a{bottom:256.711650px;}
.y1e2{bottom:257.238150px;}
.y71{bottom:257.239200px;}
.y49{bottom:257.547450px;}
.y1f3{bottom:263.630250px;}
.y241{bottom:263.728200px;}
.y218{bottom:264.183150px;}
.y123{bottom:266.116950px;}
.y95{bottom:267.447600px;}
.y1be{bottom:267.882300px;}
.y20{bottom:273.311850px;}
.y9a{bottom:273.825600px;}
.y85{bottom:275.341500px;}
.ya6{bottom:275.951550px;}
.y48{bottom:276.447750px;}
.y199{bottom:276.511800px;}
.y1e1{bottom:280.638300px;}
.y9d{bottom:284.625600px;}
.y70{bottom:284.892150px;}
.y240{bottom:285.328350px;}
.y122{bottom:287.716950px;}
.y1bd{bottom:291.282300px;}
.y188{bottom:292.411650px;}
.y217{bottom:294.286950px;}
.y99{bottom:295.425600px;}
.y198{bottom:296.311800px;}
.y1f{bottom:296.711850px;}
.ya5{bottom:297.551550px;}
.y47{bottom:299.847750px;}
.y1e0{bottom:304.038150px;}
.y1a0{bottom:304.411650px;}
.y9c{bottom:306.225600px;}
.y23f{bottom:306.928200px;}
.y1f2{bottom:308.290200px;}
.y6f{bottom:308.292150px;}
.y94{bottom:308.351550px;}
.y121{bottom:309.316950px;}
.y1bc{bottom:314.682300px;}
.y216{bottom:315.887100px;}
.y98{bottom:317.025600px;}
.ya4{bottom:319.151550px;}
.y1e{bottom:320.111850px;}
.y84{bottom:322.142400px;}
.y187{bottom:324.211650px;}
.y46{bottom:327.498750px;}
.y197{bottom:328.111650px;}
.y120{bottom:330.916950px;}
.y1df{bottom:331.690200px;}
.y6e{bottom:331.692150px;}
.y23e{bottom:337.032150px;}
.y215{bottom:337.487100px;}
.y1bb{bottom:338.082300px;}
.y97{bottom:338.625600px;}
.ya3{bottom:340.751550px;}
.y1d{bottom:343.511850px;}
.y186{bottom:344.011800px;}
.y83{bottom:345.542400px;}
.y196{bottom:347.911650px;}
.y45{bottom:350.898750px;}
.y17e{bottom:351.811800px;}
.y11f{bottom:352.516950px;}
.y150{bottom:352.580850px;}
.ye0{bottom:353.083350px;}
.y1de{bottom:355.090200px;}
.y6d{bottom:355.092150px;}
.y18c{bottom:357.811800px;}
.y23d{bottom:358.632150px;}
.y109{bottom:361.191150px;}
.y1ba{bottom:361.482300px;}
.ydc{bottom:361.757250px;}
.ya2{bottom:362.351550px;}
.y185{bottom:363.811800px;}
.y1c{bottom:366.911850px;}
.y214{bottom:367.591050px;}
.y195{bottom:367.711650px;}
.y82{bottom:368.942400px;}
.y17d{bottom:371.611650px;}
.yd8{bottom:372.557400px;}
.y11e{bottom:374.116950px;}
.y14f{bottom:374.180850px;}
.y44{bottom:374.298750px;}
.ydf{bottom:374.683350px;}
.y18b{bottom:377.611650px;}
.y1dd{bottom:378.490200px;}
.y6c{bottom:378.492150px;}
.y23c{bottom:380.232150px;}
.y184{bottom:383.611650px;}
.ya1{bottom:383.951550px;}
.y1b9{bottom:384.882300px;}
.y108{bottom:387.043050px;}
.ydb{bottom:387.609300px;}
.y213{bottom:389.191050px;}
.y1b{bottom:390.311850px;}
.y81{bottom:392.342400px;}
.y17c{bottom:393.511800px;}
.yd7{bottom:394.157250px;}
.y11d{bottom:395.716950px;}
.y14e{bottom:395.780850px;}
.yd5{bottom:396.283350px;}
.y43{bottom:397.698750px;}
.y194{bottom:399.511800px;}
.y1f1{bottom:401.890200px;}
.y6b{bottom:401.892150px;}
.y183{bottom:403.411800px;}
.ya0{bottom:405.551550px;}
.y1dc{bottom:406.142100px;}
.y1b8{bottom:408.282300px;}
.y107{bottom:408.643050px;}
.yda{bottom:409.209300px;}
.y18a{bottom:409.411800px;}
.y23b{bottom:410.336100px;}
.y212{bottom:410.791050px;}
.y1a{bottom:413.711850px;}
.y80{bottom:415.742400px;}
.y11c{bottom:417.316950px;}
.y14d{bottom:417.380850px;}
.yde{bottom:417.883350px;}
.y193{bottom:419.311650px;}
.yd6{bottom:420.009300px;}
.y19f{bottom:423.211650px;}
.y1f0{bottom:425.290200px;}
.y6a{bottom:425.292150px;}
.y9f{bottom:427.151550px;}
.y10d{bottom:428.117100px;}
.y189{bottom:429.211650px;}
.y1db{bottom:429.542250px;}
.y111{bottom:430.243050px;}
.yd9{bottom:430.809300px;}
.y23a{bottom:431.936100px;}
.y106{bottom:434.495100px;}
.y182{bottom:435.211650px;}
.y19{bottom:437.111850px;}
.y42{bottom:438.102750px;}
.yff{bottom:438.917100px;}
.y14c{bottom:438.980850px;}
.y192{bottom:439.111650px;}
.ydd{bottom:439.483350px;}
.y211{bottom:440.895000px;}
.y19e{bottom:443.011800px;}
.y11b{bottom:443.169000px;}
.y7f{bottom:443.393400px;}
.y1ef{bottom:448.690200px;}
.y9e{bottom:448.751550px;}
.y10c{bottom:449.717100px;}
.y110{bottom:451.843050px;}
.y1da{bottom:452.942250px;}
.y69{bottom:452.943150px;}
.y239{bottom:453.536100px;}
.y181{bottom:455.011800px;}
.y1b7{bottom:455.082300px;}
.y105{bottom:456.095100px;}
.y18{bottom:460.512000px;}
.yfe{bottom:460.517100px;}
.y14b{bottom:460.580850px;}
.y210{bottom:462.495000px;}
.yfc{bottom:462.642900px;}
.y19d{bottom:462.811650px;}
.y11a{bottom:464.769000px;}
.y7e{bottom:466.793400px;}
.y191{bottom:470.911800px;}
.y1ee{bottom:472.090200px;}
.y10f{bottom:473.443050px;}
.y180{bottom:474.811650px;}
.y10b{bottom:475.569000px;}
.y1d9{bottom:476.342100px;}
.y68{bottom:476.343150px;}
.y104{bottom:477.695100px;}
.y14a{bottom:482.180850px;}
.y19c{bottom:482.611650px;}
.y238{bottom:483.640050px;}
.y17{bottom:483.912000px;}
.y20f{bottom:484.094850px;}
.y41{bottom:485.031000px;}
.yfd{bottom:486.369000px;}
.y91{bottom:487.763400px;}
.y7d{bottom:490.193400px;}
.y190{bottom:490.711650px;}
.y17f{bottom:494.611650px;}
.y10e{bottom:495.043050px;}
.y10a{bottom:497.169000px;}
.y103{bottom:499.295100px;}
.y1ed{bottom:499.742100px;}
.y67{bottom:499.743150px;}
.y1b6{bottom:501.882300px;}
.y149{bottom:503.780850px;}
.y237{bottom:505.240050px;}
.y20e{bottom:505.694850px;}
.y16{bottom:507.312000px;}
.y119{bottom:507.969000px;}
.y40{bottom:508.431000px;}
.y90{bottom:509.363400px;}
.y18f{bottom:510.511800px;}
.y102{bottom:520.895100px;}
.y93{bottom:522.289350px;}
.y1d8{bottom:523.142100px;}
.y66{bottom:523.143150px;}
.y1b5{bottom:525.282300px;}
.y148{bottom:525.380850px;}
.y118{bottom:529.569000px;}
.y8f{bottom:535.215450px;}
.y236{bottom:535.344000px;}
.y20d{bottom:535.798800px;}
.y18e{bottom:542.311650px;}
.y101{bottom:542.495100px;}
.y92{bottom:543.889350px;}
.y1ec{bottom:546.542250px;}
.y65{bottom:546.543150px;}
.y147{bottom:546.980850px;}
.y15{bottom:547.715850px;}
.y1b4{bottom:548.682300px;}
.y3f{bottom:548.710650px;}
.y117{bottom:551.169000px;}
.y8e{bottom:556.815450px;}
.y235{bottom:556.944000px;}
.y20c{bottom:557.398800px;}
.y18d{bottom:562.111650px;}
.y100{bottom:564.095100px;}
.yd4{bottom:568.580700px;}
.y146{bottom:568.580850px;}
.y1d7{bottom:569.942250px;}
.y64{bottom:569.943150px;}
.y1b3{bottom:572.082300px;}
.y116{bottom:572.769000px;}
.y8d{bottom:578.415450px;}
.y234{bottom:578.544000px;}
.y20b{bottom:578.998800px;}
.yd3{bottom:590.180700px;}
.y145{bottom:590.180850px;}
.y1d6{bottom:593.342100px;}
.y63{bottom:593.343150px;}
.y3e{bottom:593.375400px;}
.y115{bottom:594.369000px;}
.y1b2{bottom:595.482300px;}
.y17b{bottom:599.635950px;}
.y20a{bottom:600.598800px;}
.y14{bottom:604.174500px;}
.y233{bottom:608.647950px;}
.y131{bottom:609.654900px;}
.yd2{bottom:611.780700px;}
.y144{bottom:611.780850px;}
.y114{bottom:615.969000px;}
.y1d5{bottom:616.742100px;}
.y62{bottom:616.743150px;}
.y3d{bottom:616.775400px;}
.y1b1{bottom:618.882300px;}
.y17a{bottom:619.435950px;}
.y12{bottom:622.174500px;}
.y12b{bottom:624.706800px;}
.y13{bottom:627.169500px;}
.y232{bottom:630.247950px;}
.y209{bottom:630.702750px;}
.y130{bottom:631.254750px;}
.yd1{bottom:633.380700px;}
.y143{bottom:633.380850px;}
.y8c{bottom:634.446150px;}
.y133{bottom:635.506800px;}
.y113{bottom:637.569000px;}
.y179{bottom:639.235950px;}
.y1d4{bottom:640.142100px;}
.y11{bottom:640.174500px;}
.y3c{bottom:640.175400px;}
.y127{bottom:644.180850px;}
.y61{bottom:644.394150px;}
.y12a{bottom:646.306800px;}
.y1b0{bottom:646.534350px;}
.y231{bottom:651.847950px;}
.y208{bottom:652.302750px;}
.yd0{bottom:654.980700px;}
.y142{bottom:654.980850px;}
.y12f{bottom:657.106800px;}
.y178{bottom:659.035950px;}
.y112{bottom:659.169000px;}
.y1d3{bottom:663.542250px;}
.y3b{bottom:663.575400px;}
.y126{bottom:665.780850px;}
.y60{bottom:667.794150px;}
.y124{bottom:667.906800px;}
.y1af{bottom:669.934350px;}
.y10{bottom:671.179500px;}
.ycf{bottom:676.580700px;}
.y12e{bottom:678.706800px;}
.y8b{bottom:679.106100px;}
.y141{bottom:680.832750px;}
.y230{bottom:681.951900px;}
.y207{bottom:682.406700px;}
.y132{bottom:682.958700px;}
.y1d2{bottom:686.942250px;}
.y3a{bottom:686.975400px;}
.y129{bottom:689.506800px;}
.y177{bottom:690.835950px;}
.y5f{bottom:691.194150px;}
.y125{bottom:691.632750px;}
.yf{bottom:694.174500px;}
.yce{bottom:698.180700px;}
.y140{bottom:702.432750px;}
.y22f{bottom:703.551900px;}
.y206{bottom:704.006700px;}
.y12d{bottom:704.558700px;}
.ybf{bottom:704.728800px;}
.y1d1{bottom:710.342100px;}
.y39{bottom:710.375400px;}
.y176{bottom:710.635950px;}
.y128{bottom:711.106800px;}
.ye{bottom:712.174500px;}
.y5e{bottom:714.594150px;}
.y1ae{bottom:716.734350px;}
.ycd{bottom:719.780700px;}
.y13f{bottom:724.032750px;}
.y22e{bottom:725.151900px;}
.y12c{bottom:726.158700px;}
.y163{bottom:728.335950px;}
.y175{bottom:730.435950px;}
.ybe{bottom:730.580850px;}
.y1d0{bottom:733.742100px;}
.y38{bottom:733.775400px;}
.y205{bottom:734.110650px;}
.yd{bottom:736.174500px;}
.y5d{bottom:737.994150px;}
.yb8{bottom:739.254750px;}
.ycc{bottom:741.380700px;}
.y13e{bottom:745.632750px;}
.yec{bottom:745.802700px;}
.y167{bottom:748.135950px;}
.y174{bottom:750.235950px;}
.ybd{bottom:752.180850px;}
.y22d{bottom:755.255850px;}
.yc{bottom:755.524500px;}
.y204{bottom:755.710650px;}
.y1cf{bottom:757.142100px;}
.y37{bottom:757.175400px;}
.y162{bottom:760.135950px;}
.yb5{bottom:760.854750px;}
.y5c{bottom:761.394150px;}
.ycb{bottom:762.980700px;}
.y1ad{bottom:763.534350px;}
.y15d{bottom:764.035800px;}
.y169{bottom:764.035950px;}
.yc0{bottom:765.106800px;}
.y13d{bottom:767.232750px;}
.y166{bottom:767.935950px;}
.y173{bottom:770.035950px;}
.yeb{bottom:771.654750px;}
.y22c{bottom:776.855850px;}
.ybc{bottom:778.032750px;}
.y161{bottom:779.935950px;}
.yf1{bottom:780.328800px;}
.y1ce{bottom:780.542250px;}
.y36{bottom:780.575400px;}
.yb7{bottom:782.454750px;}
.y15c{bottom:783.835950px;}
.yca{bottom:784.580700px;}
.y5b{bottom:784.794150px;}
.y203{bottom:785.814600px;}
.yb4{bottom:786.706800px;}
.y1ac{bottom:786.934350px;}
.y13c{bottom:788.832750px;}
.y15a{bottom:789.835950px;}
.yea{bottom:793.254750px;}
.y168{bottom:795.835950px;}
.y22b{bottom:798.455850px;}
.ybb{bottom:799.632750px;}
.y165{bottom:799.735950px;}
.yf0{bottom:801.928650px;}
.y35{bottom:803.975400px;}
.yf5{bottom:804.054750px;}
.yfb{bottom:806.180700px;}
.yc9{bottom:806.180850px;}
.y24b{bottom:806.959650px;}
.y202{bottom:807.414600px;}
.y5a{bottom:808.194150px;}
.yb6{bottom:808.306800px;}
.y1ab{bottom:810.334200px;}
.y13b{bottom:810.432750px;}
.y160{bottom:811.735800px;}
.ye6{bottom:814.854900px;}
.y15b{bottom:815.635950px;}
.yba{bottom:821.232750px;}
.y172{bottom:821.635950px;}
.ye3{bottom:825.654750px;}
.yb{bottom:826.873500px;}
.y34{bottom:827.375400px;}
.yef{bottom:827.780700px;}
.yc8{bottom:827.780850px;}
.y22a{bottom:828.559800px;}
.y201{bottom:829.014600px;}
.yf4{bottom:829.906650px;}
.y15f{bottom:831.535800px;}
.y164{bottom:831.535950px;}
.y1cd{bottom:831.594150px;}
.y13a{bottom:832.032750px;}
.y1aa{bottom:833.734350px;}
.ye5{bottom:836.454750px;}
.y171{bottom:841.435950px;}
.ya{bottom:841.873500px;}
.yb9{bottom:842.832750px;}
.yc7{bottom:849.380700px;}
.y229{bottom:850.159800px;}
.y200{bottom:850.614600px;}
.y33{bottom:850.775400px;}
.y15e{bottom:851.335950px;}
.yf3{bottom:851.506650px;}
.y139{bottom:853.632750px;}
.y59{bottom:854.994150px;}
.y1eb{bottom:854.994300px;}
.y24a{bottom:858.663750px;}
.y170{bottom:861.235950px;}
.y1a9{bottom:861.386250px;}
.ye4{bottom:862.306800px;}
.yfa{bottom:870.980700px;}
.yc6{bottom:870.980850px;}
.y228{bottom:871.759800px;}
.yf2{bottom:873.106650px;}
.y32{bottom:874.175400px;}
.yee{bottom:875.232750px;}
.y1cc{bottom:878.394150px;}
.y249{bottom:880.263750px;}
.y1ff{bottom:880.718550px;}
.y16f{bottom:881.035950px;}
.ye9{bottom:883.906800px;}
.y1a8{bottom:884.786250px;}
.y1ea{bottom:884.887650px;}
.y9{bottom:889.303500px;}
.yf9{bottom:892.580700px;}
.yc5{bottom:892.580850px;}
.yed{bottom:896.832600px;}
.y138{bottom:896.832750px;}
.y31{bottom:897.575400px;}
.y16e{bottom:900.835950px;}
.y1cb{bottom:901.794150px;}
.y1e9{bottom:901.794300px;}
.y58{bottom:901.795200px;}
.y227{bottom:901.863600px;}
.y1fe{bottom:902.318550px;}
.y1a7{bottom:908.186400px;}
.ye8{bottom:909.758850px;}
.yf8{bottom:914.180700px;}
.yc4{bottom:914.180850px;}
.y8{bottom:916.303500px;}
.y137{bottom:918.432750px;}
.y16d{bottom:920.635950px;}
.y30{bottom:920.975400px;}
.y226{bottom:923.463750px;}
.y1ca{bottom:925.194150px;}
.y57{bottom:925.195200px;}
.ye7{bottom:931.358700px;}
.y248{bottom:931.967700px;}
.y1fd{bottom:932.422500px;}
.y7c{bottom:933.698250px;}
.yf7{bottom:935.780700px;}
.yc3{bottom:935.780850px;}
.y1a6{bottom:935.838300px;}
.y136{bottom:940.032750px;}
.y16c{bottom:940.435950px;}
.y2f{bottom:944.375400px;}
.y1c9{bottom:948.594150px;}
.y56{bottom:948.595200px;}
.y1e8{bottom:952.846200px;}
.y225{bottom:953.567700px;}
.y1fc{bottom:954.022500px;}
.y7{bottom:956.059500px;}
.yc2{bottom:957.380700px;}
.y1a5{bottom:959.238300px;}
.y16b{bottom:960.235950px;}
.y135{bottom:961.632750px;}
.y2e{bottom:967.775400px;}
.y224{bottom:975.167700px;}
.y1fb{bottom:975.622500px;}
.y1c8{bottom:976.246200px;}
.y55{bottom:976.247250px;}
.yf6{bottom:978.980700px;}
.yc1{bottom:978.980850px;}
.y16a{bottom:980.035950px;}
.y7b{bottom:980.498100px;}
.y1a4{bottom:982.638300px;}
.y6{bottom:983.059500px;}
.y134{bottom:983.232750px;}
.y223{bottom:996.767700px;}
.y1fa{bottom:997.222650px;}
.y1c7{bottom:999.646200px;}
.y54{bottom:999.647250px;}
.y7a{bottom:1003.898100px;}
.y247{bottom:1005.271500px;}
.y1a3{bottom:1006.038300px;}
.y2d{bottom:1012.430400px;}
.y157{bottom:1017.560250px;}
.yb1{bottom:1017.992700px;}
.y1c6{bottom:1023.046200px;}
.y53{bottom:1023.047250px;}
.y222{bottom:1026.871650px;}
.y79{bottom:1027.298100px;}
.y156{bottom:1039.160100px;}
.yb0{bottom:1039.592700px;}
.y1f9{bottom:1044.334350px;}
.y1c5{bottom:1046.446200px;}
.y52{bottom:1046.447250px;}
.y221{bottom:1048.471650px;}
.y159{bottom:1049.960100px;}
.ye2{bottom:1050.392700px;}
.y78{bottom:1050.698100px;}
.y152{bottom:1052.086200px;}
.yb3{bottom:1052.518650px;}
.y1a2{bottom:1052.838300px;}
.y2c{bottom:1057.087350px;}
.y155{bottom:1065.012150px;}
.yaf{bottom:1065.444600px;}
.y1c4{bottom:1069.846200px;}
.y51{bottom:1069.847250px;}
.y151{bottom:1073.686200px;}
.y77{bottom:1074.098100px;}
.yb2{bottom:1074.118650px;}
.y158{bottom:1075.812150px;}
.y1a1{bottom:1076.238300px;}
.ye1{bottom:1076.244750px;}
.y220{bottom:1078.575600px;}
.y154{bottom:1086.612150px;}
.yae{bottom:1087.044600px;}
.y2b{bottom:1088.992500px;}
.y50{bottom:1097.498100px;}
.y1c3{bottom:1097.498250px;}
.y21f{bottom:1100.175600px;}
.y153{bottom:1108.212150px;}
.yad{bottom:1108.644600px;}
.y5{bottom:1114.759200px;}
.y2a{bottom:1120.897500px;}
.y4f{bottom:1120.898100px;}
.y21e{bottom:1121.775600px;}
.y4{bottom:1171.798350px;}
.y29{bottom:1171.798500px;}
.h2{height:16.483500px;}
.hb{height:29.502422px;}
.h24{height:35.926236px;}
.h9{height:39.208008px;}
.hd{height:43.564453px;}
.h3{height:44.534180px;}
.h6{height:47.437500px;}
.h5{height:47.920898px;}
.h21{height:48.049805px;}
.h20{height:48.082031px;}
.hc{height:49.482422px;}
.h1b{height:50.062500px;}
.h1e{height:51.679688px;}
.h4{height:52.277344px;}
.ha{height:54.105258px;}
.h1a{height:54.234375px;}
.h19{height:54.430664px;}
.h17{height:57.509766px;}
.h18{height:58.990899px;}
.h1f{height:59.378906px;}
.h11{height:61.622447px;}
.hf{height:61.623047px;}
.h13{height:61.882236px;}
.h16{height:61.892436px;}
.h15{height:61.896036px;}
.h25{height:61.899636px;}
.h14{height:61.900236px;}
.h26{height:61.900836px;}
.h23{height:66.023438px;}
.he{height:71.525391px;}
.h8{height:75.843750px;}
.h12{height:79.621847px;}
.h22{height:87.682031px;}
.h7{height:88.031250px;}
.h1d{height:93.262500px;}
.h1c{height:136.462500px;}
.h10{height:1181.347350px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:356.805000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:120.801300px;}
.x5{left:126.655500px;}
.xe{left:130.383750px;}
.x7{left:139.464450px;}
.x8{left:148.815000px;}
.x9{left:152.965500px;}
.xb{left:205.267950px;}
.x17{left:211.839150px;}
.x27{left:214.930950px;}
.x11{left:217.270350px;}
.x28{left:222.729750px;}
.x18{left:324.926700px;}
.xc{left:327.493650px;}
.x2b{left:329.332350px;}
.x12{left:330.357750px;}
.x2c{left:332.067600px;}
.x2d{left:344.007600px;}
.x2a{left:349.038900px;}
.x1{left:356.361000px;}
.x29{left:363.718200px;}
.x13{left:423.262800px;}
.x19{left:428.694000px;}
.xf{left:430.915500px;}
.x30{left:432.610500px;}
.x2f{left:446.367150px;}
.x2e{left:450.032850px;}
.xd{left:521.174700px;}
.x14{left:537.072900px;}
.x1a{left:542.504100px;}
.x32{left:544.463400px;}
.x33{left:547.206750px;}
.x37{left:548.608650px;}
.x31{left:550.429350px;}
.x36{left:552.717450px;}
.x38{left:559.299750px;}
.x39{left:560.512350px;}
.x3{left:562.322850px;}
.x6{left:567.832500px;}
.x34{left:569.221500px;}
.x35{left:572.891400px;}
.x4{left:617.718300px;}
.x10{left:628.357200px;}
.x15{left:652.463550px;}
.x3b{left:658.139700px;}
.x1c{left:659.505300px;}
.x1b{left:661.809600px;}
.x1d{left:663.638400px;}
.x1f{left:665.016150px;}
.x21{left:667.755300px;}
.x25{left:669.149100px;}
.x1e{left:672.355650px;}
.x3c{left:673.785750px;}
.x23{left:675.107100px;}
.x3a{left:676.947900px;}
.x26{left:685.197900px;}
.x20{left:688.412550px;}
.x24{left:696.199350px;}
.x22{left:698.954700px;}
.xa{left:717.848400px;}
.x2{left:733.823250px;}
@media print{
.v7{vertical-align:-53.517867pt;}
.v9{vertical-align:-23.088000pt;}
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.998933pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.v4{vertical-align:23.070933pt;}
.v8{vertical-align:35.200000pt;}
.v6{vertical-align:38.400000pt;}
.ls8{letter-spacing:-9.317333pt;}
.lsb{letter-spacing:-5.146667pt;}
.ls7{letter-spacing:-4.432000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002773pt;}
.ls2{letter-spacing:0.008267pt;}
.ls3{letter-spacing:0.010453pt;}
.ls0{letter-spacing:0.101333pt;}
.lsa{letter-spacing:0.404213pt;}
.lsd{letter-spacing:0.411771pt;}
.ls11{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.692800pt;}
.ls4{letter-spacing:0.693333pt;}
.ls10{letter-spacing:1.463579pt;}
.lsf{letter-spacing:1.995312pt;}
.ls6{letter-spacing:3.925333pt;}
.lse{letter-spacing:4.329712pt;}
.lsc{letter-spacing:26.687467pt;}
.ws1{word-spacing:-25.685333pt;}
.ws88{word-spacing:-21.562667pt;}
.ws26{word-spacing:-20.869333pt;}
.ws78{word-spacing:-15.840000pt;}
.ws6e{word-spacing:-14.464000pt;}
.ws0{word-spacing:-13.258667pt;}
.ws27{word-spacing:-12.571035pt;}
.ws61{word-spacing:-12.166821pt;}
.ws4{word-spacing:-12.053333pt;}
.ws1e{word-spacing:-11.717333pt;}
.ws6{word-spacing:-11.552000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws74{word-spacing:-9.984000pt;}
.ws62{word-spacing:-9.135221pt;}
.ws3{word-spacing:-8.432512pt;}
.ws50{word-spacing:-8.112000pt;}
.ws8a{word-spacing:-7.210667pt;}
.wsb4{word-spacing:-7.141333pt;}
.ws5{word-spacing:-7.027093pt;}
.ws7f{word-spacing:-6.933333pt;}
.ws47{word-spacing:-6.656000pt;}
.ws44{word-spacing:-6.448000pt;}
.ws6b{word-spacing:-6.309333pt;}
.ws7b{word-spacing:-6.170667pt;}
.wsb5{word-spacing:-5.616000pt;}
.wsa3{word-spacing:-4.922667pt;}
.wsb7{word-spacing:-4.784000pt;}
.ws9{word-spacing:-4.709333pt;}
.ws63{word-spacing:-4.368000pt;}
.ws8c{word-spacing:-4.298667pt;}
.ws6d{word-spacing:-4.090667pt;}
.ws35{word-spacing:-3.813333pt;}
.wsa4{word-spacing:-3.605333pt;}
.wsa0{word-spacing:-3.397333pt;}
.ws59{word-spacing:-3.328000pt;}
.ws77{word-spacing:-3.226667pt;}
.ws43{word-spacing:-3.189333pt;}
.wsb3{word-spacing:-3.120000pt;}
.ws65{word-spacing:-3.050667pt;}
.wsb1{word-spacing:-2.912000pt;}
.ws8{word-spacing:-2.890667pt;}
.ws31{word-spacing:-2.773333pt;}
.wsa1{word-spacing:-2.565333pt;}
.ws9d{word-spacing:-2.426667pt;}
.ws96{word-spacing:-2.218667pt;}
.wsa9{word-spacing:-2.149333pt;}
.ws1b{word-spacing:-2.080000pt;}
.wsbc{word-spacing:-2.048000pt;}
.ws1d{word-spacing:-1.941333pt;}
.ws8b{word-spacing:-1.872000pt;}
.ws4f{word-spacing:-1.802667pt;}
.ws79{word-spacing:-1.733333pt;}
.ws75{word-spacing:-1.536000pt;}
.ws80{word-spacing:-1.317333pt;}
.ws4d{word-spacing:-1.248000pt;}
.wsa2{word-spacing:-1.109333pt;}
.wsa5{word-spacing:-1.040000pt;}
.ws23{word-spacing:-0.970667pt;}
.ws40{word-spacing:-0.832000pt;}
.ws5f{word-spacing:-0.762667pt;}
.ws42{word-spacing:-0.693333pt;}
.wsba{word-spacing:-0.640000pt;}
.ws36{word-spacing:-0.624000pt;}
.ws54{word-spacing:-0.554667pt;}
.ws2b{word-spacing:-0.544000pt;}
.ws86{word-spacing:-0.485333pt;}
.ws85{word-spacing:-0.346667pt;}
.ws87{word-spacing:-0.208000pt;}
.wsb{word-spacing:-0.186667pt;}
.wsa{word-spacing:-0.101333pt;}
.wsc{word-spacing:-0.074667pt;}
.ws73{word-spacing:-0.064000pt;}
.wsd{word-spacing:-0.010667pt;}
.ws7{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.208000pt;}
.ws9b{word-spacing:0.404213pt;}
.ws93{word-spacing:0.624000pt;}
.ws3c{word-spacing:0.821333pt;}
.wsa7{word-spacing:0.970667pt;}
.ws83{word-spacing:1.040000pt;}
.wsb9{word-spacing:1.109333pt;}
.ws7c{word-spacing:1.248000pt;}
.ws32{word-spacing:1.317333pt;}
.ws18{word-spacing:1.386667pt;}
.ws17{word-spacing:1.525333pt;}
.ws4e{word-spacing:1.594667pt;}
.wsa8{word-spacing:1.802667pt;}
.ws64{word-spacing:1.872000pt;}
.wsaa{word-spacing:1.941333pt;}
.ws5c{word-spacing:2.080000pt;}
.ws46{word-spacing:2.149333pt;}
.ws2a{word-spacing:2.218667pt;}
.ws28{word-spacing:2.261333pt;}
.ws29{word-spacing:2.266667pt;}
.ws22{word-spacing:2.496000pt;}
.ws98{word-spacing:2.704000pt;}
.ws60{word-spacing:3.050667pt;}
.ws99{word-spacing:3.258667pt;}
.ws5d{word-spacing:3.397333pt;}
.ws30{word-spacing:3.536000pt;}
.wsf{word-spacing:3.786667pt;}
.wsb6{word-spacing:3.813333pt;}
.ws14{word-spacing:3.882667pt;}
.ws12{word-spacing:3.925333pt;}
.ws10{word-spacing:3.941333pt;}
.wse{word-spacing:3.994667pt;}
.ws11{word-spacing:4.005333pt;}
.ws13{word-spacing:4.208000pt;}
.ws21{word-spacing:4.784000pt;}
.ws2d{word-spacing:4.853333pt;}
.ws89{word-spacing:4.922667pt;}
.ws57{word-spacing:5.061333pt;}
.ws3e{word-spacing:5.338667pt;}
.ws41{word-spacing:5.408000pt;}
.ws9c{word-spacing:5.477333pt;}
.ws1f{word-spacing:5.616000pt;}
.ws15{word-spacing:5.706667pt;}
.ws5b{word-spacing:5.824000pt;}
.ws8d{word-spacing:5.893333pt;}
.ws3f{word-spacing:5.962667pt;}
.ws84{word-spacing:6.032000pt;}
.ws92{word-spacing:6.170667pt;}
.ws5a{word-spacing:6.309333pt;}
.ws91{word-spacing:6.725333pt;}
.wsb2{word-spacing:6.864000pt;}
.ws20{word-spacing:6.933333pt;}
.ws9f{word-spacing:7.349333pt;}
.ws1c{word-spacing:7.765333pt;}
.wsad{word-spacing:8.320000pt;}
.ws69{word-spacing:8.458667pt;}
.wsb0{word-spacing:8.944000pt;}
.ws37{word-spacing:9.013333pt;}
.ws48{word-spacing:9.637333pt;}
.ws7e{word-spacing:9.776000pt;}
.ws5e{word-spacing:10.192000pt;}
.ws6c{word-spacing:10.608000pt;}
.ws45{word-spacing:10.746667pt;}
.ws34{word-spacing:10.816000pt;}
.ws39{word-spacing:11.301333pt;}
.ws53{word-spacing:11.856000pt;}
.ws90{word-spacing:12.202667pt;}
.ws8e{word-spacing:12.341333pt;}
.ws24{word-spacing:12.618667pt;}
.ws33{word-spacing:12.757333pt;}
.ws8f{word-spacing:13.034667pt;}
.ws25{word-spacing:13.242667pt;}
.ws7a{word-spacing:13.312000pt;}
.ws38{word-spacing:13.936000pt;}
.ws19{word-spacing:14.074667pt;}
.wsac{word-spacing:14.144000pt;}
.ws58{word-spacing:14.768000pt;}
.ws2c{word-spacing:15.600000pt;}
.ws97{word-spacing:15.808000pt;}
.ws4a{word-spacing:16.293333pt;}
.wsbb{word-spacing:16.320000pt;}
.wsb8{word-spacing:16.640000pt;}
.ws67{word-spacing:17.402667pt;}
.ws3a{word-spacing:17.541333pt;}
.ws95{word-spacing:17.818667pt;}
.ws82{word-spacing:17.957333pt;}
.ws68{word-spacing:18.026667pt;}
.ws1a{word-spacing:19.066667pt;}
.wsa6{word-spacing:19.829333pt;}
.ws66{word-spacing:20.176000pt;}
.ws55{word-spacing:20.384000pt;}
.ws2e{word-spacing:20.522667pt;}
.ws49{word-spacing:20.800000pt;}
.ws2f{word-spacing:22.949333pt;}
.ws16{word-spacing:23.573333pt;}
.ws94{word-spacing:24.752000pt;}
.ws7d{word-spacing:25.376000pt;}
.ws81{word-spacing:26.000000pt;}
.ws9a{word-spacing:26.554667pt;}
.ws4b{word-spacing:26.762667pt;}
.wsaf{word-spacing:31.269333pt;}
.ws9e{word-spacing:31.408000pt;}
.wsab{word-spacing:31.893333pt;}
.ws56{word-spacing:32.586667pt;}
.ws3d{word-spacing:34.736000pt;}
.ws6a{word-spacing:39.589333pt;}
.wsae{word-spacing:42.640000pt;}
.ws3b{word-spacing:51.376000pt;}
.ws52{word-spacing:57.616000pt;}
.ws51{word-spacing:57.754667pt;}
.ws70{word-spacing:62.611200pt;}
.ws71{word-spacing:112.805333pt;}
.ws72{word-spacing:141.989867pt;}
.ws76{word-spacing:141.990400pt;}
.ws6f{word-spacing:245.994133pt;}
._23{margin-left:-25.445333pt;}
._24{margin-left:-19.718400pt;}
._6{margin-left:-16.888107pt;}
._14{margin-left:-9.907733pt;}
._3{margin-left:-8.460309pt;}
._15{margin-left:-7.431467pt;}
._16{margin-left:-6.538133pt;}
._1d{margin-left:-5.241600pt;}
._1{margin-left:-4.334400pt;}
._2{margin-left:-3.256000pt;}
._21{margin-left:-2.361600pt;}
._0{margin-left:-1.344000pt;}
._1a{width:0.932811pt;}
._4{width:2.473387pt;}
._5{width:3.786667pt;}
._1b{width:4.689600pt;}
._f{width:6.064032pt;}
._2a{width:6.956576pt;}
._22{width:7.862400pt;}
._26{width:8.800000pt;}
._27{width:9.740800pt;}
._17{width:10.646411pt;}
._d{width:11.567989pt;}
._29{width:12.509856pt;}
._18{width:13.617067pt;}
._11{width:14.959499pt;}
._9{width:15.941328pt;}
._a{width:17.840021pt;}
._b{width:18.842640pt;}
._10{width:20.346699pt;}
._12{width:23.013328pt;}
._e{width:25.349307pt;}
._25{width:28.864000pt;}
._28{width:30.796800pt;}
._c{width:32.677840pt;}
._19{width:35.678933pt;}
._1c{width:42.335467pt;}
._7{width:50.447973pt;}
._8{width:56.688000pt;}
._13{width:58.196832pt;}
._1e{width:148.110933pt;}
._1f{width:288.362133pt;}
._20{width:300.474667pt;}
.fs5{font-size:31.093333pt;}
.fs4{font-size:37.312000pt;}
.fs8{font-size:40.421333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.228000pt;}
.y1{bottom:70.144400pt;}
.y28{bottom:72.433467pt;}
.y3{bottom:72.661467pt;}
.y27{bottom:97.343867pt;}
.y1c2{bottom:113.317600pt;}
.y1f8{bottom:115.220000pt;}
.y4e{bottom:117.144400pt;}
.y26{bottom:118.143867pt;}
.y8a{bottom:119.948000pt;}
.y1e7{bottom:120.876667pt;}
.y246{bottom:123.307067pt;}
.y76{bottom:124.657067pt;}
.yac{bottom:126.310800pt;}
.y21d{bottom:131.270400pt;}
.y1c1{bottom:134.117600pt;}
.y1f7{bottom:136.020000pt;}
.y4d{bottom:137.944400pt;}
.y25{bottom:138.943867pt;}
.y89{bottom:140.748000pt;}
.y1e6{bottom:141.676667pt;}
.y245{bottom:142.506933pt;}
.y75{bottom:145.457067pt;}
.yab{bottom:145.510800pt;}
.y21c{bottom:150.470400pt;}
.y1f6{bottom:156.820000pt;}
.y4c{bottom:158.744400pt;}
.y24{bottom:159.743867pt;}
.y88{bottom:161.548000pt;}
.y244{bottom:161.707067pt;}
.y1e5{bottom:162.476667pt;}
.yaa{bottom:164.710800pt;}
.y74{bottom:166.257067pt;}
.y21b{bottom:169.670400pt;}
.y1c0{bottom:175.717600pt;}
.y1f5{bottom:177.620000pt;}
.y4b{bottom:179.544400pt;}
.y23{bottom:180.543867pt;}
.y87{bottom:182.348000pt;}
.y1e4{bottom:183.276667pt;}
.ya9{bottom:183.910800pt;}
.y73{bottom:187.057067pt;}
.y243{bottom:188.466000pt;}
.y21a{bottom:196.429467pt;}
.y1f4{bottom:198.420000pt;}
.y19b{bottom:199.921467pt;}
.y22{bottom:201.343867pt;}
.y86{bottom:203.148000pt;}
.y1e3{bottom:204.076667pt;}
.ya8{bottom:206.890267pt;}
.y242{bottom:207.666133pt;}
.y72{bottom:207.857067pt;}
.y4a{bottom:208.131067pt;}
.y219{bottom:215.629333pt;}
.y96{bottom:218.531200pt;}
.y21{bottom:222.143867pt;}
.y1bf{bottom:223.089600pt;}
.y9b{bottom:224.200533pt;}
.ya7{bottom:226.090267pt;}
.y19a{bottom:228.188133pt;}
.y1e2{bottom:228.656133pt;}
.y71{bottom:228.657067pt;}
.y49{bottom:228.931067pt;}
.y1f3{bottom:234.338000pt;}
.y241{bottom:234.425067pt;}
.y218{bottom:234.829467pt;}
.y123{bottom:236.548400pt;}
.y95{bottom:237.731200pt;}
.y1be{bottom:238.117600pt;}
.y20{bottom:242.943867pt;}
.y9a{bottom:243.400533pt;}
.y85{bottom:244.748000pt;}
.ya6{bottom:245.290267pt;}
.y48{bottom:245.731333pt;}
.y199{bottom:245.788267pt;}
.y1e1{bottom:249.456267pt;}
.y9d{bottom:253.000533pt;}
.y70{bottom:253.237467pt;}
.y240{bottom:253.625200pt;}
.y122{bottom:255.748400pt;}
.y1bd{bottom:258.917600pt;}
.y188{bottom:259.921467pt;}
.y217{bottom:261.588400pt;}
.y99{bottom:262.600533pt;}
.y198{bottom:263.388267pt;}
.y1f{bottom:263.743867pt;}
.ya5{bottom:264.490267pt;}
.y47{bottom:266.531333pt;}
.y1e0{bottom:270.256133pt;}
.y1a0{bottom:270.588133pt;}
.y9c{bottom:272.200533pt;}
.y23f{bottom:272.825067pt;}
.y1f2{bottom:274.035733pt;}
.y6f{bottom:274.037467pt;}
.y94{bottom:274.090267pt;}
.y121{bottom:274.948400pt;}
.y1bc{bottom:279.717600pt;}
.y216{bottom:280.788533pt;}
.y98{bottom:281.800533pt;}
.ya4{bottom:283.690267pt;}
.y1e{bottom:284.543867pt;}
.y84{bottom:286.348800pt;}
.y187{bottom:288.188133pt;}
.y46{bottom:291.110000pt;}
.y197{bottom:291.654800pt;}
.y120{bottom:294.148400pt;}
.y1df{bottom:294.835733pt;}
.y6e{bottom:294.837467pt;}
.y23e{bottom:299.584133pt;}
.y215{bottom:299.988533pt;}
.y1bb{bottom:300.517600pt;}
.y97{bottom:301.000533pt;}
.ya3{bottom:302.890267pt;}
.y1d{bottom:305.343867pt;}
.y186{bottom:305.788267pt;}
.y83{bottom:307.148800pt;}
.y196{bottom:309.254800pt;}
.y45{bottom:311.910000pt;}
.y17e{bottom:312.721600pt;}
.y11f{bottom:313.348400pt;}
.y150{bottom:313.405200pt;}
.ye0{bottom:313.851867pt;}
.y1de{bottom:315.635733pt;}
.y6d{bottom:315.637467pt;}
.y18c{bottom:318.054933pt;}
.y23d{bottom:318.784133pt;}
.y109{bottom:321.058800pt;}
.y1ba{bottom:321.317600pt;}
.ydc{bottom:321.562000pt;}
.ya2{bottom:322.090267pt;}
.y185{bottom:323.388267pt;}
.y1c{bottom:326.143867pt;}
.y214{bottom:326.747600pt;}
.y195{bottom:326.854800pt;}
.y82{bottom:327.948800pt;}
.y17d{bottom:330.321467pt;}
.yd8{bottom:331.162133pt;}
.y11e{bottom:332.548400pt;}
.y14f{bottom:332.605200pt;}
.y44{bottom:332.710000pt;}
.ydf{bottom:333.051867pt;}
.y18b{bottom:335.654800pt;}
.y1dd{bottom:336.435733pt;}
.y6c{bottom:336.437467pt;}
.y23c{bottom:337.984133pt;}
.y184{bottom:340.988133pt;}
.ya1{bottom:341.290267pt;}
.y1b9{bottom:342.117600pt;}
.y108{bottom:344.038267pt;}
.ydb{bottom:344.541600pt;}
.y213{bottom:345.947600pt;}
.y1b{bottom:346.943867pt;}
.y81{bottom:348.748800pt;}
.y17c{bottom:349.788267pt;}
.yd7{bottom:350.362000pt;}
.y11d{bottom:351.748400pt;}
.y14e{bottom:351.805200pt;}
.yd5{bottom:352.251867pt;}
.y43{bottom:353.510000pt;}
.y194{bottom:355.121600pt;}
.y1f1{bottom:357.235733pt;}
.y6b{bottom:357.237467pt;}
.y183{bottom:358.588267pt;}
.ya0{bottom:360.490267pt;}
.y1dc{bottom:361.015200pt;}
.y1b8{bottom:362.917600pt;}
.y107{bottom:363.238267pt;}
.yda{bottom:363.741600pt;}
.y18a{bottom:363.921600pt;}
.y23b{bottom:364.743200pt;}
.y212{bottom:365.147600pt;}
.y1a{bottom:367.743867pt;}
.y80{bottom:369.548800pt;}
.y11c{bottom:370.948400pt;}
.y14d{bottom:371.005200pt;}
.yde{bottom:371.451867pt;}
.y193{bottom:372.721467pt;}
.yd6{bottom:373.341600pt;}
.y19f{bottom:376.188133pt;}
.y1f0{bottom:378.035733pt;}
.y6a{bottom:378.037467pt;}
.y9f{bottom:379.690267pt;}
.y10d{bottom:380.548533pt;}
.y189{bottom:381.521467pt;}
.y1db{bottom:381.815333pt;}
.y111{bottom:382.438267pt;}
.yd9{bottom:382.941600pt;}
.y23a{bottom:383.943200pt;}
.y106{bottom:386.217867pt;}
.y182{bottom:386.854800pt;}
.y19{bottom:388.543867pt;}
.y42{bottom:389.424667pt;}
.yff{bottom:390.148533pt;}
.y14c{bottom:390.205200pt;}
.y192{bottom:390.321467pt;}
.ydd{bottom:390.651867pt;}
.y211{bottom:391.906667pt;}
.y19e{bottom:393.788267pt;}
.y11b{bottom:393.928000pt;}
.y7f{bottom:394.127467pt;}
.y1ef{bottom:398.835733pt;}
.y9e{bottom:398.890267pt;}
.y10c{bottom:399.748533pt;}
.y110{bottom:401.638267pt;}
.y1da{bottom:402.615333pt;}
.y69{bottom:402.616133pt;}
.y239{bottom:403.143200pt;}
.y181{bottom:404.454933pt;}
.y1b7{bottom:404.517600pt;}
.y105{bottom:405.417867pt;}
.y18{bottom:409.344000pt;}
.yfe{bottom:409.348533pt;}
.y14b{bottom:409.405200pt;}
.y210{bottom:411.106667pt;}
.yfc{bottom:411.238133pt;}
.y19d{bottom:411.388133pt;}
.y11a{bottom:413.128000pt;}
.y7e{bottom:414.927467pt;}
.y191{bottom:418.588267pt;}
.y1ee{bottom:419.635733pt;}
.y10f{bottom:420.838267pt;}
.y180{bottom:422.054800pt;}
.y10b{bottom:422.728000pt;}
.y1d9{bottom:423.415200pt;}
.y68{bottom:423.416133pt;}
.y104{bottom:424.617867pt;}
.y14a{bottom:428.605200pt;}
.y19c{bottom:428.988133pt;}
.y238{bottom:429.902267pt;}
.y17{bottom:430.144000pt;}
.y20f{bottom:430.306533pt;}
.y41{bottom:431.138667pt;}
.yfd{bottom:432.328000pt;}
.y91{bottom:433.567467pt;}
.y7d{bottom:435.727467pt;}
.y190{bottom:436.188133pt;}
.y17f{bottom:439.654800pt;}
.y10e{bottom:440.038267pt;}
.y10a{bottom:441.928000pt;}
.y103{bottom:443.817867pt;}
.y1ed{bottom:444.215200pt;}
.y67{bottom:444.216133pt;}
.y1b6{bottom:446.117600pt;}
.y149{bottom:447.805200pt;}
.y237{bottom:449.102267pt;}
.y20e{bottom:449.506533pt;}
.y16{bottom:450.944000pt;}
.y119{bottom:451.528000pt;}
.y40{bottom:451.938667pt;}
.y90{bottom:452.767467pt;}
.y18f{bottom:453.788267pt;}
.y102{bottom:463.017867pt;}
.y93{bottom:464.257200pt;}
.y1d8{bottom:465.015200pt;}
.y66{bottom:465.016133pt;}
.y1b5{bottom:466.917600pt;}
.y148{bottom:467.005200pt;}
.y118{bottom:470.728000pt;}
.y8f{bottom:475.747067pt;}
.y236{bottom:475.861333pt;}
.y20d{bottom:476.265600pt;}
.y18e{bottom:482.054800pt;}
.y101{bottom:482.217867pt;}
.y92{bottom:483.457200pt;}
.y1ec{bottom:485.815333pt;}
.y65{bottom:485.816133pt;}
.y147{bottom:486.205200pt;}
.y15{bottom:486.858533pt;}
.y1b4{bottom:487.717600pt;}
.y3f{bottom:487.742800pt;}
.y117{bottom:489.928000pt;}
.y8e{bottom:494.947067pt;}
.y235{bottom:495.061333pt;}
.y20c{bottom:495.465600pt;}
.y18d{bottom:499.654800pt;}
.y100{bottom:501.417867pt;}
.yd4{bottom:505.405067pt;}
.y146{bottom:505.405200pt;}
.y1d7{bottom:506.615333pt;}
.y64{bottom:506.616133pt;}
.y1b3{bottom:508.517600pt;}
.y116{bottom:509.128000pt;}
.y8d{bottom:514.147067pt;}
.y234{bottom:514.261333pt;}
.y20b{bottom:514.665600pt;}
.yd3{bottom:524.605067pt;}
.y145{bottom:524.605200pt;}
.y1d6{bottom:527.415200pt;}
.y63{bottom:527.416133pt;}
.y3e{bottom:527.444800pt;}
.y115{bottom:528.328000pt;}
.y1b2{bottom:529.317600pt;}
.y17b{bottom:533.009733pt;}
.y20a{bottom:533.865600pt;}
.y14{bottom:537.044000pt;}
.y233{bottom:541.020400pt;}
.y131{bottom:541.915467pt;}
.yd2{bottom:543.805067pt;}
.y144{bottom:543.805200pt;}
.y114{bottom:547.528000pt;}
.y1d5{bottom:548.215200pt;}
.y62{bottom:548.216133pt;}
.y3d{bottom:548.244800pt;}
.y1b1{bottom:550.117600pt;}
.y17a{bottom:550.609733pt;}
.y12{bottom:553.044000pt;}
.y12b{bottom:555.294933pt;}
.y13{bottom:557.484000pt;}
.y232{bottom:560.220400pt;}
.y209{bottom:560.624667pt;}
.y130{bottom:561.115333pt;}
.yd1{bottom:563.005067pt;}
.y143{bottom:563.005200pt;}
.y8c{bottom:563.952133pt;}
.y133{bottom:564.894933pt;}
.y113{bottom:566.728000pt;}
.y179{bottom:568.209733pt;}
.y1d4{bottom:569.015200pt;}
.y11{bottom:569.044000pt;}
.y3c{bottom:569.044800pt;}
.y127{bottom:572.605200pt;}
.y61{bottom:572.794800pt;}
.y12a{bottom:574.494933pt;}
.y1b0{bottom:574.697200pt;}
.y231{bottom:579.420400pt;}
.y208{bottom:579.824667pt;}
.yd0{bottom:582.205067pt;}
.y142{bottom:582.205200pt;}
.y12f{bottom:584.094933pt;}
.y178{bottom:585.809733pt;}
.y112{bottom:585.928000pt;}
.y1d3{bottom:589.815333pt;}
.y3b{bottom:589.844800pt;}
.y126{bottom:591.805200pt;}
.y60{bottom:593.594800pt;}
.y124{bottom:593.694933pt;}
.y1af{bottom:595.497200pt;}
.y10{bottom:596.604000pt;}
.ycf{bottom:601.405067pt;}
.y12e{bottom:603.294933pt;}
.y8b{bottom:603.649867pt;}
.y141{bottom:605.184667pt;}
.y230{bottom:606.179467pt;}
.y207{bottom:606.583733pt;}
.y132{bottom:607.074400pt;}
.y1d2{bottom:610.615333pt;}
.y3a{bottom:610.644800pt;}
.y129{bottom:612.894933pt;}
.y177{bottom:614.076400pt;}
.y5f{bottom:614.394800pt;}
.y125{bottom:614.784667pt;}
.yf{bottom:617.044000pt;}
.yce{bottom:620.605067pt;}
.y140{bottom:624.384667pt;}
.y22f{bottom:625.379467pt;}
.y206{bottom:625.783733pt;}
.y12d{bottom:626.274400pt;}
.ybf{bottom:626.425600pt;}
.y1d1{bottom:631.415200pt;}
.y39{bottom:631.444800pt;}
.y176{bottom:631.676400pt;}
.y128{bottom:632.094933pt;}
.ye{bottom:633.044000pt;}
.y5e{bottom:635.194800pt;}
.y1ae{bottom:637.097200pt;}
.ycd{bottom:639.805067pt;}
.y13f{bottom:643.584667pt;}
.y22e{bottom:644.579467pt;}
.y12c{bottom:645.474400pt;}
.y163{bottom:647.409733pt;}
.y175{bottom:649.276400pt;}
.ybe{bottom:649.405200pt;}
.y1d0{bottom:652.215200pt;}
.y38{bottom:652.244800pt;}
.y205{bottom:652.542800pt;}
.yd{bottom:654.377333pt;}
.y5d{bottom:655.994800pt;}
.yb8{bottom:657.115333pt;}
.ycc{bottom:659.005067pt;}
.y13e{bottom:662.784667pt;}
.yec{bottom:662.935733pt;}
.y167{bottom:665.009733pt;}
.y174{bottom:666.876400pt;}
.ybd{bottom:668.605200pt;}
.y22d{bottom:671.338533pt;}
.yc{bottom:671.577333pt;}
.y204{bottom:671.742800pt;}
.y1cf{bottom:673.015200pt;}
.y37{bottom:673.044800pt;}
.y162{bottom:675.676400pt;}
.yb5{bottom:676.315333pt;}
.y5c{bottom:676.794800pt;}
.ycb{bottom:678.205067pt;}
.y1ad{bottom:678.697200pt;}
.y15d{bottom:679.142933pt;}
.y169{bottom:679.143067pt;}
.yc0{bottom:680.094933pt;}
.y13d{bottom:681.984667pt;}
.y166{bottom:682.609733pt;}
.y173{bottom:684.476400pt;}
.yeb{bottom:685.915333pt;}
.y22c{bottom:690.538533pt;}
.ybc{bottom:691.584667pt;}
.y161{bottom:693.276400pt;}
.yf1{bottom:693.625600pt;}
.y1ce{bottom:693.815333pt;}
.y36{bottom:693.844800pt;}
.yb7{bottom:695.515333pt;}
.y15c{bottom:696.743067pt;}
.yca{bottom:697.405067pt;}
.y5b{bottom:697.594800pt;}
.y203{bottom:698.501867pt;}
.yb4{bottom:699.294933pt;}
.y1ac{bottom:699.497200pt;}
.y13c{bottom:701.184667pt;}
.y15a{bottom:702.076400pt;}
.yea{bottom:705.115333pt;}
.y168{bottom:707.409733pt;}
.y22b{bottom:709.738533pt;}
.ybb{bottom:710.784667pt;}
.y165{bottom:710.876400pt;}
.yf0{bottom:712.825467pt;}
.y35{bottom:714.644800pt;}
.yf5{bottom:714.715333pt;}
.yfb{bottom:716.605067pt;}
.yc9{bottom:716.605200pt;}
.y24b{bottom:717.297467pt;}
.y202{bottom:717.701867pt;}
.y5a{bottom:718.394800pt;}
.yb6{bottom:718.494933pt;}
.y1ab{bottom:720.297067pt;}
.y13b{bottom:720.384667pt;}
.y160{bottom:721.542933pt;}
.ye6{bottom:724.315467pt;}
.y15b{bottom:725.009733pt;}
.yba{bottom:729.984667pt;}
.y172{bottom:730.343067pt;}
.ye3{bottom:733.915333pt;}
.yb{bottom:734.998667pt;}
.y34{bottom:735.444800pt;}
.yef{bottom:735.805067pt;}
.yc8{bottom:735.805200pt;}
.y22a{bottom:736.497600pt;}
.y201{bottom:736.901867pt;}
.yf4{bottom:737.694800pt;}
.y15f{bottom:739.142933pt;}
.y164{bottom:739.143067pt;}
.y1cd{bottom:739.194800pt;}
.y13a{bottom:739.584667pt;}
.y1aa{bottom:741.097200pt;}
.ye5{bottom:743.515333pt;}
.y171{bottom:747.943067pt;}
.ya{bottom:748.332000pt;}
.yb9{bottom:749.184667pt;}
.yc7{bottom:755.005067pt;}
.y229{bottom:755.697600pt;}
.y200{bottom:756.101867pt;}
.y33{bottom:756.244800pt;}
.y15e{bottom:756.743067pt;}
.yf3{bottom:756.894800pt;}
.y139{bottom:758.784667pt;}
.y59{bottom:759.994800pt;}
.y1eb{bottom:759.994933pt;}
.y24a{bottom:763.256667pt;}
.y170{bottom:765.543067pt;}
.y1a9{bottom:765.676667pt;}
.ye4{bottom:766.494933pt;}
.yfa{bottom:774.205067pt;}
.yc6{bottom:774.205200pt;}
.y228{bottom:774.897600pt;}
.yf2{bottom:776.094800pt;}
.y32{bottom:777.044800pt;}
.yee{bottom:777.984667pt;}
.y1cc{bottom:780.794800pt;}
.y249{bottom:782.456667pt;}
.y1ff{bottom:782.860933pt;}
.y16f{bottom:783.143067pt;}
.ye9{bottom:785.694933pt;}
.y1a8{bottom:786.476667pt;}
.y1ea{bottom:786.566800pt;}
.y9{bottom:790.492000pt;}
.yf9{bottom:793.405067pt;}
.yc5{bottom:793.405200pt;}
.yed{bottom:797.184533pt;}
.y138{bottom:797.184667pt;}
.y31{bottom:797.844800pt;}
.y16e{bottom:800.743067pt;}
.y1cb{bottom:801.594800pt;}
.y1e9{bottom:801.594933pt;}
.y58{bottom:801.595733pt;}
.y227{bottom:801.656533pt;}
.y1fe{bottom:802.060933pt;}
.y1a7{bottom:807.276800pt;}
.ye8{bottom:808.674533pt;}
.yf8{bottom:812.605067pt;}
.yc4{bottom:812.605200pt;}
.y8{bottom:814.492000pt;}
.y137{bottom:816.384667pt;}
.y16d{bottom:818.343067pt;}
.y30{bottom:818.644800pt;}
.y226{bottom:820.856667pt;}
.y1ca{bottom:822.394800pt;}
.y57{bottom:822.395733pt;}
.ye7{bottom:827.874400pt;}
.y248{bottom:828.415733pt;}
.y1fd{bottom:828.820000pt;}
.y7c{bottom:829.954000pt;}
.yf7{bottom:831.805067pt;}
.yc3{bottom:831.805200pt;}
.y1a6{bottom:831.856267pt;}
.y136{bottom:835.584667pt;}
.y16c{bottom:835.943067pt;}
.y2f{bottom:839.444800pt;}
.y1c9{bottom:843.194800pt;}
.y56{bottom:843.195733pt;}
.y1e8{bottom:846.974400pt;}
.y225{bottom:847.615733pt;}
.y1fc{bottom:848.020000pt;}
.y7{bottom:849.830667pt;}
.yc2{bottom:851.005067pt;}
.y1a5{bottom:852.656267pt;}
.y16b{bottom:853.543067pt;}
.y135{bottom:854.784667pt;}
.y2e{bottom:860.244800pt;}
.y224{bottom:866.815733pt;}
.y1fb{bottom:867.220000pt;}
.y1c8{bottom:867.774400pt;}
.y55{bottom:867.775333pt;}
.yf6{bottom:870.205067pt;}
.yc1{bottom:870.205200pt;}
.y16a{bottom:871.143067pt;}
.y7b{bottom:871.553867pt;}
.y1a4{bottom:873.456267pt;}
.y6{bottom:873.830667pt;}
.y134{bottom:873.984667pt;}
.y223{bottom:886.015733pt;}
.y1fa{bottom:886.420133pt;}
.y1c7{bottom:888.574400pt;}
.y54{bottom:888.575333pt;}
.y7a{bottom:892.353867pt;}
.y247{bottom:893.574667pt;}
.y1a3{bottom:894.256267pt;}
.y2d{bottom:899.938133pt;}
.y157{bottom:904.498000pt;}
.yb1{bottom:904.882400pt;}
.y1c6{bottom:909.374400pt;}
.y53{bottom:909.375333pt;}
.y222{bottom:912.774800pt;}
.y79{bottom:913.153867pt;}
.y156{bottom:923.697867pt;}
.yb0{bottom:924.082400pt;}
.y1f9{bottom:928.297200pt;}
.y1c5{bottom:930.174400pt;}
.y52{bottom:930.175333pt;}
.y221{bottom:931.974800pt;}
.y159{bottom:933.297867pt;}
.ye2{bottom:933.682400pt;}
.y78{bottom:933.953867pt;}
.y152{bottom:935.187733pt;}
.yb3{bottom:935.572133pt;}
.y1a2{bottom:935.856267pt;}
.y2c{bottom:939.633200pt;}
.y155{bottom:946.677467pt;}
.yaf{bottom:947.061867pt;}
.y1c4{bottom:950.974400pt;}
.y51{bottom:950.975333pt;}
.y151{bottom:954.387733pt;}
.y77{bottom:954.753867pt;}
.yb2{bottom:954.772133pt;}
.y158{bottom:956.277467pt;}
.y1a1{bottom:956.656267pt;}
.ye1{bottom:956.662000pt;}
.y220{bottom:958.733867pt;}
.y154{bottom:965.877467pt;}
.yae{bottom:966.261867pt;}
.y2b{bottom:967.993333pt;}
.y50{bottom:975.553867pt;}
.y1c3{bottom:975.554000pt;}
.y21f{bottom:977.933867pt;}
.y153{bottom:985.077467pt;}
.yad{bottom:985.461867pt;}
.y5{bottom:990.897067pt;}
.y2a{bottom:996.353333pt;}
.y4f{bottom:996.353867pt;}
.y21e{bottom:997.133867pt;}
.y4{bottom:1041.598533pt;}
.y29{bottom:1041.598667pt;}
.h2{height:14.652000pt;}
.hb{height:26.224375pt;}
.h24{height:31.934432pt;}
.h9{height:34.851562pt;}
.hd{height:38.723958pt;}
.h3{height:39.585938pt;}
.h6{height:42.166667pt;}
.h5{height:42.596354pt;}
.h21{height:42.710938pt;}
.h20{height:42.739583pt;}
.hc{height:43.984375pt;}
.h1b{height:44.500000pt;}
.h1e{height:45.937500pt;}
.h4{height:46.468750pt;}
.ha{height:48.093562pt;}
.h1a{height:48.208333pt;}
.h19{height:48.382812pt;}
.h17{height:51.119792pt;}
.h18{height:52.436355pt;}
.h1f{height:52.781250pt;}
.h11{height:54.775508pt;}
.hf{height:54.776042pt;}
.h13{height:55.006432pt;}
.h16{height:55.015499pt;}
.h15{height:55.018699pt;}
.h25{height:55.021899pt;}
.h14{height:55.022432pt;}
.h26{height:55.022966pt;}
.h23{height:58.687500pt;}
.he{height:63.578125pt;}
.h8{height:67.416667pt;}
.h12{height:70.774975pt;}
.h22{height:77.939583pt;}
.h7{height:78.250000pt;}
.h1d{height:82.900000pt;}
.h1c{height:121.300000pt;}
.h10{height:1050.086533pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:317.160000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:107.378933pt;}
.x5{left:112.582667pt;}
.xe{left:115.896667pt;}
.x7{left:123.968400pt;}
.x8{left:132.280000pt;}
.x9{left:135.969333pt;}
.xb{left:182.460400pt;}
.x17{left:188.301467pt;}
.x27{left:191.049733pt;}
.x11{left:193.129200pt;}
.x28{left:197.982000pt;}
.x18{left:288.823733pt;}
.xc{left:291.105467pt;}
.x2b{left:292.739867pt;}
.x12{left:293.651333pt;}
.x2c{left:295.171200pt;}
.x2d{left:305.784533pt;}
.x2a{left:310.256800pt;}
.x1{left:316.765333pt;}
.x29{left:323.305067pt;}
.x13{left:376.233600pt;}
.x19{left:381.061333pt;}
.xf{left:383.036000pt;}
.x30{left:384.542667pt;}
.x2f{left:396.770800pt;}
.x2e{left:400.029200pt;}
.xd{left:463.266400pt;}
.x14{left:477.398133pt;}
.x1a{left:482.225867pt;}
.x32{left:483.967467pt;}
.x33{left:486.406000pt;}
.x37{left:487.652133pt;}
.x31{left:489.270533pt;}
.x36{left:491.304400pt;}
.x38{left:497.155333pt;}
.x39{left:498.233200pt;}
.x3{left:499.842533pt;}
.x6{left:504.740000pt;}
.x34{left:505.974667pt;}
.x35{left:509.236800pt;}
.x4{left:549.082933pt;}
.x10{left:558.539733pt;}
.x15{left:579.967600pt;}
.x3b{left:585.013067pt;}
.x1c{left:586.226933pt;}
.x1b{left:588.275200pt;}
.x1d{left:589.900800pt;}
.x1f{left:591.125467pt;}
.x21{left:593.560267pt;}
.x25{left:594.799200pt;}
.x1e{left:597.649467pt;}
.x3c{left:598.920667pt;}
.x23{left:600.095200pt;}
.x3a{left:601.731467pt;}
.x26{left:609.064800pt;}
.x20{left:611.922267pt;}
.x24{left:618.843867pt;}
.x22{left:621.293067pt;}
.xa{left:638.087467pt;}
.x2{left:652.287333pt;}
}




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