
    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_e8b4a106b9706764f2ca92ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956500;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_45f449c8b3cd928c133a5e94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957500;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_3737f29714ab1f03c9f94010.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.943500;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_0d8b00dadb79d420a98fc7ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_de32385a16d4e5c3571d2d36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957500;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_7cf134c427772def79b3f546.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956500;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_f76226f35168e4ebc2e9ec43.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910500;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_fa756d77debfc46447a1ce43.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.744500;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_7fb54d6e80bd732ebe66a56b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_90c092ec964441a8373a17cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736000;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_a26be9563ac09bb6a90292f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.732500;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_db2897df5a2d28d94468772f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.744500;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_1f9143646d1ff70ca24272bd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.858000;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_edf14c948e473d7ad7e7d5ba.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.858000;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_25d584c42749ef6df09581b9.woff2')format("woff");}.fff{font-family:fff;line-height:0.862000;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_1de84443c5c79d9b5e2226c0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908000;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_47eff0a0532d0db8875837b3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.858000;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_47eff0a0532d0db8875837b3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.858000;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_e959a0a5f17089849c2d431a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.858000;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_47eff0a0532d0db8875837b3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.858000;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;}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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:-18.900000px;}
.v3{vertical-align:-17.712000px;}
.v6{vertical-align:-15.840000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.006000px;}
.v7{vertical-align:21.599400px;}
.v5{vertical-align:32.400600px;}
.ls3{letter-spacing:-1.050000px;}
.ls22{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.545148px;}
.ls1e{letter-spacing:-0.544500px;}
.ls1b{letter-spacing:-0.541800px;}
.ls29{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.135000px;}
.ls24{letter-spacing:-0.045429px;}
.ls1f{letter-spacing:-0.045375px;}
.ls1c{letter-spacing:-0.045150px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.006600px;}
.lsf{letter-spacing:0.007800px;}
.lsd{letter-spacing:0.009600px;}
.ls15{letter-spacing:0.018600px;}
.ls14{letter-spacing:0.019200px;}
.ls5{letter-spacing:0.021000px;}
.ls2a{letter-spacing:0.022200px;}
.ls27{letter-spacing:0.022800px;}
.ls10{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.042000px;}
.lsa{letter-spacing:0.044342px;}
.ls1d{letter-spacing:0.045375px;}
.ls20{letter-spacing:0.045429px;}
.lse{letter-spacing:0.045600px;}
.ls11{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.379200px;}
.ls6{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.528000px;}
.ls17{letter-spacing:0.556800px;}
.ls2b{letter-spacing:0.675000px;}
.ls9{letter-spacing:2.898000px;}
.ls25{letter-spacing:4.800000px;}
.ls26{letter-spacing:5.280000px;}
.ls1{letter-spacing:6.000000px;}
.lsb{letter-spacing:6.720000px;}
.ls4{letter-spacing:8.400000px;}
.ls0{letter-spacing:10.800000px;}
.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;}
}
.ws5{word-spacing:-20.580000px;}
.ws47{word-spacing:-16.464000px;}
.ws1d{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.122000px;}
.ws1{word-spacing:-12.288000px;}
.ws24{word-spacing:-11.664000px;}
.ws54{word-spacing:-11.520000px;}
.ws1a{word-spacing:-11.232000px;}
.ws48{word-spacing:-10.530000px;}
.ws0{word-spacing:-10.368000px;}
.ws3{word-spacing:-10.206000px;}
.ws4d{word-spacing:-10.170000px;}
.ws23{word-spacing:-9.540000px;}
.ws27{word-spacing:-9.432000px;}
.ws20{word-spacing:-9.324000px;}
.ws1e{word-spacing:-9.216000px;}
.ws19{word-spacing:-8.601600px;}
.ws1f{word-spacing:-8.424000px;}
.wsa{word-spacing:-8.400000px;}
.ws2{word-spacing:-8.064000px;}
.wsf{word-spacing:-7.526400px;}
.ws18{word-spacing:-6.720000px;}
.wsc{word-spacing:-6.000000px;}
.ws4b{word-spacing:-5.280000px;}
.ws4a{word-spacing:-4.800000px;}
.ws10{word-spacing:-2.898000px;}
.wsb{word-spacing:-1.836000px;}
.ws26{word-spacing:-1.536000px;}
.ws9{word-spacing:-1.386000px;}
.ws1c{word-spacing:-1.104000px;}
.ws52{word-spacing:-0.675000px;}
.ws11{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.336000px;}
.ws4f{word-spacing:-0.315000px;}
.ws13{word-spacing:-0.288000px;}
.ws4c{word-spacing:-0.270000px;}
.ws12{word-spacing:-0.144000px;}
.ws42{word-spacing:-0.090858px;}
.ws3f{word-spacing:-0.090750px;}
.ws16{word-spacing:-0.088684px;}
.ws3c{word-spacing:-0.045150px;}
.ws53{word-spacing:-0.045000px;}
.ws15{word-spacing:-0.044342px;}
.ws14{word-spacing:-0.037025px;}
.ws6{word-spacing:0.000000px;}
.ws3e{word-spacing:0.045150px;}
.ws41{word-spacing:0.045375px;}
.ws46{word-spacing:0.045429px;}
.ws50{word-spacing:0.135000px;}
.ws25{word-spacing:0.144000px;}
.ws44{word-spacing:0.240000px;}
.ws49{word-spacing:0.432000px;}
.ws3d{word-spacing:0.496650px;}
.ws40{word-spacing:0.499125px;}
.ws43{word-spacing:0.499719px;}
.ws45{word-spacing:0.576000px;}
.ws3b{word-spacing:0.672000px;}
.ws51{word-spacing:0.765000px;}
.ws8{word-spacing:1.050000px;}
.ws4e{word-spacing:5.580000px;}
.ws17{word-spacing:6.030485px;}
.ws21{word-spacing:7.296000px;}
.ws22{word-spacing:8.256000px;}
.ws29{word-spacing:62.145000px;}
.ws28{word-spacing:79.965000px;}
.ws34{word-spacing:82.575000px;}
.ws2a{word-spacing:110.700000px;}
.ws33{word-spacing:125.370000px;}
.ws35{word-spacing:126.810000px;}
.ws2d{word-spacing:134.415000px;}
.ws2b{word-spacing:141.525000px;}
.ws37{word-spacing:143.460000px;}
.ws32{word-spacing:161.460000px;}
.ws3a{word-spacing:166.905000px;}
.ws2e{word-spacing:170.505000px;}
.ws36{word-spacing:172.710000px;}
.ws2f{word-spacing:174.690000px;}
.ws30{word-spacing:188.460000px;}
.ws2c{word-spacing:189.720000px;}
.ws7{word-spacing:352.716000px;}
.ws39{word-spacing:362.610000px;}
.ws31{word-spacing:396.810000px;}
.ws38{word-spacing:413.370000px;}
.wse{word-spacing:2498.244000px;}
._8{margin-left:-14.107200px;}
._13{margin-left:-12.946800px;}
._f{margin-left:-11.816400px;}
._c{margin-left:-5.992200px;}
._b{margin-left:-4.876800px;}
._1{margin-left:-2.881200px;}
._0{margin-left:-1.008000px;}
._6{width:1.042200px;}
._3{width:2.100000px;}
._e{width:3.219600px;}
._5{width:4.417200px;}
._10{width:5.516400px;}
._a{width:6.868800px;}
._7{width:8.343000px;}
._4{width:9.450000px;}
._11{width:10.987800px;}
._2a{width:12.805200px;}
._12{width:14.188800px;}
._15{width:15.422400px;}
._d{width:17.185200px;}
._9{width:18.997200px;}
._14{width:20.542800px;}
._18{width:84.735000px;}
._16{width:88.605000px;}
._17{width:93.690000px;}
._1f{width:136.890000px;}
._1a{width:138.330000px;}
._1c{width:145.935000px;}
._21{width:153.045000px;}
._1b{width:154.980000px;}
._1e{width:172.980000px;}
._1d{width:182.025000px;}
._23{width:199.980000px;}
._26{width:219.825000px;}
._28{width:228.600000px;}
._27{width:390.285000px;}
._22{width:415.935000px;}
._24{width:442.980000px;}
._19{width:450.450000px;}
._20{width:453.330000px;}
._25{width:470.025000px;}
._29{width:879.822000px;}
._2{width:992.359200px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:29.400000px;}
.fs7{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fsf{font-size:36.000000px;}
.fsc{font-size:37.025400px;}
.fs5{font-size:40.500000px;}
.fs0{font-size:42.000000px;}
.fsd{font-size:44.341800px;}
.fs10{font-size:45.000000px;}
.fs11{font-size:45.150000px;}
.fs12{font-size:45.375000px;}
.fs13{font-size:45.429000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:57.540000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:78.120000px;}
.fs2{font-size:78.540000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1cf{bottom:2.617800px;}
.y4{bottom:25.615200px;}
.y3{bottom:39.120300px;}
.y1{bottom:40.619700px;}
.y2{bottom:43.170300px;}
.y9{bottom:63.993450px;}
.yed{bottom:76.414500px;}
.yd0{bottom:76.442250px;}
.y120{bottom:76.444950px;}
.y77{bottom:76.453650px;}
.y191{bottom:76.473450px;}
.y1cb{bottom:76.869450px;}
.y171{bottom:77.342100px;}
.y14f{bottom:77.401950px;}
.y1e7{bottom:78.540300px;}
.y9b{bottom:78.902250px;}
.y8{bottom:78.997950px;}
.y1b2{bottom:80.709900px;}
.yec{bottom:92.914500px;}
.ycf{bottom:95.942250px;}
.y11f{bottom:95.944950px;}
.y76{bottom:95.953650px;}
.y190{bottom:95.973450px;}
.y1ca{bottom:96.369450px;}
.y170{bottom:96.842100px;}
.y14e{bottom:96.901950px;}
.y216{bottom:97.444950px;}
.y1e6{bottom:98.040300px;}
.y9a{bottom:98.402250px;}
.y256{bottom:98.798700px;}
.y296{bottom:98.807400px;}
.y1b1{bottom:100.209900px;}
.yeb{bottom:109.414500px;}
.y215{bottom:113.194950px;}
.y255{bottom:114.548700px;}
.y295{bottom:114.557400px;}
.yce{bottom:115.442250px;}
.y11e{bottom:115.444950px;}
.y75{bottom:115.453650px;}
.y18f{bottom:115.473450px;}
.y1c9{bottom:115.869450px;}
.y14d{bottom:116.401950px;}
.y1e5{bottom:117.540300px;}
.y99{bottom:117.902250px;}
.y1b0{bottom:119.709900px;}
.y37{bottom:120.421650px;}
.y40{bottom:121.117650px;}
.y12b{bottom:125.194950px;}
.yea{bottom:125.914500px;}
.y16f{bottom:126.092100px;}
.y214{bottom:128.944950px;}
.y254{bottom:130.298700px;}
.y294{bottom:130.307400px;}
.ycd{bottom:134.942250px;}
.y11d{bottom:134.944950px;}
.y74{bottom:134.953650px;}
.y18e{bottom:134.973450px;}
.y1c8{bottom:135.369450px;}
.y14c{bottom:135.901950px;}
.y1e4{bottom:137.040300px;}
.y98{bottom:137.402250px;}
.y1af{bottom:139.209900px;}
.y36{bottom:139.921650px;}
.y3f{bottom:140.617650px;}
.ye9{bottom:142.414500px;}
.y213{bottom:144.694950px;}
.y16e{bottom:145.592100px;}
.y253{bottom:146.048700px;}
.y293{bottom:146.057400px;}
.ycc{bottom:154.442250px;}
.y11c{bottom:154.444950px;}
.y73{bottom:154.453650px;}
.y18d{bottom:154.473450px;}
.y1c7{bottom:154.869450px;}
.y14b{bottom:155.401950px;}
.y1e3{bottom:156.540300px;}
.y97{bottom:156.902250px;}
.y1ae{bottom:158.709900px;}
.y35{bottom:159.421650px;}
.y3e{bottom:160.117650px;}
.y212{bottom:160.444950px;}
.y252{bottom:161.798700px;}
.y292{bottom:161.807400px;}
.y12a{bottom:164.194950px;}
.ycb{bottom:173.942250px;}
.y11b{bottom:173.944950px;}
.y72{bottom:173.953650px;}
.y18c{bottom:173.973450px;}
.y1c6{bottom:174.369450px;}
.y14a{bottom:174.901950px;}
.y1e2{bottom:176.040300px;}
.y211{bottom:176.194950px;}
.y96{bottom:176.402250px;}
.y251{bottom:177.548700px;}
.y291{bottom:177.557400px;}
.y1ad{bottom:178.209900px;}
.y34{bottom:178.921650px;}
.y3d{bottom:179.617650px;}
.y210{bottom:191.944950px;}
.y250{bottom:193.298700px;}
.y290{bottom:193.307400px;}
.yca{bottom:193.442250px;}
.y11a{bottom:193.444950px;}
.y71{bottom:193.453650px;}
.y18b{bottom:193.473450px;}
.y1c5{bottom:193.869450px;}
.y16d{bottom:194.341950px;}
.y149{bottom:194.401950px;}
.y1e1{bottom:195.540300px;}
.y95{bottom:195.902250px;}
.y1ac{bottom:197.709900px;}
.y33{bottom:198.421650px;}
.y3c{bottom:199.117650px;}
.y20f{bottom:207.694950px;}
.y24f{bottom:209.048700px;}
.y28f{bottom:209.057400px;}
.yc9{bottom:212.942250px;}
.y119{bottom:212.944950px;}
.y70{bottom:212.953650px;}
.y18a{bottom:212.973450px;}
.y1c4{bottom:213.369450px;}
.y16c{bottom:213.841950px;}
.y148{bottom:213.901950px;}
.y1e0{bottom:215.040300px;}
.y94{bottom:215.402250px;}
.y1ab{bottom:217.209900px;}
.y32{bottom:217.921650px;}
.y3b{bottom:218.617650px;}
.y20e{bottom:223.444950px;}
.y24e{bottom:224.798700px;}
.y28e{bottom:224.807400px;}
.yc8{bottom:232.442250px;}
.y118{bottom:232.444950px;}
.y6f{bottom:232.453650px;}
.y194{bottom:232.473450px;}
.y1c3{bottom:232.869450px;}
.y16b{bottom:233.341950px;}
.y147{bottom:233.401950px;}
.y1df{bottom:234.540300px;}
.y93{bottom:234.902250px;}
.y1aa{bottom:236.709900px;}
.y31{bottom:237.421650px;}
.y3a{bottom:238.117650px;}
.y20d{bottom:239.194950px;}
.y24d{bottom:240.548700px;}
.y28d{bottom:240.557400px;}
.y79{bottom:242.203650px;}
.yc7{bottom:251.942250px;}
.y117{bottom:251.944950px;}
.y6e{bottom:251.953650px;}
.y189{bottom:251.973450px;}
.y1c2{bottom:252.369450px;}
.y16a{bottom:252.841950px;}
.y1de{bottom:254.040300px;}
.y92{bottom:254.402250px;}
.y20c{bottom:254.944950px;}
.y1a9{bottom:256.209900px;}
.y24c{bottom:256.298700px;}
.y28c{bottom:256.307400px;}
.y39{bottom:257.617650px;}
.y146{bottom:262.651950px;}
.y20b{bottom:270.694950px;}
.yc6{bottom:271.442250px;}
.y116{bottom:271.444950px;}
.y6d{bottom:271.453650px;}
.y193{bottom:271.473450px;}
.y1c1{bottom:271.869450px;}
.y24b{bottom:272.048700px;}
.y28b{bottom:272.057400px;}
.y169{bottom:272.341950px;}
.y1dd{bottom:273.540300px;}
.y91{bottom:273.902250px;}
.y1a8{bottom:275.709900px;}
.y30{bottom:276.421650px;}
.y38{bottom:277.117650px;}
.y126{bottom:281.194950px;}
.y78{bottom:281.203650px;}
.y145{bottom:282.151950px;}
.y20a{bottom:286.444950px;}
.y24a{bottom:287.798700px;}
.y28a{bottom:287.807400px;}
.yc5{bottom:290.942250px;}
.y115{bottom:290.944950px;}
.y6c{bottom:290.953650px;}
.y192{bottom:290.973450px;}
.y1c0{bottom:291.369450px;}
.y168{bottom:291.841950px;}
.y1dc{bottom:293.040300px;}
.y90{bottom:293.402250px;}
.y1a7{bottom:295.209900px;}
.y209{bottom:302.194950px;}
.y249{bottom:303.548700px;}
.y289{bottom:303.557400px;}
.yc4{bottom:310.442250px;}
.y114{bottom:310.444950px;}
.y6b{bottom:310.453650px;}
.y188{bottom:310.473450px;}
.y1bf{bottom:310.869450px;}
.y167{bottom:311.341950px;}
.y1db{bottom:312.540300px;}
.y8f{bottom:312.902250px;}
.y1a6{bottom:314.709900px;}
.y208{bottom:317.944950px;}
.y248{bottom:319.298700px;}
.y288{bottom:319.307400px;}
.yc3{bottom:329.942250px;}
.y113{bottom:329.944950px;}
.y6a{bottom:329.953650px;}
.y187{bottom:329.973450px;}
.y1be{bottom:330.369450px;}
.y166{bottom:330.841950px;}
.y144{bottom:330.901950px;}
.y1da{bottom:332.040300px;}
.y8e{bottom:332.402250px;}
.y207{bottom:333.694950px;}
.y1a5{bottom:334.209900px;}
.y247{bottom:335.048700px;}
.y287{bottom:335.057400px;}
.yc2{bottom:349.442250px;}
.y112{bottom:349.444950px;}
.y69{bottom:349.453650px;}
.y186{bottom:349.473450px;}
.y1bd{bottom:349.869450px;}
.y165{bottom:350.341950px;}
.y143{bottom:350.401950px;}
.y246{bottom:350.798700px;}
.y286{bottom:350.807400px;}
.y1d9{bottom:351.540300px;}
.y8d{bottom:351.902250px;}
.y1a4{bottom:353.709900px;}
.y1c{bottom:357.333750px;}
.y206{bottom:365.194950px;}
.y245{bottom:366.548700px;}
.y285{bottom:366.557400px;}
.yc1{bottom:368.942250px;}
.y111{bottom:368.944950px;}
.y68{bottom:368.953650px;}
.y185{bottom:368.973450px;}
.y1bc{bottom:369.369450px;}
.y164{bottom:369.841950px;}
.y142{bottom:369.901950px;}
.y1d8{bottom:371.040300px;}
.y8c{bottom:371.402250px;}
.y1a3{bottom:373.209900px;}
.y1b{bottom:376.833750px;}
.y205{bottom:380.944950px;}
.y244{bottom:382.298700px;}
.y284{bottom:382.307400px;}
.yc0{bottom:388.442250px;}
.y110{bottom:388.444950px;}
.y67{bottom:388.453650px;}
.y184{bottom:388.473450px;}
.y1bb{bottom:388.869450px;}
.y163{bottom:389.341950px;}
.y141{bottom:389.401950px;}
.y1d7{bottom:390.540300px;}
.y8b{bottom:390.902250px;}
.y1a2{bottom:392.709900px;}
.y1a{bottom:396.333750px;}
.y204{bottom:396.694950px;}
.y243{bottom:398.048700px;}
.y283{bottom:398.057400px;}
.ybf{bottom:407.942250px;}
.y10f{bottom:407.944950px;}
.y66{bottom:407.953650px;}
.y183{bottom:407.973450px;}
.y1ba{bottom:408.369450px;}
.y162{bottom:408.841950px;}
.y140{bottom:408.901950px;}
.y1d6{bottom:410.040300px;}
.y8a{bottom:410.402250px;}
.y1a1{bottom:412.209900px;}
.y203{bottom:412.444950px;}
.y242{bottom:413.798700px;}
.y282{bottom:413.807400px;}
.ybe{bottom:427.442250px;}
.y10e{bottom:427.444950px;}
.y65{bottom:427.453650px;}
.y182{bottom:427.473450px;}
.y1b9{bottom:427.869450px;}
.y202{bottom:428.194950px;}
.y161{bottom:428.341950px;}
.y13f{bottom:428.401950px;}
.y1d5{bottom:429.540300px;}
.y241{bottom:429.548700px;}
.y281{bottom:429.557400px;}
.y89{bottom:429.902250px;}
.y1a0{bottom:431.709900px;}
.y19{bottom:432.283650px;}
.ye6{bottom:437.203650px;}
.y201{bottom:443.944950px;}
.y240{bottom:445.298700px;}
.y280{bottom:445.307400px;}
.ybd{bottom:446.942250px;}
.y10d{bottom:446.944950px;}
.y64{bottom:446.953650px;}
.y181{bottom:446.973450px;}
.y160{bottom:447.841950px;}
.y13e{bottom:447.901950px;}
.y1d4{bottom:449.040300px;}
.y88{bottom:449.402250px;}
.y19f{bottom:451.209900px;}
.y18{bottom:454.788150px;}
.ye5{bottom:456.703650px;}
.y200{bottom:459.694950px;}
.y23f{bottom:461.048700px;}
.y27f{bottom:461.057400px;}
.ybc{bottom:466.442250px;}
.y10c{bottom:466.444950px;}
.y63{bottom:466.453650px;}
.y15f{bottom:467.341950px;}
.y13d{bottom:467.401950px;}
.y1d3{bottom:468.540300px;}
.y87{bottom:468.902250px;}
.y19e{bottom:470.709900px;}
.y1cd{bottom:473.529300px;}
.y1ff{bottom:475.444950px;}
.y23e{bottom:476.798700px;}
.y27e{bottom:476.807400px;}
.y17{bottom:477.292650px;}
.ybb{bottom:485.942250px;}
.y10b{bottom:485.944950px;}
.y62{bottom:485.953650px;}
.y15e{bottom:486.841950px;}
.y13c{bottom:486.901950px;}
.y1d2{bottom:488.040300px;}
.y86{bottom:488.402250px;}
.y1cc{bottom:490.029300px;}
.y19d{bottom:490.209900px;}
.y1fe{bottom:491.194950px;}
.y23d{bottom:492.548700px;}
.y27d{bottom:492.557400px;}
.y19a{bottom:492.633450px;}
.y16{bottom:499.797150px;}
.yba{bottom:505.442250px;}
.y10a{bottom:505.444950px;}
.y61{bottom:505.453650px;}
.y15d{bottom:506.341950px;}
.y13b{bottom:506.401950px;}
.y1fd{bottom:506.944950px;}
.y1d1{bottom:507.540300px;}
.y85{bottom:507.902250px;}
.y23c{bottom:508.298700px;}
.y27c{bottom:508.307400px;}
.y199{bottom:509.133450px;}
.y1ce{bottom:516.939000px;}
.y15{bottom:522.301650px;}
.y23b{bottom:524.048700px;}
.y27b{bottom:524.057400px;}
.yb9{bottom:524.942250px;}
.y109{bottom:524.944950px;}
.y60{bottom:524.953650px;}
.y198{bottom:525.633450px;}
.y15c{bottom:525.841950px;}
.y13a{bottom:525.901950px;}
.y1d0{bottom:527.040300px;}
.y84{bottom:527.402250px;}
.y1fc{bottom:532.432950px;}
.y1b6{bottom:532.869900px;}
.y23a{bottom:539.798700px;}
.y27a{bottom:539.807400px;}
.y197{bottom:542.133450px;}
.yb8{bottom:544.442250px;}
.y108{bottom:544.444950px;}
.y5f{bottom:544.453650px;}
.y14{bottom:544.806150px;}
.y15b{bottom:545.341950px;}
.y139{bottom:545.401950px;}
.y83{bottom:546.902250px;}
.y1b5{bottom:549.369900px;}
.y12e{bottom:554.194950px;}
.y239{bottom:555.548700px;}
.y279{bottom:555.557400px;}
.y196{bottom:558.633450px;}
.yb7{bottom:563.942250px;}
.y107{bottom:563.944950px;}
.y5e{bottom:563.953650px;}
.y15a{bottom:564.841950px;}
.y138{bottom:564.901950px;}
.y1b4{bottom:565.869900px;}
.y82{bottom:566.402250px;}
.y13{bottom:567.310650px;}
.y1e9{bottom:569.700300px;}
.y29{bottom:569.973000px;}
.y238{bottom:571.298700px;}
.y278{bottom:571.307400px;}
.y125{bottom:573.694950px;}
.y195{bottom:575.133450px;}
.y1b3{bottom:582.369900px;}
.y1fb{bottom:583.432950px;}
.yb6{bottom:583.442250px;}
.y106{bottom:583.444950px;}
.y5d{bottom:583.453650px;}
.y159{bottom:584.341950px;}
.y137{bottom:584.401950px;}
.y28{bottom:584.977500px;}
.y81{bottom:585.902250px;}
.y1e8{bottom:586.200300px;}
.y237{bottom:587.048700px;}
.y277{bottom:587.057400px;}
.y12{bottom:589.815150px;}
.y27{bottom:599.982000px;}
.y236{bottom:602.798700px;}
.y276{bottom:602.807400px;}
.y1fa{bottom:602.932950px;}
.yb5{bottom:602.942250px;}
.y105{bottom:602.944950px;}
.y5c{bottom:602.953650px;}
.y158{bottom:603.841950px;}
.y136{bottom:603.901950px;}
.y80{bottom:605.402250px;}
.y11{bottom:612.292650px;}
.y26{bottom:614.986500px;}
.y235{bottom:618.548700px;}
.y275{bottom:618.557400px;}
.yb4{bottom:622.442250px;}
.y104{bottom:622.444950px;}
.y5b{bottom:622.453650px;}
.y157{bottom:623.341950px;}
.y135{bottom:623.401950px;}
.y7f{bottom:624.902250px;}
.y25{bottom:629.991000px;}
.y1f9{bottom:632.188950px;}
.y234{bottom:634.298700px;}
.y274{bottom:634.307400px;}
.y10{bottom:634.797150px;}
.yb3{bottom:641.942250px;}
.y103{bottom:641.944950px;}
.y5a{bottom:641.953650px;}
.y156{bottom:642.841950px;}
.y134{bottom:642.901950px;}
.y7e{bottom:644.402250px;}
.y233{bottom:650.048700px;}
.y273{bottom:650.057400px;}
.yf{bottom:657.301650px;}
.yb2{bottom:661.442250px;}
.y102{bottom:661.444950px;}
.y59{bottom:661.453650px;}
.y155{bottom:662.341950px;}
.y133{bottom:662.401950px;}
.y7d{bottom:663.902250px;}
.y24{bottom:665.239500px;}
.y232{bottom:665.798700px;}
.y272{bottom:665.807400px;}
.y19c{bottom:667.044900px;}
.y1eb{bottom:668.741400px;}
.y1b8{bottom:669.846750px;}
.y129{bottom:671.194950px;}
.y1f8{bottom:678.688950px;}
.ye{bottom:679.806150px;}
.y23{bottom:680.244000px;}
.y19b{bottom:680.589900px;}
.yb1{bottom:680.942250px;}
.y101{bottom:680.944950px;}
.y58{bottom:680.953650px;}
.y231{bottom:681.548700px;}
.y271{bottom:681.557400px;}
.y154{bottom:681.841950px;}
.y132{bottom:681.901950px;}
.y1ea{bottom:682.370100px;}
.y1b7{bottom:683.459250px;}
.y128{bottom:690.694950px;}
.y22{bottom:695.248500px;}
.y230{bottom:697.294950px;}
.y270{bottom:697.307400px;}
.y1f7{bottom:698.188950px;}
.yb0{bottom:700.442250px;}
.y100{bottom:700.444950px;}
.y57{bottom:700.453650px;}
.y153{bottom:701.341950px;}
.y131{bottom:701.401950px;}
.yd{bottom:702.310650px;}
.yd3{bottom:709.562100px;}
.y12d{bottom:710.194950px;}
.y22f{bottom:713.044950px;}
.y26f{bottom:713.057400px;}
.y21{bottom:714.978000px;}
.y1f6{bottom:717.688950px;}
.yaf{bottom:719.942250px;}
.yff{bottom:719.944950px;}
.y56{bottom:719.953650px;}
.y152{bottom:720.841950px;}
.y130{bottom:720.901950px;}
.yc{bottom:724.815150px;}
.yd2{bottom:726.062100px;}
.y22e{bottom:728.794950px;}
.y26e{bottom:728.807400px;}
.y12c{bottom:729.694950px;}
.y20{bottom:730.498500px;}
.y1f5{bottom:737.188950px;}
.yae{bottom:739.442250px;}
.yfe{bottom:739.444950px;}
.y55{bottom:739.453650px;}
.y151{bottom:740.341950px;}
.yd1{bottom:742.562100px;}
.y22d{bottom:744.544950px;}
.y26d{bottom:744.557400px;}
.yb{bottom:747.319650px;}
.y12f{bottom:750.151950px;}
.y1f{bottom:750.228000px;}
.y1f4{bottom:756.688950px;}
.yad{bottom:758.942250px;}
.yfd{bottom:758.944950px;}
.y54{bottom:758.953650px;}
.y150{bottom:759.841950px;}
.y22c{bottom:760.294950px;}
.y26c{bottom:760.307400px;}
.y1e{bottom:765.748500px;}
.ye8{bottom:768.703650px;}
.ya{bottom:769.819650px;}
.y22b{bottom:776.044950px;}
.y26b{bottom:776.057400px;}
.y1f3{bottom:776.188950px;}
.ye3{bottom:776.519250px;}
.ye0{bottom:776.519912px;}
.yac{bottom:778.442250px;}
.yfc{bottom:778.444950px;}
.y53{bottom:778.453650px;}
.y1d{bottom:785.478000px;}
.ydf{bottom:785.709750px;}
.ye7{bottom:788.203650px;}
.y22a{bottom:791.794950px;}
.y26a{bottom:791.807400px;}
.y1f2{bottom:795.688950px;}
.yab{bottom:797.942250px;}
.yfb{bottom:797.944950px;}
.y52{bottom:797.953650px;}
.y180{bottom:801.717450px;}
.y229{bottom:807.544950px;}
.y269{bottom:807.557400px;}
.y1f1{bottom:815.188950px;}
.yaa{bottom:817.442250px;}
.yfa{bottom:817.444950px;}
.y51{bottom:817.453650px;}
.y17f{bottom:822.777450px;}
.y228{bottom:823.294950px;}
.y268{bottom:823.307400px;}
.y2f{bottom:833.185500px;}
.y1f0{bottom:834.688950px;}
.ya9{bottom:836.942250px;}
.y124{bottom:836.944950px;}
.y50{bottom:836.953650px;}
.y227{bottom:839.044950px;}
.y267{bottom:839.057400px;}
.ydb{bottom:842.003100px;}
.y17e{bottom:843.837450px;}
.yf9{bottom:846.694950px;}
.y127{bottom:846.703650px;}
.y1ef{bottom:854.188950px;}
.y226{bottom:854.794950px;}
.y266{bottom:854.807400px;}
.ya8{bottom:856.442250px;}
.y123{bottom:856.444950px;}
.y4f{bottom:856.453650px;}
.y2e{bottom:860.185500px;}
.y17d{bottom:864.897450px;}
.yf8{bottom:866.194950px;}
.ye4{bottom:866.203650px;}
.yda{bottom:869.004600px;}
.y225{bottom:870.544950px;}
.y265{bottom:870.557400px;}
.ya7{bottom:875.942250px;}
.y122{bottom:875.944950px;}
.y4e{bottom:875.953650px;}
.y1ee{bottom:883.444950px;}
.y17c{bottom:885.957450px;}
.y224{bottom:886.294950px;}
.y264{bottom:886.307400px;}
.yd8{bottom:888.713250px;}
.ya6{bottom:895.442250px;}
.y121{bottom:895.444950px;}
.y4d{bottom:895.453650px;}
.y2a6{bottom:899.798550px;}
.y17b{bottom:901.707450px;}
.y223{bottom:902.044950px;}
.y2a3{bottom:902.048550px;}
.y263{bottom:902.057400px;}
.yd9{bottom:908.423180px;}
.ya5{bottom:914.942250px;}
.yf7{bottom:914.944950px;}
.y4c{bottom:914.953650px;}
.y222{bottom:917.794950px;}
.y2a2{bottom:917.798550px;}
.y262{bottom:917.807400px;}
.y2d{bottom:918.000300px;}
.y2a5{bottom:919.298550px;}
.y1ed{bottom:920.168201px;}
.y17a{bottom:922.767450px;}
.y221{bottom:933.544950px;}
.y2a1{bottom:933.548550px;}
.y261{bottom:933.557400px;}
.ydd{bottom:933.790626px;}
.y1ec{bottom:933.796900px;}
.ya4{bottom:934.442250px;}
.yf6{bottom:934.444950px;}
.y4b{bottom:934.453650px;}
.y179{bottom:938.517450px;}
.y2a4{bottom:947.798550px;}
.ydc{bottom:949.088547px;}
.y220{bottom:949.294950px;}
.y2a0{bottom:949.298550px;}
.y260{bottom:949.307400px;}
.y2c{bottom:952.506300px;}
.ya3{bottom:953.942250px;}
.yf5{bottom:953.944950px;}
.y4a{bottom:953.953650px;}
.y178{bottom:959.577450px;}
.y21f{bottom:965.044950px;}
.y29f{bottom:965.048550px;}
.y25f{bottom:965.057400px;}
.ya2{bottom:973.442250px;}
.yf4{bottom:973.444950px;}
.y49{bottom:973.453650px;}
.y177{bottom:980.637450px;}
.y21e{bottom:980.794950px;}
.y29e{bottom:980.798550px;}
.y25e{bottom:980.807400px;}
.y2b{bottom:987.012300px;}
.ya1{bottom:992.942250px;}
.yf3{bottom:992.944950px;}
.y48{bottom:992.953650px;}
.y21d{bottom:996.544950px;}
.y29d{bottom:996.548550px;}
.y25d{bottom:996.557400px;}
.y176{bottom:1001.697450px;}
.y21c{bottom:1012.294950px;}
.y29c{bottom:1012.298550px;}
.y25c{bottom:1012.307400px;}
.ya0{bottom:1012.442250px;}
.yf2{bottom:1012.444950px;}
.y47{bottom:1012.453650px;}
.y175{bottom:1022.757450px;}
.yde{bottom:1027.216050px;}
.y21b{bottom:1028.044950px;}
.y29b{bottom:1028.048550px;}
.y25b{bottom:1028.057400px;}
.y9f{bottom:1031.942250px;}
.yf1{bottom:1031.944950px;}
.y46{bottom:1031.953650px;}
.y21a{bottom:1043.794950px;}
.y29a{bottom:1043.798550px;}
.y25a{bottom:1043.807400px;}
.y173{bottom:1046.663700px;}
.y9e{bottom:1051.442250px;}
.yf0{bottom:1051.444950px;}
.y45{bottom:1051.453650px;}
.y2a{bottom:1056.012300px;}
.yd4{bottom:1058.089200px;}
.y219{bottom:1059.544950px;}
.y299{bottom:1059.548550px;}
.y259{bottom:1059.557400px;}
.y174{bottom:1062.413700px;}
.yd7{bottom:1068.817310px;}
.y9d{bottom:1070.942250px;}
.yef{bottom:1070.944950px;}
.y44{bottom:1070.953650px;}
.ye2{bottom:1072.368402px;}
.y218{bottom:1075.294950px;}
.y298{bottom:1075.298550px;}
.y258{bottom:1075.307400px;}
.yd6{bottom:1079.563932px;}
.ye1{bottom:1085.670942px;}
.yd5{bottom:1090.292042px;}
.y172{bottom:1090.442100px;}
.y9c{bottom:1090.442250px;}
.yee{bottom:1090.444950px;}
.y43{bottom:1090.453650px;}
.y217{bottom:1091.044950px;}
.y297{bottom:1091.048550px;}
.y257{bottom:1091.057400px;}
.y7{bottom:1096.573650px;}
.y6{bottom:1115.319150px;}
.y5{bottom:1118.319150px;}
.y42{bottom:1126.684950px;}
.y7b{bottom:1126.685700px;}
.y7c{bottom:1129.263000px;}
.y41{bottom:1129.384950px;}
.y7a{bottom:1129.385700px;}
.hb{height:24.428250px;}
.h15{height:25.177272px;}
.h16{height:30.152424px;}
.h17{height:30.329791px;}
.h14{height:30.429000px;}
.h11{height:30.576000px;}
.h1e{height:30.702000px;}
.h1f{height:30.855000px;}
.h22{height:30.891720px;}
.h13{height:30.941400px;}
.h9{height:31.206000px;}
.h2{height:32.571000px;}
.h1c{height:33.457500px;}
.h1d{height:34.897500px;}
.h24{height:34.912500px;}
.h23{height:35.688000px;}
.h21{height:36.720000px;}
.ha{height:37.224000px;}
.h1b{height:37.235400px;}
.h4{height:38.367000px;}
.hc{height:39.771000px;}
.h7{height:41.877000px;}
.h8{height:41.985000px;}
.h6{height:44.580000px;}
.h18{height:44.610000px;}
.h3{height:44.622270px;}
.h10{height:46.530000px;}
.h19{height:49.517400px;}
.h1a{height:49.518000px;}
.h12{height:60.191460px;}
.h5{height:60.907770px;}
.hf{height:72.522600px;}
.he{height:80.244000px;}
.hd{height:80.298000px;}
.h20{height:583.165500px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:756.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:67.181700px;}
.xa{left:69.732000px;}
.x20{left:78.795900px;}
.x21{left:84.792150px;}
.x1b{left:86.638500px;}
.x25{left:88.134300px;}
.xd{left:89.298150px;}
.x22{left:90.954150px;}
.x12{left:97.689900px;}
.x24{left:99.073050px;}
.xb{left:104.895750px;}
.xc{left:107.314950px;}
.x26{left:109.508645px;}
.x23{left:112.314431px;}
.x18{left:113.763856px;}
.x1c{left:168.413400px;}
.x1a{left:189.168000px;}
.x6{left:214.243050px;}
.x7{left:216.873150px;}
.x19{left:219.951382px;}
.x14{left:250.169700px;}
.x8{left:311.175000px;}
.x17{left:318.068700px;}
.x13{left:325.019700px;}
.x15{left:352.200182px;}
.x16{left:365.225586px;}
.x1d{left:378.000900px;}
.x1e{left:443.239650px;}
.x9{left:458.705700px;}
.xe{left:461.262150px;}
.x11{left:478.162650px;}
.xf{left:480.762150px;}
.x1f{left:517.500900px;}
.x4{left:563.360850px;}
.x5{left:610.285350px;}
.x10{left:761.785650px;}
.x2{left:785.295000px;}
.x3{left:787.925100px;}
@media print{
.v4{vertical-align:-16.800000pt;}
.v3{vertical-align:-15.744000pt;}
.v6{vertical-align:-14.080000pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.338667pt;}
.v7{vertical-align:19.199467pt;}
.v5{vertical-align:28.800533pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.484576pt;}
.ls1e{letter-spacing:-0.484000pt;}
.ls1b{letter-spacing:-0.481600pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.120000pt;}
.ls24{letter-spacing:-0.040381pt;}
.ls1f{letter-spacing:-0.040333pt;}
.ls1c{letter-spacing:-0.040133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.005867pt;}
.lsf{letter-spacing:0.006933pt;}
.lsd{letter-spacing:0.008533pt;}
.ls15{letter-spacing:0.016533pt;}
.ls14{letter-spacing:0.017067pt;}
.ls5{letter-spacing:0.018667pt;}
.ls2a{letter-spacing:0.019733pt;}
.ls27{letter-spacing:0.020267pt;}
.ls10{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.037333pt;}
.lsa{letter-spacing:0.039415pt;}
.ls1d{letter-spacing:0.040333pt;}
.ls20{letter-spacing:0.040381pt;}
.lse{letter-spacing:0.040533pt;}
.ls11{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.337067pt;}
.ls6{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.469333pt;}
.ls17{letter-spacing:0.494933pt;}
.ls2b{letter-spacing:0.600000pt;}
.ls9{letter-spacing:2.576000pt;}
.ls25{letter-spacing:4.266667pt;}
.ls26{letter-spacing:4.693333pt;}
.ls1{letter-spacing:5.333333pt;}
.lsb{letter-spacing:5.973333pt;}
.ls4{letter-spacing:7.466667pt;}
.ls0{letter-spacing:9.600000pt;}
.ws5{word-spacing:-18.293333pt;}
.ws47{word-spacing:-14.634667pt;}
.ws1d{word-spacing:-12.960000pt;}
.ws4{word-spacing:-11.664000pt;}
.ws1{word-spacing:-10.922667pt;}
.ws24{word-spacing:-10.368000pt;}
.ws54{word-spacing:-10.240000pt;}
.ws1a{word-spacing:-9.984000pt;}
.ws48{word-spacing:-9.360000pt;}
.ws0{word-spacing:-9.216000pt;}
.ws3{word-spacing:-9.072000pt;}
.ws4d{word-spacing:-9.040000pt;}
.ws23{word-spacing:-8.480000pt;}
.ws27{word-spacing:-8.384000pt;}
.ws20{word-spacing:-8.288000pt;}
.ws1e{word-spacing:-8.192000pt;}
.ws19{word-spacing:-7.645867pt;}
.ws1f{word-spacing:-7.488000pt;}
.wsa{word-spacing:-7.466667pt;}
.ws2{word-spacing:-7.168000pt;}
.wsf{word-spacing:-6.690133pt;}
.ws18{word-spacing:-5.973333pt;}
.wsc{word-spacing:-5.333333pt;}
.ws4b{word-spacing:-4.693333pt;}
.ws4a{word-spacing:-4.266667pt;}
.ws10{word-spacing:-2.576000pt;}
.wsb{word-spacing:-1.632000pt;}
.ws26{word-spacing:-1.365333pt;}
.ws9{word-spacing:-1.232000pt;}
.ws1c{word-spacing:-0.981333pt;}
.ws52{word-spacing:-0.600000pt;}
.ws11{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.298667pt;}
.ws4f{word-spacing:-0.280000pt;}
.ws13{word-spacing:-0.256000pt;}
.ws4c{word-spacing:-0.240000pt;}
.ws12{word-spacing:-0.128000pt;}
.ws42{word-spacing:-0.080763pt;}
.ws3f{word-spacing:-0.080667pt;}
.ws16{word-spacing:-0.078830pt;}
.ws3c{word-spacing:-0.040133pt;}
.ws53{word-spacing:-0.040000pt;}
.ws15{word-spacing:-0.039415pt;}
.ws14{word-spacing:-0.032911pt;}
.ws6{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.040133pt;}
.ws41{word-spacing:0.040333pt;}
.ws46{word-spacing:0.040381pt;}
.ws50{word-spacing:0.120000pt;}
.ws25{word-spacing:0.128000pt;}
.ws44{word-spacing:0.213333pt;}
.ws49{word-spacing:0.384000pt;}
.ws3d{word-spacing:0.441467pt;}
.ws40{word-spacing:0.443667pt;}
.ws43{word-spacing:0.444195pt;}
.ws45{word-spacing:0.512000pt;}
.ws3b{word-spacing:0.597333pt;}
.ws51{word-spacing:0.680000pt;}
.ws8{word-spacing:0.933333pt;}
.ws4e{word-spacing:4.960000pt;}
.ws17{word-spacing:5.360431pt;}
.ws21{word-spacing:6.485333pt;}
.ws22{word-spacing:7.338667pt;}
.ws29{word-spacing:55.240000pt;}
.ws28{word-spacing:71.080000pt;}
.ws34{word-spacing:73.400000pt;}
.ws2a{word-spacing:98.400000pt;}
.ws33{word-spacing:111.440000pt;}
.ws35{word-spacing:112.720000pt;}
.ws2d{word-spacing:119.480000pt;}
.ws2b{word-spacing:125.800000pt;}
.ws37{word-spacing:127.520000pt;}
.ws32{word-spacing:143.520000pt;}
.ws3a{word-spacing:148.360000pt;}
.ws2e{word-spacing:151.560000pt;}
.ws36{word-spacing:153.520000pt;}
.ws2f{word-spacing:155.280000pt;}
.ws30{word-spacing:167.520000pt;}
.ws2c{word-spacing:168.640000pt;}
.ws7{word-spacing:313.525333pt;}
.ws39{word-spacing:322.320000pt;}
.ws31{word-spacing:352.720000pt;}
.ws38{word-spacing:367.440000pt;}
.wse{word-spacing:2220.661333pt;}
._8{margin-left:-12.539733pt;}
._13{margin-left:-11.508267pt;}
._f{margin-left:-10.503467pt;}
._c{margin-left:-5.326400pt;}
._b{margin-left:-4.334933pt;}
._1{margin-left:-2.561067pt;}
._0{margin-left:-0.896000pt;}
._6{width:0.926400pt;}
._3{width:1.866667pt;}
._e{width:2.861867pt;}
._5{width:3.926400pt;}
._10{width:4.903467pt;}
._a{width:6.105600pt;}
._7{width:7.416000pt;}
._4{width:8.400000pt;}
._11{width:9.766933pt;}
._2a{width:11.382400pt;}
._12{width:12.612267pt;}
._15{width:13.708800pt;}
._d{width:15.275733pt;}
._9{width:16.886400pt;}
._14{width:18.260267pt;}
._18{width:75.320000pt;}
._16{width:78.760000pt;}
._17{width:83.280000pt;}
._1f{width:121.680000pt;}
._1a{width:122.960000pt;}
._1c{width:129.720000pt;}
._21{width:136.040000pt;}
._1b{width:137.760000pt;}
._1e{width:153.760000pt;}
._1d{width:161.800000pt;}
._23{width:177.760000pt;}
._26{width:195.400000pt;}
._28{width:203.200000pt;}
._27{width:346.920000pt;}
._22{width:369.720000pt;}
._24{width:393.760000pt;}
._19{width:400.400000pt;}
._20{width:402.960000pt;}
._25{width:417.800000pt;}
._29{width:782.064000pt;}
._2{width:882.097067pt;}
.fsb{font-size:26.133333pt;}
.fs7{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fsf{font-size:32.000000pt;}
.fsc{font-size:32.911467pt;}
.fs5{font-size:36.000000pt;}
.fs0{font-size:37.333333pt;}
.fsd{font-size:39.414933pt;}
.fs10{font-size:40.000000pt;}
.fs11{font-size:40.133333pt;}
.fs12{font-size:40.333333pt;}
.fs13{font-size:40.381333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:51.146667pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:69.440000pt;}
.fs2{font-size:69.813333pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1cf{bottom:2.326933pt;}
.y4{bottom:22.769067pt;}
.y3{bottom:34.773600pt;}
.y1{bottom:36.106400pt;}
.y2{bottom:38.373600pt;}
.y9{bottom:56.883067pt;}
.yed{bottom:67.924000pt;}
.yd0{bottom:67.948667pt;}
.y120{bottom:67.951067pt;}
.y77{bottom:67.958800pt;}
.y191{bottom:67.976400pt;}
.y1cb{bottom:68.328400pt;}
.y171{bottom:68.748533pt;}
.y14f{bottom:68.801733pt;}
.y1e7{bottom:69.813600pt;}
.y9b{bottom:70.135333pt;}
.y8{bottom:70.220400pt;}
.y1b2{bottom:71.742133pt;}
.yec{bottom:82.590667pt;}
.ycf{bottom:85.282000pt;}
.y11f{bottom:85.284400pt;}
.y76{bottom:85.292133pt;}
.y190{bottom:85.309733pt;}
.y1ca{bottom:85.661733pt;}
.y170{bottom:86.081867pt;}
.y14e{bottom:86.135067pt;}
.y216{bottom:86.617733pt;}
.y1e6{bottom:87.146933pt;}
.y9a{bottom:87.468667pt;}
.y256{bottom:87.821067pt;}
.y296{bottom:87.828800pt;}
.y1b1{bottom:89.075467pt;}
.yeb{bottom:97.257333pt;}
.y215{bottom:100.617733pt;}
.y255{bottom:101.821067pt;}
.y295{bottom:101.828800pt;}
.yce{bottom:102.615333pt;}
.y11e{bottom:102.617733pt;}
.y75{bottom:102.625467pt;}
.y18f{bottom:102.643067pt;}
.y1c9{bottom:102.995067pt;}
.y14d{bottom:103.468400pt;}
.y1e5{bottom:104.480267pt;}
.y99{bottom:104.802000pt;}
.y1b0{bottom:106.408800pt;}
.y37{bottom:107.041467pt;}
.y40{bottom:107.660133pt;}
.y12b{bottom:111.284400pt;}
.yea{bottom:111.924000pt;}
.y16f{bottom:112.081867pt;}
.y214{bottom:114.617733pt;}
.y254{bottom:115.821067pt;}
.y294{bottom:115.828800pt;}
.ycd{bottom:119.948667pt;}
.y11d{bottom:119.951067pt;}
.y74{bottom:119.958800pt;}
.y18e{bottom:119.976400pt;}
.y1c8{bottom:120.328400pt;}
.y14c{bottom:120.801733pt;}
.y1e4{bottom:121.813600pt;}
.y98{bottom:122.135333pt;}
.y1af{bottom:123.742133pt;}
.y36{bottom:124.374800pt;}
.y3f{bottom:124.993467pt;}
.ye9{bottom:126.590667pt;}
.y213{bottom:128.617733pt;}
.y16e{bottom:129.415200pt;}
.y253{bottom:129.821067pt;}
.y293{bottom:129.828800pt;}
.ycc{bottom:137.282000pt;}
.y11c{bottom:137.284400pt;}
.y73{bottom:137.292133pt;}
.y18d{bottom:137.309733pt;}
.y1c7{bottom:137.661733pt;}
.y14b{bottom:138.135067pt;}
.y1e3{bottom:139.146933pt;}
.y97{bottom:139.468667pt;}
.y1ae{bottom:141.075467pt;}
.y35{bottom:141.708133pt;}
.y3e{bottom:142.326800pt;}
.y212{bottom:142.617733pt;}
.y252{bottom:143.821067pt;}
.y292{bottom:143.828800pt;}
.y12a{bottom:145.951067pt;}
.ycb{bottom:154.615333pt;}
.y11b{bottom:154.617733pt;}
.y72{bottom:154.625467pt;}
.y18c{bottom:154.643067pt;}
.y1c6{bottom:154.995067pt;}
.y14a{bottom:155.468400pt;}
.y1e2{bottom:156.480267pt;}
.y211{bottom:156.617733pt;}
.y96{bottom:156.802000pt;}
.y251{bottom:157.821067pt;}
.y291{bottom:157.828800pt;}
.y1ad{bottom:158.408800pt;}
.y34{bottom:159.041467pt;}
.y3d{bottom:159.660133pt;}
.y210{bottom:170.617733pt;}
.y250{bottom:171.821067pt;}
.y290{bottom:171.828800pt;}
.yca{bottom:171.948667pt;}
.y11a{bottom:171.951067pt;}
.y71{bottom:171.958800pt;}
.y18b{bottom:171.976400pt;}
.y1c5{bottom:172.328400pt;}
.y16d{bottom:172.748400pt;}
.y149{bottom:172.801733pt;}
.y1e1{bottom:173.813600pt;}
.y95{bottom:174.135333pt;}
.y1ac{bottom:175.742133pt;}
.y33{bottom:176.374800pt;}
.y3c{bottom:176.993467pt;}
.y20f{bottom:184.617733pt;}
.y24f{bottom:185.821067pt;}
.y28f{bottom:185.828800pt;}
.yc9{bottom:189.282000pt;}
.y119{bottom:189.284400pt;}
.y70{bottom:189.292133pt;}
.y18a{bottom:189.309733pt;}
.y1c4{bottom:189.661733pt;}
.y16c{bottom:190.081733pt;}
.y148{bottom:190.135067pt;}
.y1e0{bottom:191.146933pt;}
.y94{bottom:191.468667pt;}
.y1ab{bottom:193.075467pt;}
.y32{bottom:193.708133pt;}
.y3b{bottom:194.326800pt;}
.y20e{bottom:198.617733pt;}
.y24e{bottom:199.821067pt;}
.y28e{bottom:199.828800pt;}
.yc8{bottom:206.615333pt;}
.y118{bottom:206.617733pt;}
.y6f{bottom:206.625467pt;}
.y194{bottom:206.643067pt;}
.y1c3{bottom:206.995067pt;}
.y16b{bottom:207.415067pt;}
.y147{bottom:207.468400pt;}
.y1df{bottom:208.480267pt;}
.y93{bottom:208.802000pt;}
.y1aa{bottom:210.408800pt;}
.y31{bottom:211.041467pt;}
.y3a{bottom:211.660133pt;}
.y20d{bottom:212.617733pt;}
.y24d{bottom:213.821067pt;}
.y28d{bottom:213.828800pt;}
.y79{bottom:215.292133pt;}
.yc7{bottom:223.948667pt;}
.y117{bottom:223.951067pt;}
.y6e{bottom:223.958800pt;}
.y189{bottom:223.976400pt;}
.y1c2{bottom:224.328400pt;}
.y16a{bottom:224.748400pt;}
.y1de{bottom:225.813600pt;}
.y92{bottom:226.135333pt;}
.y20c{bottom:226.617733pt;}
.y1a9{bottom:227.742133pt;}
.y24c{bottom:227.821067pt;}
.y28c{bottom:227.828800pt;}
.y39{bottom:228.993467pt;}
.y146{bottom:233.468400pt;}
.y20b{bottom:240.617733pt;}
.yc6{bottom:241.282000pt;}
.y116{bottom:241.284400pt;}
.y6d{bottom:241.292133pt;}
.y193{bottom:241.309733pt;}
.y1c1{bottom:241.661733pt;}
.y24b{bottom:241.821067pt;}
.y28b{bottom:241.828800pt;}
.y169{bottom:242.081733pt;}
.y1dd{bottom:243.146933pt;}
.y91{bottom:243.468667pt;}
.y1a8{bottom:245.075467pt;}
.y30{bottom:245.708133pt;}
.y38{bottom:246.326800pt;}
.y126{bottom:249.951067pt;}
.y78{bottom:249.958800pt;}
.y145{bottom:250.801733pt;}
.y20a{bottom:254.617733pt;}
.y24a{bottom:255.821067pt;}
.y28a{bottom:255.828800pt;}
.yc5{bottom:258.615333pt;}
.y115{bottom:258.617733pt;}
.y6c{bottom:258.625467pt;}
.y192{bottom:258.643067pt;}
.y1c0{bottom:258.995067pt;}
.y168{bottom:259.415067pt;}
.y1dc{bottom:260.480267pt;}
.y90{bottom:260.802000pt;}
.y1a7{bottom:262.408800pt;}
.y209{bottom:268.617733pt;}
.y249{bottom:269.821067pt;}
.y289{bottom:269.828800pt;}
.yc4{bottom:275.948667pt;}
.y114{bottom:275.951067pt;}
.y6b{bottom:275.958800pt;}
.y188{bottom:275.976400pt;}
.y1bf{bottom:276.328400pt;}
.y167{bottom:276.748400pt;}
.y1db{bottom:277.813600pt;}
.y8f{bottom:278.135333pt;}
.y1a6{bottom:279.742133pt;}
.y208{bottom:282.617733pt;}
.y248{bottom:283.821067pt;}
.y288{bottom:283.828800pt;}
.yc3{bottom:293.282000pt;}
.y113{bottom:293.284400pt;}
.y6a{bottom:293.292133pt;}
.y187{bottom:293.309733pt;}
.y1be{bottom:293.661733pt;}
.y166{bottom:294.081733pt;}
.y144{bottom:294.135067pt;}
.y1da{bottom:295.146933pt;}
.y8e{bottom:295.468667pt;}
.y207{bottom:296.617733pt;}
.y1a5{bottom:297.075467pt;}
.y247{bottom:297.821067pt;}
.y287{bottom:297.828800pt;}
.yc2{bottom:310.615333pt;}
.y112{bottom:310.617733pt;}
.y69{bottom:310.625467pt;}
.y186{bottom:310.643067pt;}
.y1bd{bottom:310.995067pt;}
.y165{bottom:311.415067pt;}
.y143{bottom:311.468400pt;}
.y246{bottom:311.821067pt;}
.y286{bottom:311.828800pt;}
.y1d9{bottom:312.480267pt;}
.y8d{bottom:312.802000pt;}
.y1a4{bottom:314.408800pt;}
.y1c{bottom:317.630000pt;}
.y206{bottom:324.617733pt;}
.y245{bottom:325.821067pt;}
.y285{bottom:325.828800pt;}
.yc1{bottom:327.948667pt;}
.y111{bottom:327.951067pt;}
.y68{bottom:327.958800pt;}
.y185{bottom:327.976400pt;}
.y1bc{bottom:328.328400pt;}
.y164{bottom:328.748400pt;}
.y142{bottom:328.801733pt;}
.y1d8{bottom:329.813600pt;}
.y8c{bottom:330.135333pt;}
.y1a3{bottom:331.742133pt;}
.y1b{bottom:334.963333pt;}
.y205{bottom:338.617733pt;}
.y244{bottom:339.821067pt;}
.y284{bottom:339.828800pt;}
.yc0{bottom:345.282000pt;}
.y110{bottom:345.284400pt;}
.y67{bottom:345.292133pt;}
.y184{bottom:345.309733pt;}
.y1bb{bottom:345.661733pt;}
.y163{bottom:346.081733pt;}
.y141{bottom:346.135067pt;}
.y1d7{bottom:347.146933pt;}
.y8b{bottom:347.468667pt;}
.y1a2{bottom:349.075467pt;}
.y1a{bottom:352.296667pt;}
.y204{bottom:352.617733pt;}
.y243{bottom:353.821067pt;}
.y283{bottom:353.828800pt;}
.ybf{bottom:362.615333pt;}
.y10f{bottom:362.617733pt;}
.y66{bottom:362.625467pt;}
.y183{bottom:362.643067pt;}
.y1ba{bottom:362.995067pt;}
.y162{bottom:363.415067pt;}
.y140{bottom:363.468400pt;}
.y1d6{bottom:364.480267pt;}
.y8a{bottom:364.802000pt;}
.y1a1{bottom:366.408800pt;}
.y203{bottom:366.617733pt;}
.y242{bottom:367.821067pt;}
.y282{bottom:367.828800pt;}
.ybe{bottom:379.948667pt;}
.y10e{bottom:379.951067pt;}
.y65{bottom:379.958800pt;}
.y182{bottom:379.976400pt;}
.y1b9{bottom:380.328400pt;}
.y202{bottom:380.617733pt;}
.y161{bottom:380.748400pt;}
.y13f{bottom:380.801733pt;}
.y1d5{bottom:381.813600pt;}
.y241{bottom:381.821067pt;}
.y281{bottom:381.828800pt;}
.y89{bottom:382.135333pt;}
.y1a0{bottom:383.742133pt;}
.y19{bottom:384.252133pt;}
.ye6{bottom:388.625467pt;}
.y201{bottom:394.617733pt;}
.y240{bottom:395.821067pt;}
.y280{bottom:395.828800pt;}
.ybd{bottom:397.282000pt;}
.y10d{bottom:397.284400pt;}
.y64{bottom:397.292133pt;}
.y181{bottom:397.309733pt;}
.y160{bottom:398.081733pt;}
.y13e{bottom:398.135067pt;}
.y1d4{bottom:399.146933pt;}
.y88{bottom:399.468667pt;}
.y19f{bottom:401.075467pt;}
.y18{bottom:404.256133pt;}
.ye5{bottom:405.958800pt;}
.y200{bottom:408.617733pt;}
.y23f{bottom:409.821067pt;}
.y27f{bottom:409.828800pt;}
.ybc{bottom:414.615333pt;}
.y10c{bottom:414.617733pt;}
.y63{bottom:414.625467pt;}
.y15f{bottom:415.415067pt;}
.y13d{bottom:415.468400pt;}
.y1d3{bottom:416.480267pt;}
.y87{bottom:416.802000pt;}
.y19e{bottom:418.408800pt;}
.y1cd{bottom:420.914933pt;}
.y1ff{bottom:422.617733pt;}
.y23e{bottom:423.821067pt;}
.y27e{bottom:423.828800pt;}
.y17{bottom:424.260133pt;}
.ybb{bottom:431.948667pt;}
.y10b{bottom:431.951067pt;}
.y62{bottom:431.958800pt;}
.y15e{bottom:432.748400pt;}
.y13c{bottom:432.801733pt;}
.y1d2{bottom:433.813600pt;}
.y86{bottom:434.135333pt;}
.y1cc{bottom:435.581600pt;}
.y19d{bottom:435.742133pt;}
.y1fe{bottom:436.617733pt;}
.y23d{bottom:437.821067pt;}
.y27d{bottom:437.828800pt;}
.y19a{bottom:437.896400pt;}
.y16{bottom:444.264133pt;}
.yba{bottom:449.282000pt;}
.y10a{bottom:449.284400pt;}
.y61{bottom:449.292133pt;}
.y15d{bottom:450.081733pt;}
.y13b{bottom:450.135067pt;}
.y1fd{bottom:450.617733pt;}
.y1d1{bottom:451.146933pt;}
.y85{bottom:451.468667pt;}
.y23c{bottom:451.821067pt;}
.y27c{bottom:451.828800pt;}
.y199{bottom:452.563067pt;}
.y1ce{bottom:459.501333pt;}
.y15{bottom:464.268133pt;}
.y23b{bottom:465.821067pt;}
.y27b{bottom:465.828800pt;}
.yb9{bottom:466.615333pt;}
.y109{bottom:466.617733pt;}
.y60{bottom:466.625467pt;}
.y198{bottom:467.229733pt;}
.y15c{bottom:467.415067pt;}
.y13a{bottom:467.468400pt;}
.y1d0{bottom:468.480267pt;}
.y84{bottom:468.802000pt;}
.y1fc{bottom:473.273733pt;}
.y1b6{bottom:473.662133pt;}
.y23a{bottom:479.821067pt;}
.y27a{bottom:479.828800pt;}
.y197{bottom:481.896400pt;}
.yb8{bottom:483.948667pt;}
.y108{bottom:483.951067pt;}
.y5f{bottom:483.958800pt;}
.y14{bottom:484.272133pt;}
.y15b{bottom:484.748400pt;}
.y139{bottom:484.801733pt;}
.y83{bottom:486.135333pt;}
.y1b5{bottom:488.328800pt;}
.y12e{bottom:492.617733pt;}
.y239{bottom:493.821067pt;}
.y279{bottom:493.828800pt;}
.y196{bottom:496.563067pt;}
.yb7{bottom:501.282000pt;}
.y107{bottom:501.284400pt;}
.y5e{bottom:501.292133pt;}
.y15a{bottom:502.081733pt;}
.y138{bottom:502.135067pt;}
.y1b4{bottom:502.995467pt;}
.y82{bottom:503.468667pt;}
.y13{bottom:504.276133pt;}
.y1e9{bottom:506.400267pt;}
.y29{bottom:506.642667pt;}
.y238{bottom:507.821067pt;}
.y278{bottom:507.828800pt;}
.y125{bottom:509.951067pt;}
.y195{bottom:511.229733pt;}
.y1b3{bottom:517.662133pt;}
.y1fb{bottom:518.607067pt;}
.yb6{bottom:518.615333pt;}
.y106{bottom:518.617733pt;}
.y5d{bottom:518.625467pt;}
.y159{bottom:519.415067pt;}
.y137{bottom:519.468400pt;}
.y28{bottom:519.980000pt;}
.y81{bottom:520.802000pt;}
.y1e8{bottom:521.066933pt;}
.y237{bottom:521.821067pt;}
.y277{bottom:521.828800pt;}
.y12{bottom:524.280133pt;}
.y27{bottom:533.317333pt;}
.y236{bottom:535.821067pt;}
.y276{bottom:535.828800pt;}
.y1fa{bottom:535.940400pt;}
.yb5{bottom:535.948667pt;}
.y105{bottom:535.951067pt;}
.y5c{bottom:535.958800pt;}
.y158{bottom:536.748400pt;}
.y136{bottom:536.801733pt;}
.y80{bottom:538.135333pt;}
.y11{bottom:544.260133pt;}
.y26{bottom:546.654667pt;}
.y235{bottom:549.821067pt;}
.y275{bottom:549.828800pt;}
.yb4{bottom:553.282000pt;}
.y104{bottom:553.284400pt;}
.y5b{bottom:553.292133pt;}
.y157{bottom:554.081733pt;}
.y135{bottom:554.135067pt;}
.y7f{bottom:555.468667pt;}
.y25{bottom:559.992000pt;}
.y1f9{bottom:561.945733pt;}
.y234{bottom:563.821067pt;}
.y274{bottom:563.828800pt;}
.y10{bottom:564.264133pt;}
.yb3{bottom:570.615333pt;}
.y103{bottom:570.617733pt;}
.y5a{bottom:570.625467pt;}
.y156{bottom:571.415067pt;}
.y134{bottom:571.468400pt;}
.y7e{bottom:572.802000pt;}
.y233{bottom:577.821067pt;}
.y273{bottom:577.828800pt;}
.yf{bottom:584.268133pt;}
.yb2{bottom:587.948667pt;}
.y102{bottom:587.951067pt;}
.y59{bottom:587.958800pt;}
.y155{bottom:588.748400pt;}
.y133{bottom:588.801733pt;}
.y7d{bottom:590.135333pt;}
.y24{bottom:591.324000pt;}
.y232{bottom:591.821067pt;}
.y272{bottom:591.828800pt;}
.y19c{bottom:592.928800pt;}
.y1eb{bottom:594.436800pt;}
.y1b8{bottom:595.419333pt;}
.y129{bottom:596.617733pt;}
.y1f8{bottom:603.279067pt;}
.ye{bottom:604.272133pt;}
.y23{bottom:604.661333pt;}
.y19b{bottom:604.968800pt;}
.yb1{bottom:605.282000pt;}
.y101{bottom:605.284400pt;}
.y58{bottom:605.292133pt;}
.y231{bottom:605.821067pt;}
.y271{bottom:605.828800pt;}
.y154{bottom:606.081733pt;}
.y132{bottom:606.135067pt;}
.y1ea{bottom:606.551200pt;}
.y1b7{bottom:607.519333pt;}
.y128{bottom:613.951067pt;}
.y22{bottom:617.998667pt;}
.y230{bottom:619.817733pt;}
.y270{bottom:619.828800pt;}
.y1f7{bottom:620.612400pt;}
.yb0{bottom:622.615333pt;}
.y100{bottom:622.617733pt;}
.y57{bottom:622.625467pt;}
.y153{bottom:623.415067pt;}
.y131{bottom:623.468400pt;}
.yd{bottom:624.276133pt;}
.yd3{bottom:630.721867pt;}
.y12d{bottom:631.284400pt;}
.y22f{bottom:633.817733pt;}
.y26f{bottom:633.828800pt;}
.y21{bottom:635.536000pt;}
.y1f6{bottom:637.945733pt;}
.yaf{bottom:639.948667pt;}
.yff{bottom:639.951067pt;}
.y56{bottom:639.958800pt;}
.y152{bottom:640.748400pt;}
.y130{bottom:640.801733pt;}
.yc{bottom:644.280133pt;}
.yd2{bottom:645.388533pt;}
.y22e{bottom:647.817733pt;}
.y26e{bottom:647.828800pt;}
.y12c{bottom:648.617733pt;}
.y20{bottom:649.332000pt;}
.y1f5{bottom:655.279067pt;}
.yae{bottom:657.282000pt;}
.yfe{bottom:657.284400pt;}
.y55{bottom:657.292133pt;}
.y151{bottom:658.081733pt;}
.yd1{bottom:660.055200pt;}
.y22d{bottom:661.817733pt;}
.y26d{bottom:661.828800pt;}
.yb{bottom:664.284133pt;}
.y12f{bottom:666.801733pt;}
.y1f{bottom:666.869333pt;}
.y1f4{bottom:672.612400pt;}
.yad{bottom:674.615333pt;}
.yfd{bottom:674.617733pt;}
.y54{bottom:674.625467pt;}
.y150{bottom:675.415067pt;}
.y22c{bottom:675.817733pt;}
.y26c{bottom:675.828800pt;}
.y1e{bottom:680.665333pt;}
.ye8{bottom:683.292133pt;}
.ya{bottom:684.284133pt;}
.y22b{bottom:689.817733pt;}
.y26b{bottom:689.828800pt;}
.y1f3{bottom:689.945733pt;}
.ye3{bottom:690.239333pt;}
.ye0{bottom:690.239922pt;}
.yac{bottom:691.948667pt;}
.yfc{bottom:691.951067pt;}
.y53{bottom:691.958800pt;}
.y1d{bottom:698.202667pt;}
.ydf{bottom:698.408667pt;}
.ye7{bottom:700.625467pt;}
.y22a{bottom:703.817733pt;}
.y26a{bottom:703.828800pt;}
.y1f2{bottom:707.279067pt;}
.yab{bottom:709.282000pt;}
.yfb{bottom:709.284400pt;}
.y52{bottom:709.292133pt;}
.y180{bottom:712.637733pt;}
.y229{bottom:717.817733pt;}
.y269{bottom:717.828800pt;}
.y1f1{bottom:724.612400pt;}
.yaa{bottom:726.615333pt;}
.yfa{bottom:726.617733pt;}
.y51{bottom:726.625467pt;}
.y17f{bottom:731.357733pt;}
.y228{bottom:731.817733pt;}
.y268{bottom:731.828800pt;}
.y2f{bottom:740.609333pt;}
.y1f0{bottom:741.945733pt;}
.ya9{bottom:743.948667pt;}
.y124{bottom:743.951067pt;}
.y50{bottom:743.958800pt;}
.y227{bottom:745.817733pt;}
.y267{bottom:745.828800pt;}
.ydb{bottom:748.447200pt;}
.y17e{bottom:750.077733pt;}
.yf9{bottom:752.617733pt;}
.y127{bottom:752.625467pt;}
.y1ef{bottom:759.279067pt;}
.y226{bottom:759.817733pt;}
.y266{bottom:759.828800pt;}
.ya8{bottom:761.282000pt;}
.y123{bottom:761.284400pt;}
.y4f{bottom:761.292133pt;}
.y2e{bottom:764.609333pt;}
.y17d{bottom:768.797733pt;}
.yf8{bottom:769.951067pt;}
.ye4{bottom:769.958800pt;}
.yda{bottom:772.448533pt;}
.y225{bottom:773.817733pt;}
.y265{bottom:773.828800pt;}
.ya7{bottom:778.615333pt;}
.y122{bottom:778.617733pt;}
.y4e{bottom:778.625467pt;}
.y1ee{bottom:785.284400pt;}
.y17c{bottom:787.517733pt;}
.y224{bottom:787.817733pt;}
.y264{bottom:787.828800pt;}
.yd8{bottom:789.967333pt;}
.ya6{bottom:795.948667pt;}
.y121{bottom:795.951067pt;}
.y4d{bottom:795.958800pt;}
.y2a6{bottom:799.820933pt;}
.y17b{bottom:801.517733pt;}
.y223{bottom:801.817733pt;}
.y2a3{bottom:801.820933pt;}
.y263{bottom:801.828800pt;}
.yd9{bottom:807.487271pt;}
.ya5{bottom:813.282000pt;}
.yf7{bottom:813.284400pt;}
.y4c{bottom:813.292133pt;}
.y222{bottom:815.817733pt;}
.y2a2{bottom:815.820933pt;}
.y262{bottom:815.828800pt;}
.y2d{bottom:816.000267pt;}
.y2a5{bottom:817.154267pt;}
.y1ed{bottom:817.927289pt;}
.y17a{bottom:820.237733pt;}
.y221{bottom:829.817733pt;}
.y2a1{bottom:829.820933pt;}
.y261{bottom:829.828800pt;}
.ydd{bottom:830.036112pt;}
.y1ec{bottom:830.041689pt;}
.ya4{bottom:830.615333pt;}
.yf6{bottom:830.617733pt;}
.y4b{bottom:830.625467pt;}
.y179{bottom:834.237733pt;}
.y2a4{bottom:842.487600pt;}
.ydc{bottom:843.634264pt;}
.y220{bottom:843.817733pt;}
.y2a0{bottom:843.820933pt;}
.y260{bottom:843.828800pt;}
.y2c{bottom:846.672267pt;}
.ya3{bottom:847.948667pt;}
.yf5{bottom:847.951067pt;}
.y4a{bottom:847.958800pt;}
.y178{bottom:852.957733pt;}
.y21f{bottom:857.817733pt;}
.y29f{bottom:857.820933pt;}
.y25f{bottom:857.828800pt;}
.ya2{bottom:865.282000pt;}
.yf4{bottom:865.284400pt;}
.y49{bottom:865.292133pt;}
.y177{bottom:871.677733pt;}
.y21e{bottom:871.817733pt;}
.y29e{bottom:871.820933pt;}
.y25e{bottom:871.828800pt;}
.y2b{bottom:877.344267pt;}
.ya1{bottom:882.615333pt;}
.yf3{bottom:882.617733pt;}
.y48{bottom:882.625467pt;}
.y21d{bottom:885.817733pt;}
.y29d{bottom:885.820933pt;}
.y25d{bottom:885.828800pt;}
.y176{bottom:890.397733pt;}
.y21c{bottom:899.817733pt;}
.y29c{bottom:899.820933pt;}
.y25c{bottom:899.828800pt;}
.ya0{bottom:899.948667pt;}
.yf2{bottom:899.951067pt;}
.y47{bottom:899.958800pt;}
.y175{bottom:909.117733pt;}
.yde{bottom:913.080933pt;}
.y21b{bottom:913.817733pt;}
.y29b{bottom:913.820933pt;}
.y25b{bottom:913.828800pt;}
.y9f{bottom:917.282000pt;}
.yf1{bottom:917.284400pt;}
.y46{bottom:917.292133pt;}
.y21a{bottom:927.817733pt;}
.y29a{bottom:927.820933pt;}
.y25a{bottom:927.828800pt;}
.y173{bottom:930.367733pt;}
.y9e{bottom:934.615333pt;}
.yf0{bottom:934.617733pt;}
.y45{bottom:934.625467pt;}
.y2a{bottom:938.677600pt;}
.yd4{bottom:940.523733pt;}
.y219{bottom:941.817733pt;}
.y299{bottom:941.820933pt;}
.y259{bottom:941.828800pt;}
.y174{bottom:944.367733pt;}
.yd7{bottom:950.059831pt;}
.y9d{bottom:951.948667pt;}
.yef{bottom:951.951067pt;}
.y44{bottom:951.958800pt;}
.ye2{bottom:953.216357pt;}
.y218{bottom:955.817733pt;}
.y298{bottom:955.820933pt;}
.y258{bottom:955.828800pt;}
.yd6{bottom:959.612384pt;}
.ye1{bottom:965.040837pt;}
.yd5{bottom:969.148481pt;}
.y172{bottom:969.281867pt;}
.y9c{bottom:969.282000pt;}
.yee{bottom:969.284400pt;}
.y43{bottom:969.292133pt;}
.y217{bottom:969.817733pt;}
.y297{bottom:969.820933pt;}
.y257{bottom:969.828800pt;}
.y7{bottom:974.732133pt;}
.y6{bottom:991.394800pt;}
.y5{bottom:994.061467pt;}
.y42{bottom:1001.497733pt;}
.y7b{bottom:1001.498400pt;}
.y7c{bottom:1003.789333pt;}
.y41{bottom:1003.897733pt;}
.y7a{bottom:1003.898400pt;}
.hb{height:21.714000pt;}
.h15{height:22.379797pt;}
.h16{height:26.802155pt;}
.h17{height:26.959814pt;}
.h14{height:27.048000pt;}
.h11{height:27.178667pt;}
.h1e{height:27.290667pt;}
.h1f{height:27.426667pt;}
.h22{height:27.459307pt;}
.h13{height:27.503467pt;}
.h9{height:27.738667pt;}
.h2{height:28.952000pt;}
.h1c{height:29.740000pt;}
.h1d{height:31.020000pt;}
.h24{height:31.033333pt;}
.h23{height:31.722667pt;}
.h21{height:32.640000pt;}
.ha{height:33.088000pt;}
.h1b{height:33.098133pt;}
.h4{height:34.104000pt;}
.hc{height:35.352000pt;}
.h7{height:37.224000pt;}
.h8{height:37.320000pt;}
.h6{height:39.626667pt;}
.h18{height:39.653333pt;}
.h3{height:39.664240pt;}
.h10{height:41.360000pt;}
.h19{height:44.015467pt;}
.h1a{height:44.016000pt;}
.h12{height:53.503520pt;}
.h5{height:54.140240pt;}
.hf{height:64.464533pt;}
.he{height:71.328000pt;}
.hd{height:71.376000pt;}
.h20{height:518.369333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:672.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.717067pt;}
.xa{left:61.984000pt;}
.x20{left:70.040800pt;}
.x21{left:75.370800pt;}
.x1b{left:77.012000pt;}
.x25{left:78.341600pt;}
.xd{left:79.376133pt;}
.x22{left:80.848133pt;}
.x12{left:86.835467pt;}
.x24{left:88.064933pt;}
.xb{left:93.240667pt;}
.xc{left:95.391067pt;}
.x26{left:97.341017pt;}
.x23{left:99.835050pt;}
.x18{left:101.123428pt;}
.x1c{left:149.700800pt;}
.x1a{left:168.149333pt;}
.x6{left:190.438267pt;}
.x7{left:192.776133pt;}
.x19{left:195.512340pt;}
.x14{left:222.373067pt;}
.x8{left:276.600000pt;}
.x17{left:282.727733pt;}
.x13{left:288.906400pt;}
.x15{left:313.066828pt;}
.x16{left:324.644965pt;}
.x1d{left:336.000800pt;}
.x1e{left:393.990800pt;}
.x9{left:407.738400pt;}
.xe{left:410.010800pt;}
.x11{left:425.033467pt;}
.xf{left:427.344133pt;}
.x1f{left:460.000800pt;}
.x4{left:500.765200pt;}
.x5{left:542.475867pt;}
.x10{left:677.142800pt;}
.x2{left:698.040000pt;}
.x3{left:700.377867pt;}
}




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