
    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_8861eb3072702df683d68ad6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_8526eca8b94d857460f9fc49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_dcec68b4ad26b59d25bb8e72.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_63fffd41a9d718214433c5cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_ef700a922607bb0fe82c2dbf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_33b6b4f788d9d409b32171c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_2d19ac0fb44428a3beed9f6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.841000;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_a6f5a41b9cc4ca4d43befbea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.744000;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_ab596d665cc8a7ecef25ee06.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.158000;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_8f136803c16b6c387577fdb8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.158000;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_56a513dee0c56564cee91911.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.166000;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_4f984f2c62b5dafc3743e0f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.142000;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_ab596d665cc8a7ecef25ee06.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.158000;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_fcc5432cef353aa0022970c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904785;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_02fabe642781f228777150b8.woff2')format("woff");}.fff{font-family:fff;line-height:0.888672;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_56a513dee0c56564cee91911.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.166000;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_8f136803c16b6c387577fdb8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.158000;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_ab596d665cc8a7ecef25ee06.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.158000;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_8f136803c16b6c387577fdb8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.158000;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_4f984f2c62b5dafc3743e0f6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.142000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.799400px;}
.v3{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.883400px;}
.v1{vertical-align:23.400000px;}
.ls31{letter-spacing:-0.990000px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.016800px;}
.ls2e{letter-spacing:0.033000px;}
.ls11{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.066000px;}
.ls2f{letter-spacing:0.099000px;}
.ls15{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.192600px;}
.ls7{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.257400px;}
.ls1a{letter-spacing:0.264000px;}
.ls1e{letter-spacing:0.297000px;}
.ls19{letter-spacing:0.330000px;}
.ls1d{letter-spacing:0.363000px;}
.ls8{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.462000px;}
.ls24{letter-spacing:0.471900px;}
.ls1b{letter-spacing:0.528000px;}
.ls33{letter-spacing:0.594000px;}
.ls30{letter-spacing:0.621000px;}
.ls29{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.685200px;}
.ls1{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.726000px;}
.ls2d{letter-spacing:0.759000px;}
.ls12{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.858000px;}
.ls2a{letter-spacing:0.918000px;}
.ls22{letter-spacing:0.924000px;}
.ls21{letter-spacing:0.990000px;}
.ls36{letter-spacing:1.023000px;}
.ls2{letter-spacing:1.026000px;}
.lse{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.188000px;}
.ls32{letter-spacing:1.287000px;}
.lsd{letter-spacing:1.320000px;}
.ls25{letter-spacing:1.458000px;}
.ls35{letter-spacing:1.584000px;}
.ls23{letter-spacing:1.728000px;}
.ls2b{letter-spacing:1.782000px;}
.ls20{letter-spacing:1.848000px;}
.ls37{letter-spacing:2.442000px;}
.ls34{letter-spacing:5.940000px;}
.ls10{letter-spacing:53.838000px;}
.ls2c{letter-spacing:2082.471000px;}
.ls28{letter-spacing:2094.399000px;}
.ls16{letter-spacing:2115.471000px;}
.ls6{letter-spacing:2127.399000px;}
.ls0{letter-spacing:2844.088800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws18{word-spacing:-16.500000px;}
.wsad{word-spacing:-14.883000px;}
.wsaa{word-spacing:-14.190000px;}
.ws3c{word-spacing:-13.992000px;}
.wsa5{word-spacing:-13.893000px;}
.ws19{word-spacing:-13.860000px;}
.ws3b{word-spacing:-12.750000px;}
.ws2{word-spacing:-11.502000px;}
.ws97{word-spacing:-9.867000px;}
.ws78{word-spacing:-9.480900px;}
.ws83{word-spacing:-9.266400px;}
.ws1a{word-spacing:-9.009000px;}
.ws84{word-spacing:-8.073000px;}
.ws1b{word-spacing:-7.371000px;}
.ws6e{word-spacing:-1.848000px;}
.ws82{word-spacing:-1.728000px;}
.wsb0{word-spacing:-1.584000px;}
.ws8e{word-spacing:-1.458000px;}
.ws98{word-spacing:-1.320000px;}
.ws8f{word-spacing:-1.080000px;}
.wsb1{word-spacing:-1.056000px;}
.ws12{word-spacing:-1.026000px;}
.ws70{word-spacing:-0.924000px;}
.ws9f{word-spacing:-0.918000px;}
.wsaf{word-spacing:-0.858000px;}
.ws9a{word-spacing:-0.792000px;}
.ws8{word-spacing:-0.702000px;}
.ws30{word-spacing:-0.660000px;}
.ws9b{word-spacing:-0.648000px;}
.wsae{word-spacing:-0.594000px;}
.wsa0{word-spacing:-0.432000px;}
.ws1d{word-spacing:-0.396000px;}
.wsac{word-spacing:-0.330000px;}
.wsb4{word-spacing:-0.264000px;}
.ws42{word-spacing:-0.198000px;}
.wsa4{word-spacing:-0.162000px;}
.ws7b{word-spacing:-0.132000px;}
.ws39{word-spacing:-0.108000px;}
.ws76{word-spacing:-0.066000px;}
.ws3a{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wsa8{word-spacing:0.066000px;}
.ws4a{word-spacing:0.132000px;}
.ws7c{word-spacing:0.198000px;}
.ws4b{word-spacing:0.264000px;}
.ws37{word-spacing:0.270000px;}
.ws7e{word-spacing:0.330000px;}
.ws65{word-spacing:0.396000px;}
.ws5c{word-spacing:0.462000px;}
.ws88{word-spacing:0.528000px;}
.ws5e{word-spacing:0.540000px;}
.ws8b{word-spacing:0.594000px;}
.ws69{word-spacing:0.660000px;}
.ws58{word-spacing:0.726000px;}
.ws36{word-spacing:0.756000px;}
.wsa7{word-spacing:0.792000px;}
.ws61{word-spacing:0.840000px;}
.ws75{word-spacing:0.858000px;}
.ws7d{word-spacing:0.924000px;}
.ws23{word-spacing:0.990000px;}
.ws5a{word-spacing:1.056000px;}
.ws68{word-spacing:1.122000px;}
.ws2c{word-spacing:1.188000px;}
.ws56{word-spacing:1.254000px;}
.ws5{word-spacing:1.296000px;}
.ws6d{word-spacing:1.320000px;}
.ws95{word-spacing:1.386000px;}
.ws48{word-spacing:1.452000px;}
.ws13{word-spacing:1.458000px;}
.ws80{word-spacing:1.518000px;}
.ws52{word-spacing:1.584000px;}
.ws85{word-spacing:1.650000px;}
.ws86{word-spacing:1.716000px;}
.ws60{word-spacing:1.740000px;}
.ws6f{word-spacing:1.782000px;}
.wsd{word-spacing:1.836000px;}
.ws77{word-spacing:1.848000px;}
.ws57{word-spacing:1.914000px;}
.wsab{word-spacing:1.980000px;}
.ws90{word-spacing:2.046000px;}
.ws44{word-spacing:2.112000px;}
.ws2f{word-spacing:2.178000px;}
.ws92{word-spacing:2.244000px;}
.ws64{word-spacing:2.310000px;}
.ws54{word-spacing:2.376000px;}
.ws87{word-spacing:2.442000px;}
.ws33{word-spacing:2.508000px;}
.wsb{word-spacing:2.538000px;}
.ws3e{word-spacing:2.574000px;}
.wsa6{word-spacing:2.592000px;}
.ws7a{word-spacing:2.640000px;}
.ws53{word-spacing:2.706000px;}
.ws9d{word-spacing:2.754000px;}
.ws79{word-spacing:2.772000px;}
.ws2b{word-spacing:2.838000px;}
.wsa9{word-spacing:2.904000px;}
.wse{word-spacing:2.916000px;}
.ws62{word-spacing:2.970000px;}
.ws8d{word-spacing:3.036000px;}
.ws16{word-spacing:3.078000px;}
.ws31{word-spacing:3.102000px;}
.ws20{word-spacing:3.168000px;}
.ws55{word-spacing:3.234000px;}
.ws67{word-spacing:3.300000px;}
.ws10{word-spacing:3.348000px;}
.ws34{word-spacing:3.366000px;}
.wsb2{word-spacing:3.432000px;}
.ws46{word-spacing:3.498000px;}
.ws6a{word-spacing:3.564000px;}
.wsf{word-spacing:3.618000px;}
.ws4f{word-spacing:3.630000px;}
.ws38{word-spacing:3.672000px;}
.ws25{word-spacing:3.696000px;}
.ws4e{word-spacing:3.762000px;}
.ws9c{word-spacing:3.780000px;}
.ws72{word-spacing:3.828000px;}
.ws17{word-spacing:3.888000px;}
.ws1f{word-spacing:3.894000px;}
.ws71{word-spacing:3.960000px;}
.ws2d{word-spacing:4.026000px;}
.ws9e{word-spacing:4.050000px;}
.ws3f{word-spacing:4.092000px;}
.ws11{word-spacing:4.104000px;}
.ws14{word-spacing:4.158000px;}
.ws91{word-spacing:4.224000px;}
.ws51{word-spacing:4.290000px;}
.ws66{word-spacing:4.356000px;}
.ws4{word-spacing:4.416000px;}
.ws2e{word-spacing:4.422000px;}
.ws73{word-spacing:4.488000px;}
.ws27{word-spacing:4.554000px;}
.ws15{word-spacing:4.590000px;}
.ws5b{word-spacing:4.620000px;}
.wsa{word-spacing:4.644000px;}
.ws96{word-spacing:4.686000px;}
.wsc{word-spacing:4.752000px;}
.ws4d{word-spacing:4.818000px;}
.ws6b{word-spacing:4.884000px;}
.ws5d{word-spacing:4.950000px;}
.ws47{word-spacing:5.016000px;}
.ws1e{word-spacing:5.082000px;}
.wsa1{word-spacing:5.148000px;}
.ws6c{word-spacing:5.214000px;}
.ws74{word-spacing:5.280000px;}
.wsa2{word-spacing:5.346000px;}
.ws8a{word-spacing:5.412000px;}
.ws43{word-spacing:5.478000px;}
.ws49{word-spacing:5.544000px;}
.ws41{word-spacing:5.610000px;}
.ws9{word-spacing:5.670000px;}
.ws2a{word-spacing:5.676000px;}
.ws5f{word-spacing:5.700000px;}
.ws8c{word-spacing:5.742000px;}
.ws7f{word-spacing:5.808000px;}
.ws81{word-spacing:5.832000px;}
.ws32{word-spacing:5.874000px;}
.ws45{word-spacing:5.940000px;}
.ws59{word-spacing:6.006000px;}
.ws26{word-spacing:6.072000px;}
.ws21{word-spacing:6.138000px;}
.ws93{word-spacing:6.204000px;}
.ws89{word-spacing:6.270000px;}
.ws35{word-spacing:6.336000px;}
.ws63{word-spacing:6.402000px;}
.ws22{word-spacing:6.468000px;}
.wsa3{word-spacing:6.534000px;}
.ws99{word-spacing:6.600000px;}
.ws50{word-spacing:6.666000px;}
.ws24{word-spacing:6.732000px;}
.ws40{word-spacing:6.798000px;}
.ws4c{word-spacing:6.864000px;}
.ws1c{word-spacing:6.930000px;}
.ws94{word-spacing:6.996000px;}
.ws28{word-spacing:7.722000px;}
.wsb3{word-spacing:7.986000px;}
.ws29{word-spacing:8.118000px;}
.ws6{word-spacing:10.656000px;}
.ws7{word-spacing:13.344000px;}
.ws3d{word-spacing:84.708000px;}
._9{margin-left:-84.708000px;}
._2{margin-left:-24.000000px;}
._3{margin-left:-22.693800px;}
._16{margin-left:-21.318000px;}
._c{margin-left:-19.998000px;}
._13{margin-left:-18.348000px;}
._f{margin-left:-15.510000px;}
._15{margin-left:-13.860000px;}
._10{margin-left:-2.235000px;}
._5{margin-left:-1.026000px;}
._7{width:1.188000px;}
._17{width:5.412000px;}
._b{width:7.128000px;}
._1{width:8.880000px;}
._4{width:9.882000px;}
._0{width:13.344000px;}
._12{width:25.379400px;}
._a{width:27.504000px;}
._11{width:29.699400px;}
._14{width:31.373400px;}
._e{width:33.911400px;}
._d{width:46.278000px;}
._8{width:53.783400px;}
._6{width:84.708000px;}
.fc2{color:rgb(96,139,155);}
.fc1{color:rgb(156,193,232);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.100000px;}
.fsb{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:50.700000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y226{bottom:138.189000px;}
.y1ad{bottom:138.192000px;}
.y1d2{bottom:138.195000px;}
.y61{bottom:138.201000px;}
.y208{bottom:138.828000px;}
.y16a{bottom:138.829350px;}
.y109{bottom:139.158600px;}
.y9{bottom:140.316450px;}
.y8b{bottom:142.239000px;}
.y24b{bottom:149.224350px;}
.y8{bottom:153.108450px;}
.y135{bottom:154.179000px;}
.y60{bottom:154.185000px;}
.yb6{bottom:158.226000px;}
.y207{bottom:159.618000px;}
.y169{bottom:159.619350px;}
.y108{bottom:159.948600px;}
.y23f{bottom:169.513650px;}
.y24a{bottom:170.014350px;}
.y5f{bottom:170.169000px;}
.y7{bottom:172.269300px;}
.y134{bottom:174.213000px;}
.y206{bottom:180.408000px;}
.y168{bottom:180.409350px;}
.y107{bottom:180.738600px;}
.y5e{bottom:186.153000px;}
.y1d1{bottom:190.200000px;}
.y8a{bottom:190.237350px;}
.y23e{bottom:190.303650px;}
.y225{bottom:190.538550px;}
.y6{bottom:191.445300px;}
.y205{bottom:201.198000px;}
.y167{bottom:201.199350px;}
.y106{bottom:201.528600px;}
.y5d{bottom:206.187000px;}
.yb5{bottom:207.971850px;}
.ye0{bottom:208.846200px;}
.y5{bottom:210.621300px;}
.y89{bottom:211.027350px;}
.y224{bottom:211.328550px;}
.y1ac{bottom:211.642050px;}
.y1d0{bottom:218.127000px;}
.y5c{bottom:218.130000px;}
.y190{bottom:218.136000px;}
.y23d{bottom:221.488650px;}
.y204{bottom:221.988000px;}
.y166{bottom:221.989350px;}
.y105{bottom:222.318600px;}
.y4{bottom:223.413300px;}
.yb4{bottom:225.566850px;}
.ydf{bottom:229.636200px;}
.y88{bottom:231.817350px;}
.y223{bottom:232.118550px;}
.y1ab{bottom:232.432050px;}
.y133{bottom:232.499100px;}
.y5b{bottom:234.114000px;}
.y18f{bottom:234.120000px;}
.y1cf{bottom:238.161000px;}
.y23c{bottom:242.278650px;}
.y3{bottom:242.589300px;}
.y203{bottom:242.778000px;}
.y165{bottom:242.779350px;}
.y18e{bottom:250.104000px;}
.yde{bottom:250.426200px;}
.y87{bottom:252.607350px;}
.y222{bottom:252.908550px;}
.y1e1{bottom:253.174350px;}
.y1aa{bottom:253.222050px;}
.y132{bottom:253.289100px;}
.y5a{bottom:254.148000px;}
.y2{bottom:255.381300px;}
.yb3{bottom:259.690200px;}
.y104{bottom:262.694100px;}
.y202{bottom:263.568000px;}
.y164{bottom:263.569350px;}
.y18d{bottom:266.088000px;}
.y59{bottom:270.135000px;}
.ydd{bottom:271.216200px;}
.y147{bottom:272.077800px;}
.y86{bottom:273.397350px;}
.y23b{bottom:273.463650px;}
.y221{bottom:273.698550px;}
.y1e0{bottom:273.964350px;}
.y1a9{bottom:274.012050px;}
.y131{bottom:274.079100px;}
.yb2{bottom:280.480200px;}
.y201{bottom:284.358000px;}
.y163{bottom:284.359350px;}
.y18c{bottom:286.122000px;}
.ydc{bottom:292.006200px;}
.y146{bottom:292.867800px;}
.y85{bottom:294.187350px;}
.y23a{bottom:294.253650px;}
.y220{bottom:294.488550px;}
.y1df{bottom:294.754350px;}
.y130{bottom:294.790050px;}
.y1a8{bottom:294.802050px;}
.y1ce{bottom:297.116250px;}
.yb1{bottom:301.270200px;}
.y18b{bottom:302.109000px;}
.y200{bottom:305.148000px;}
.y162{bottom:305.149350px;}
.y18a{bottom:314.049000px;}
.y84{bottom:314.977350px;}
.y239{bottom:315.043650px;}
.y21f{bottom:315.278550px;}
.y1de{bottom:315.544350px;}
.y12f{bottom:315.580050px;}
.y1a7{bottom:315.592050px;}
.y103{bottom:317.870100px;}
.y1cd{bottom:317.906250px;}
.yb0{bottom:322.027650px;}
.ydb{bottom:323.093100px;}
.y249{bottom:325.939350px;}
.y145{bottom:333.235050px;}
.y189{bottom:334.083000px;}
.y83{bottom:335.767350px;}
.y238{bottom:335.833650px;}
.y21e{bottom:336.068550px;}
.y1ff{bottom:336.333000px;}
.y161{bottom:336.334350px;}
.y12e{bottom:336.370050px;}
.y1a6{bottom:336.382050px;}
.y102{bottom:338.660100px;}
.y1cc{bottom:338.696250px;}
.y58{bottom:340.032150px;}
.yaf{bottom:342.817650px;}
.yda{bottom:343.883100px;}
.y82{bottom:356.557350px;}
.y237{bottom:356.623650px;}
.y21d{bottom:356.858550px;}
.y1fe{bottom:357.123000px;}
.y160{bottom:357.124350px;}
.y12d{bottom:357.160050px;}
.y1a5{bottom:357.172050px;}
.y101{bottom:359.450100px;}
.y57{bottom:360.822150px;}
.yae{bottom:363.607650px;}
.yd9{bottom:364.673100px;}
.y81{bottom:377.347350px;}
.y21c{bottom:377.648550px;}
.y1fd{bottom:377.913000px;}
.y15f{bottom:377.914350px;}
.y12c{bottom:377.950050px;}
.y1a4{bottom:377.962050px;}
.y100{bottom:380.240100px;}
.y56{bottom:381.536100px;}
.yad{bottom:384.397650px;}
.y1cb{bottom:384.759000px;}
.yd8{bottom:385.463100px;}
.y236{bottom:387.808650px;}
.y144{bottom:388.371000px;}
.y188{bottom:396.799800px;}
.y80{bottom:398.137350px;}
.y21b{bottom:398.438550px;}
.y1fc{bottom:398.703000px;}
.y15e{bottom:398.704350px;}
.y12b{bottom:398.740050px;}
.y1a3{bottom:398.752050px;}
.yff{bottom:401.030100px;}
.y55{bottom:402.326100px;}
.yac{bottom:405.187650px;}
.yd7{bottom:406.253100px;}
.y235{bottom:408.598650px;}
.y248{bottom:409.099350px;}
.y143{bottom:409.161000px;}
.y187{bottom:417.589800px;}
.y21a{bottom:419.228550px;}
.y1fb{bottom:419.493000px;}
.y15d{bottom:419.494350px;}
.y12a{bottom:419.530050px;}
.y1a2{bottom:419.542050px;}
.yfe{bottom:421.820100px;}
.y54{bottom:423.116100px;}
.yab{bottom:425.977650px;}
.yd6{bottom:427.043100px;}
.y7f{bottom:429.322350px;}
.y234{bottom:429.388650px;}
.y247{bottom:429.889350px;}
.y142{bottom:429.951000px;}
.y219{bottom:440.018550px;}
.y1fa{bottom:440.283000px;}
.y15c{bottom:440.284350px;}
.y129{bottom:440.320050px;}
.y1a1{bottom:440.332050px;}
.yfd{bottom:442.610100px;}
.y53{bottom:443.906100px;}
.yaa{bottom:446.767650px;}
.yd5{bottom:447.833100px;}
.y7e{bottom:450.112350px;}
.y1ca{bottom:450.734100px;}
.y141{bottom:450.741000px;}
.y186{bottom:457.942050px;}
.y233{bottom:460.573650px;}
.y1f9{bottom:461.073000px;}
.y15b{bottom:461.074350px;}
.y128{bottom:461.110050px;}
.y1a0{bottom:461.122050px;}
.yfc{bottom:463.400100px;}
.y52{bottom:464.696100px;}
.ya9{bottom:467.557650px;}
.y7d{bottom:470.902350px;}
.y218{bottom:471.203550px;}
.y1c9{bottom:471.524100px;}
.y140{bottom:471.531000px;}
.yd4{bottom:479.018100px;}
.y232{bottom:481.363650px;}
.y1f8{bottom:481.863000px;}
.y15a{bottom:481.864350px;}
.y127{bottom:481.900050px;}
.y19f{bottom:481.912050px;}
.y51{bottom:485.486100px;}
.y7c{bottom:491.692350px;}
.y217{bottom:491.993550px;}
.y1c8{bottom:492.314100px;}
.y13f{bottom:492.321000px;}
.yfb{bottom:494.585100px;}
.ya8{bottom:496.845150px;}
.y28{bottom:498.933750px;}
.y33{bottom:498.960750px;}
.yd3{bottom:499.808100px;}
.y1f7{bottom:502.653000px;}
.y159{bottom:502.654350px;}
.y126{bottom:502.690050px;}
.y19e{bottom:502.702050px;}
.y50{bottom:506.276100px;}
.y7b{bottom:512.482350px;}
.y231{bottom:512.548650px;}
.y216{bottom:512.783550px;}
.y1c7{bottom:513.104100px;}
.y13e{bottom:513.111000px;}
.y185{bottom:513.118050px;}
.y27{bottom:514.917750px;}
.y32{bottom:514.944750px;}
.yfa{bottom:515.375100px;}
.ya7{bottom:517.635150px;}
.yd2{bottom:520.598100px;}
.y1f6{bottom:523.443000px;}
.y158{bottom:523.444350px;}
.y125{bottom:523.480050px;}
.y19d{bottom:523.492050px;}
.y4f{bottom:527.066100px;}
.y26{bottom:530.901750px;}
.y31{bottom:530.928750px;}
.y7a{bottom:533.272350px;}
.y230{bottom:533.338650px;}
.y215{bottom:533.573550px;}
.y246{bottom:533.839350px;}
.y1c6{bottom:533.894100px;}
.y13d{bottom:533.901000px;}
.y184{bottom:533.908050px;}
.yf9{bottom:536.165100px;}
.ya6{bottom:538.425150px;}
.yd1{bottom:541.388100px;}
.y1f5{bottom:544.233000px;}
.y1dd{bottom:544.234350px;}
.y124{bottom:544.270050px;}
.y19c{bottom:544.282050px;}
.y25{bottom:546.885750px;}
.y30{bottom:546.912750px;}
.y4e{bottom:547.856100px;}
.y257{bottom:548.210700px;}
.y79{bottom:554.062350px;}
.y214{bottom:554.363550px;}
.y157{bottom:554.629350px;}
.y1c5{bottom:554.684100px;}
.y13c{bottom:554.691000px;}
.y183{bottom:554.698050px;}
.yf8{bottom:556.955100px;}
.ya5{bottom:559.215150px;}
.yd0{bottom:562.178100px;}
.y24{bottom:562.869750px;}
.y2f{bottom:562.896750px;}
.y22f{bottom:564.523650px;}
.y1f4{bottom:565.023000px;}
.y1dc{bottom:565.024350px;}
.y123{bottom:565.060050px;}
.y19b{bottom:565.072050px;}
.y4d{bottom:568.646100px;}
.y78{bottom:574.852350px;}
.y213{bottom:575.153550px;}
.y156{bottom:575.419350px;}
.y1c4{bottom:575.474100px;}
.y13b{bottom:575.481000px;}
.y182{bottom:575.488050px;}
.yf7{bottom:577.745100px;}
.y2e{bottom:578.880750px;}
.y256{bottom:579.395700px;}
.ya4{bottom:580.005150px;}
.ycf{bottom:582.968100px;}
.y1f3{bottom:585.813000px;}
.y1db{bottom:585.814350px;}
.y122{bottom:585.850050px;}
.y23{bottom:586.845750px;}
.y4c{bottom:589.436100px;}
.y2d{bottom:594.864750px;}
.y77{bottom:595.642350px;}
.y22e{bottom:595.708650px;}
.y212{bottom:595.943550px;}
.y155{bottom:596.209350px;}
.y19a{bottom:596.257050px;}
.y1c3{bottom:596.264100px;}
.y181{bottom:596.278050px;}
.yf6{bottom:598.535100px;}
.ya3{bottom:600.735600px;}
.yce{bottom:603.758100px;}
.y1f2{bottom:606.603000px;}
.y1da{bottom:606.604350px;}
.y121{bottom:606.640050px;}
.y13a{bottom:606.666000px;}
.y4b{bottom:610.226100px;}
.y255{bottom:610.580700px;}
.y2c{bottom:610.848750px;}
.y76{bottom:616.432350px;}
.y211{bottom:616.733550px;}
.y154{bottom:616.999350px;}
.y199{bottom:617.047050px;}
.y1c2{bottom:617.054100px;}
.y180{bottom:617.059050px;}
.ya2{bottom:621.525600px;}
.ycd{bottom:624.548100px;}
.y2b{bottom:626.832750px;}
.y22d{bottom:626.893650px;}
.y1d9{bottom:627.394350px;}
.y139{bottom:627.456000px;}
.y4a{bottom:631.016100px;}
.y210{bottom:637.523550px;}
.y1f1{bottom:637.788000px;}
.y153{bottom:637.789350px;}
.y120{bottom:637.825050px;}
.y198{bottom:637.837050px;}
.y17f{bottom:637.849050px;}
.y254{bottom:641.765700px;}
.ya1{bottom:642.315600px;}
.y2a{bottom:642.816750px;}
.yf5{bottom:644.597850px;}
.ycc{bottom:645.338100px;}
.y75{bottom:647.617350px;}
.y22c{bottom:647.683650px;}
.y1d8{bottom:648.184350px;}
.y1c1{bottom:648.239100px;}
.y138{bottom:648.246000px;}
.y49{bottom:651.806100px;}
.y20f{bottom:658.313550px;}
.y1f0{bottom:658.578000px;}
.y152{bottom:658.579350px;}
.y11f{bottom:658.615050px;}
.y197{bottom:658.627050px;}
.y17e{bottom:658.639050px;}
.y29{bottom:658.800750px;}
.ya0{bottom:663.105600px;}
.ycb{bottom:666.128100px;}
.y74{bottom:668.407350px;}
.y1d7{bottom:668.974350px;}
.y1c0{bottom:669.029100px;}
.y137{bottom:669.033000px;}
.y48{bottom:672.596100px;}
.y253{bottom:672.950700px;}
.y22b{bottom:678.868650px;}
.y20e{bottom:679.103550px;}
.y1ef{bottom:679.368000px;}
.y151{bottom:679.369350px;}
.y11e{bottom:679.405050px;}
.y196{bottom:679.417050px;}
.y17d{bottom:679.423050px;}
.y9f{bottom:683.895600px;}
.yca{bottom:686.918100px;}
.y73{bottom:689.197350px;}
.y136{bottom:689.763000px;}
.y1d6{bottom:689.764350px;}
.y1bf{bottom:689.819100px;}
.y47{bottom:693.386100px;}
.y17{bottom:699.557250px;}
.y22{bottom:699.584250px;}
.y22a{bottom:699.658650px;}
.y20d{bottom:699.893550px;}
.y1ee{bottom:700.158000px;}
.y150{bottom:700.159350px;}
.y11d{bottom:700.195050px;}
.y195{bottom:700.207050px;}
.y17c{bottom:700.213050px;}
.y252{bottom:704.135700px;}
.y9e{bottom:704.685600px;}
.yc9{bottom:707.708100px;}
.y72{bottom:709.942200px;}
.yf4{bottom:710.553000px;}
.y1d5{bottom:710.554350px;}
.y1be{bottom:710.597100px;}
.y46{bottom:714.176100px;}
.y16{bottom:715.541250px;}
.y21{bottom:715.568250px;}
.y20c{bottom:720.683550px;}
.y1ed{bottom:720.948000px;}
.y14f{bottom:720.949350px;}
.y17b{bottom:720.982050px;}
.y11c{bottom:720.985050px;}
.y194{bottom:720.997050px;}
.y9d{bottom:725.475600px;}
.yc8{bottom:728.498100px;}
.y71{bottom:730.732200px;}
.y229{bottom:730.843650px;}
.yf3{bottom:731.343000px;}
.y1d4{bottom:731.344350px;}
.y1bd{bottom:731.387100px;}
.y15{bottom:731.525250px;}
.y20{bottom:731.552250px;}
.y45{bottom:734.966100px;}
.y251{bottom:735.320700px;}
.y20b{bottom:741.473550px;}
.y1ec{bottom:741.738000px;}
.y14e{bottom:741.739350px;}
.y17a{bottom:741.772050px;}
.y11b{bottom:741.775050px;}
.y193{bottom:741.787050px;}
.y9c{bottom:746.265600px;}
.y14{bottom:747.509250px;}
.y1f{bottom:747.536250px;}
.yc7{bottom:749.288100px;}
.y70{bottom:751.522200px;}
.y228{bottom:751.633650px;}
.yf2{bottom:752.133000px;}
.y1d3{bottom:752.134350px;}
.y1bc{bottom:752.177100px;}
.y44{bottom:755.756100px;}
.y20a{bottom:762.263550px;}
.y1eb{bottom:762.528000px;}
.y14d{bottom:762.529350px;}
.y179{bottom:762.562050px;}
.y11a{bottom:762.565050px;}
.y13{bottom:763.493250px;}
.y1e{bottom:763.520250px;}
.y250{bottom:766.505700px;}
.y9b{bottom:767.055600px;}
.yc6{bottom:770.078100px;}
.y6f{bottom:772.312200px;}
.yf1{bottom:772.923000px;}
.y1bb{bottom:772.967100px;}
.y1d{bottom:779.504250px;}
.y1ea{bottom:783.318000px;}
.y14c{bottom:783.319350px;}
.y178{bottom:783.352050px;}
.y119{bottom:783.355050px;}
.y43{bottom:786.941100px;}
.y12{bottom:787.469250px;}
.y9a{bottom:787.845600px;}
.yc5{bottom:790.868100px;}
.y6e{bottom:793.102200px;}
.yf0{bottom:793.713000px;}
.y245{bottom:793.714350px;}
.y1ba{bottom:793.716000px;}
.y1c{bottom:795.488250px;}
.y24f{bottom:797.690700px;}
.y227{bottom:799.822500px;}
.y1e9{bottom:804.108000px;}
.y14b{bottom:804.109350px;}
.y177{bottom:804.142050px;}
.y118{bottom:804.145050px;}
.y42{bottom:807.731100px;}
.y209{bottom:808.326450px;}
.y99{bottom:808.635600px;}
.y1b{bottom:811.472250px;}
.yc4{bottom:811.658100px;}
.y6d{bottom:813.892200px;}
.yef{bottom:814.503000px;}
.y244{bottom:814.504350px;}
.y1b9{bottom:814.506000px;}
.y1e8{bottom:824.898000px;}
.y14a{bottom:824.899350px;}
.y176{bottom:824.932050px;}
.y117{bottom:824.935050px;}
.y1a{bottom:827.456250px;}
.y41{bottom:828.521100px;}
.y24e{bottom:828.875700px;}
.y98{bottom:829.425600px;}
.yc3{bottom:832.448100px;}
.y6c{bottom:834.682200px;}
.yee{bottom:835.293000px;}
.y243{bottom:835.294350px;}
.y19{bottom:843.440250px;}
.y1e7{bottom:845.688000px;}
.y116{bottom:845.689350px;}
.y1b8{bottom:845.691000px;}
.y175{bottom:845.722050px;}
.y40{bottom:849.311100px;}
.y97{bottom:850.215600px;}
.yc2{bottom:853.238100px;}
.y6b{bottom:855.472200px;}
.yed{bottom:856.083000px;}
.y192{bottom:856.084350px;}
.y18{bottom:859.424250px;}
.y1e6{bottom:866.478000px;}
.y115{bottom:866.479350px;}
.y1b7{bottom:866.481000px;}
.y174{bottom:866.488050px;}
.y3f{bottom:870.101100px;}
.y96{bottom:871.005600px;}
.y24d{bottom:874.938600px;}
.y6a{bottom:876.262200px;}
.yec{bottom:876.873000px;}
.y191{bottom:876.874350px;}
.yc1{bottom:884.423100px;}
.y1e5{bottom:887.268000px;}
.y149{bottom:887.269350px;}
.y1b6{bottom:887.271000px;}
.y173{bottom:887.278050px;}
.y3e{bottom:890.891100px;}
.y69{bottom:897.052200px;}
.yeb{bottom:897.663000px;}
.y114{bottom:897.664350px;}
.y95{bottom:900.293100px;}
.yc0{bottom:905.213100px;}
.y1e4{bottom:908.058000px;}
.y148{bottom:908.059350px;}
.y1b5{bottom:908.061000px;}
.y172{bottom:908.068050px;}
.y3d{bottom:911.660250px;}
.y68{bottom:917.842200px;}
.yea{bottom:918.453000px;}
.y113{bottom:918.454350px;}
.y94{bottom:921.083100px;}
.ybf{bottom:926.003100px;}
.y1e3{bottom:928.848000px;}
.y242{bottom:928.849350px;}
.y1b4{bottom:928.851000px;}
.y171{bottom:928.858050px;}
.y3c{bottom:932.450250px;}
.y67{bottom:938.632200px;}
.ye9{bottom:939.243000px;}
.y112{bottom:939.244350px;}
.y93{bottom:941.873100px;}
.ybe{bottom:946.793100px;}
.y1e2{bottom:949.638000px;}
.y1b3{bottom:949.641000px;}
.y170{bottom:949.648050px;}
.y3b{bottom:953.240250px;}
.y11{bottom:955.521300px;}
.y66{bottom:959.422200px;}
.ye8{bottom:960.033000px;}
.y111{bottom:960.034350px;}
.y92{bottom:962.663100px;}
.ybd{bottom:967.583100px;}
.y1b2{bottom:970.431000px;}
.y16f{bottom:970.438050px;}
.y3a{bottom:974.030250px;}
.y10{bottom:976.299150px;}
.y65{bottom:980.212200px;}
.ye7{bottom:980.823000px;}
.y110{bottom:980.824350px;}
.y91{bottom:983.453100px;}
.ybc{bottom:988.373100px;}
.y1b1{bottom:991.221000px;}
.y16e{bottom:991.228050px;}
.y39{bottom:994.820250px;}
.y64{bottom:1001.002200px;}
.ye6{bottom:1001.613000px;}
.y10f{bottom:1001.614350px;}
.y90{bottom:1004.243100px;}
.ybb{bottom:1009.160100px;}
.y241{bottom:1012.009350px;}
.y16d{bottom:1012.018050px;}
.y38{bottom:1015.610250px;}
.yf{bottom:1020.693150px;}
.y63{bottom:1021.792200px;}
.ye5{bottom:1022.403000px;}
.y10e{bottom:1022.404350px;}
.y1b0{bottom:1022.406000px;}
.y8f{bottom:1025.033100px;}
.yba{bottom:1029.950100px;}
.y16c{bottom:1032.798000px;}
.y240{bottom:1032.799350px;}
.y37{bottom:1036.400250px;}
.ye4{bottom:1043.193000px;}
.y10d{bottom:1043.194350px;}
.y1af{bottom:1043.196000px;}
.y8e{bottom:1045.823100px;}
.y16b{bottom:1053.588000px;}
.y36{bottom:1057.190250px;}
.y62{bottom:1061.477100px;}
.ye3{bottom:1063.983000px;}
.y10c{bottom:1063.984350px;}
.y1ae{bottom:1063.986000px;}
.ye{bottom:1065.078000px;}
.y8d{bottom:1066.613100px;}
.yb9{bottom:1071.528000px;}
.y24c{bottom:1074.378000px;}
.ye2{bottom:1084.773000px;}
.y10b{bottom:1084.774350px;}
.yb8{bottom:1089.123000px;}
.yd{bottom:1097.478000px;}
.y35{bottom:1103.253000px;}
.y8c{bottom:1104.408000px;}
.ye1{bottom:1105.563000px;}
.y10a{bottom:1105.564350px;}
.yb7{bottom:1106.718000px;}
.yc{bottom:1156.356450px;}
.y34{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.hf{height:34.668000px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.h2{height:45.342773px;}
.ha{height:48.042000px;}
.h9{height:50.868000px;}
.h8{height:50.976000px;}
.h7{height:56.520000px;}
.hc{height:62.172000px;}
.h14{height:62.184000px;}
.h1e{height:62.196000px;}
.h1f{height:62.208000px;}
.h1b{height:62.212200px;}
.h22{height:62.220000px;}
.hd{height:62.255400px;}
.h1d{height:62.256000px;}
.h1c{height:62.268000px;}
.h13{height:62.302200px;}
.h16{height:62.304000px;}
.h17{height:62.314800px;}
.h23{height:62.320200px;}
.h1a{height:62.332200px;}
.h21{height:62.336400px;}
.h11{height:62.352600px;}
.h20{height:62.362800px;}
.h12{height:62.410200px;}
.h19{height:62.412000px;}
.he{height:62.476200px;}
.h18{height:62.488200px;}
.h15{height:62.564400px;}
.h10{height:67.968000px;}
.hb{height:73.632000px;}
.h5{height:78.624000px;}
.h6{height:79.128000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xf{left:86.980500px;}
.xb{left:93.730800px;}
.xe{left:106.300350px;}
.x12{left:108.241650px;}
.x2{left:110.551350px;}
.x13{left:136.057350px;}
.x14{left:137.990550px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x10{left:153.070800px;}
.x11{left:155.011950px;}
.x8{left:220.847550px;}
.xc{left:246.807300px;}
.x7{left:312.486450px;}
.x6{left:550.439250px;}
.x9{left:573.269550px;}
.xa{left:648.335700px;}
.xd{left:670.277700px;}
.x5{left:733.915650px;}
@media print{
.v4{vertical-align:-17.599467pt;}
.v3{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.674133pt;}
.v1{vertical-align:20.800000pt;}
.ls31{letter-spacing:-0.880000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.014933pt;}
.ls2e{letter-spacing:0.029333pt;}
.ls11{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.058667pt;}
.ls2f{letter-spacing:0.088000pt;}
.ls15{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.171200pt;}
.ls7{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.228800pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls1e{letter-spacing:0.264000pt;}
.ls19{letter-spacing:0.293333pt;}
.ls1d{letter-spacing:0.322667pt;}
.ls8{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.410667pt;}
.ls24{letter-spacing:0.419467pt;}
.ls1b{letter-spacing:0.469333pt;}
.ls33{letter-spacing:0.528000pt;}
.ls30{letter-spacing:0.552000pt;}
.ls29{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.609067pt;}
.ls1{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.645333pt;}
.ls2d{letter-spacing:0.674667pt;}
.ls12{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.762667pt;}
.ls2a{letter-spacing:0.816000pt;}
.ls22{letter-spacing:0.821333pt;}
.ls21{letter-spacing:0.880000pt;}
.ls36{letter-spacing:0.909333pt;}
.ls2{letter-spacing:0.912000pt;}
.lse{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.056000pt;}
.ls32{letter-spacing:1.144000pt;}
.lsd{letter-spacing:1.173333pt;}
.ls25{letter-spacing:1.296000pt;}
.ls35{letter-spacing:1.408000pt;}
.ls23{letter-spacing:1.536000pt;}
.ls2b{letter-spacing:1.584000pt;}
.ls20{letter-spacing:1.642667pt;}
.ls37{letter-spacing:2.170667pt;}
.ls34{letter-spacing:5.280000pt;}
.ls10{letter-spacing:47.856000pt;}
.ls2c{letter-spacing:1851.085333pt;}
.ls28{letter-spacing:1861.688000pt;}
.ls16{letter-spacing:1880.418667pt;}
.ls6{letter-spacing:1891.021333pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws18{word-spacing:-14.666667pt;}
.wsad{word-spacing:-13.229333pt;}
.wsaa{word-spacing:-12.613333pt;}
.ws3c{word-spacing:-12.437333pt;}
.wsa5{word-spacing:-12.349333pt;}
.ws19{word-spacing:-12.320000pt;}
.ws3b{word-spacing:-11.333333pt;}
.ws2{word-spacing:-10.224000pt;}
.ws97{word-spacing:-8.770667pt;}
.ws78{word-spacing:-8.427467pt;}
.ws83{word-spacing:-8.236800pt;}
.ws1a{word-spacing:-8.008000pt;}
.ws84{word-spacing:-7.176000pt;}
.ws1b{word-spacing:-6.552000pt;}
.ws6e{word-spacing:-1.642667pt;}
.ws82{word-spacing:-1.536000pt;}
.wsb0{word-spacing:-1.408000pt;}
.ws8e{word-spacing:-1.296000pt;}
.ws98{word-spacing:-1.173333pt;}
.ws8f{word-spacing:-0.960000pt;}
.wsb1{word-spacing:-0.938667pt;}
.ws12{word-spacing:-0.912000pt;}
.ws70{word-spacing:-0.821333pt;}
.ws9f{word-spacing:-0.816000pt;}
.wsaf{word-spacing:-0.762667pt;}
.ws9a{word-spacing:-0.704000pt;}
.ws8{word-spacing:-0.624000pt;}
.ws30{word-spacing:-0.586667pt;}
.ws9b{word-spacing:-0.576000pt;}
.wsae{word-spacing:-0.528000pt;}
.wsa0{word-spacing:-0.384000pt;}
.ws1d{word-spacing:-0.352000pt;}
.wsac{word-spacing:-0.293333pt;}
.wsb4{word-spacing:-0.234667pt;}
.ws42{word-spacing:-0.176000pt;}
.wsa4{word-spacing:-0.144000pt;}
.ws7b{word-spacing:-0.117333pt;}
.ws39{word-spacing:-0.096000pt;}
.ws76{word-spacing:-0.058667pt;}
.ws3a{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.058667pt;}
.ws4a{word-spacing:0.117333pt;}
.ws7c{word-spacing:0.176000pt;}
.ws4b{word-spacing:0.234667pt;}
.ws37{word-spacing:0.240000pt;}
.ws7e{word-spacing:0.293333pt;}
.ws65{word-spacing:0.352000pt;}
.ws5c{word-spacing:0.410667pt;}
.ws88{word-spacing:0.469333pt;}
.ws5e{word-spacing:0.480000pt;}
.ws8b{word-spacing:0.528000pt;}
.ws69{word-spacing:0.586667pt;}
.ws58{word-spacing:0.645333pt;}
.ws36{word-spacing:0.672000pt;}
.wsa7{word-spacing:0.704000pt;}
.ws61{word-spacing:0.746667pt;}
.ws75{word-spacing:0.762667pt;}
.ws7d{word-spacing:0.821333pt;}
.ws23{word-spacing:0.880000pt;}
.ws5a{word-spacing:0.938667pt;}
.ws68{word-spacing:0.997333pt;}
.ws2c{word-spacing:1.056000pt;}
.ws56{word-spacing:1.114667pt;}
.ws5{word-spacing:1.152000pt;}
.ws6d{word-spacing:1.173333pt;}
.ws95{word-spacing:1.232000pt;}
.ws48{word-spacing:1.290667pt;}
.ws13{word-spacing:1.296000pt;}
.ws80{word-spacing:1.349333pt;}
.ws52{word-spacing:1.408000pt;}
.ws85{word-spacing:1.466667pt;}
.ws86{word-spacing:1.525333pt;}
.ws60{word-spacing:1.546667pt;}
.ws6f{word-spacing:1.584000pt;}
.wsd{word-spacing:1.632000pt;}
.ws77{word-spacing:1.642667pt;}
.ws57{word-spacing:1.701333pt;}
.wsab{word-spacing:1.760000pt;}
.ws90{word-spacing:1.818667pt;}
.ws44{word-spacing:1.877333pt;}
.ws2f{word-spacing:1.936000pt;}
.ws92{word-spacing:1.994667pt;}
.ws64{word-spacing:2.053333pt;}
.ws54{word-spacing:2.112000pt;}
.ws87{word-spacing:2.170667pt;}
.ws33{word-spacing:2.229333pt;}
.wsb{word-spacing:2.256000pt;}
.ws3e{word-spacing:2.288000pt;}
.wsa6{word-spacing:2.304000pt;}
.ws7a{word-spacing:2.346667pt;}
.ws53{word-spacing:2.405333pt;}
.ws9d{word-spacing:2.448000pt;}
.ws79{word-spacing:2.464000pt;}
.ws2b{word-spacing:2.522667pt;}
.wsa9{word-spacing:2.581333pt;}
.wse{word-spacing:2.592000pt;}
.ws62{word-spacing:2.640000pt;}
.ws8d{word-spacing:2.698667pt;}
.ws16{word-spacing:2.736000pt;}
.ws31{word-spacing:2.757333pt;}
.ws20{word-spacing:2.816000pt;}
.ws55{word-spacing:2.874667pt;}
.ws67{word-spacing:2.933333pt;}
.ws10{word-spacing:2.976000pt;}
.ws34{word-spacing:2.992000pt;}
.wsb2{word-spacing:3.050667pt;}
.ws46{word-spacing:3.109333pt;}
.ws6a{word-spacing:3.168000pt;}
.wsf{word-spacing:3.216000pt;}
.ws4f{word-spacing:3.226667pt;}
.ws38{word-spacing:3.264000pt;}
.ws25{word-spacing:3.285333pt;}
.ws4e{word-spacing:3.344000pt;}
.ws9c{word-spacing:3.360000pt;}
.ws72{word-spacing:3.402667pt;}
.ws17{word-spacing:3.456000pt;}
.ws1f{word-spacing:3.461333pt;}
.ws71{word-spacing:3.520000pt;}
.ws2d{word-spacing:3.578667pt;}
.ws9e{word-spacing:3.600000pt;}
.ws3f{word-spacing:3.637333pt;}
.ws11{word-spacing:3.648000pt;}
.ws14{word-spacing:3.696000pt;}
.ws91{word-spacing:3.754667pt;}
.ws51{word-spacing:3.813333pt;}
.ws66{word-spacing:3.872000pt;}
.ws4{word-spacing:3.925333pt;}
.ws2e{word-spacing:3.930667pt;}
.ws73{word-spacing:3.989333pt;}
.ws27{word-spacing:4.048000pt;}
.ws15{word-spacing:4.080000pt;}
.ws5b{word-spacing:4.106667pt;}
.wsa{word-spacing:4.128000pt;}
.ws96{word-spacing:4.165333pt;}
.wsc{word-spacing:4.224000pt;}
.ws4d{word-spacing:4.282667pt;}
.ws6b{word-spacing:4.341333pt;}
.ws5d{word-spacing:4.400000pt;}
.ws47{word-spacing:4.458667pt;}
.ws1e{word-spacing:4.517333pt;}
.wsa1{word-spacing:4.576000pt;}
.ws6c{word-spacing:4.634667pt;}
.ws74{word-spacing:4.693333pt;}
.wsa2{word-spacing:4.752000pt;}
.ws8a{word-spacing:4.810667pt;}
.ws43{word-spacing:4.869333pt;}
.ws49{word-spacing:4.928000pt;}
.ws41{word-spacing:4.986667pt;}
.ws9{word-spacing:5.040000pt;}
.ws2a{word-spacing:5.045333pt;}
.ws5f{word-spacing:5.066667pt;}
.ws8c{word-spacing:5.104000pt;}
.ws7f{word-spacing:5.162667pt;}
.ws81{word-spacing:5.184000pt;}
.ws32{word-spacing:5.221333pt;}
.ws45{word-spacing:5.280000pt;}
.ws59{word-spacing:5.338667pt;}
.ws26{word-spacing:5.397333pt;}
.ws21{word-spacing:5.456000pt;}
.ws93{word-spacing:5.514667pt;}
.ws89{word-spacing:5.573333pt;}
.ws35{word-spacing:5.632000pt;}
.ws63{word-spacing:5.690667pt;}
.ws22{word-spacing:5.749333pt;}
.wsa3{word-spacing:5.808000pt;}
.ws99{word-spacing:5.866667pt;}
.ws50{word-spacing:5.925333pt;}
.ws24{word-spacing:5.984000pt;}
.ws40{word-spacing:6.042667pt;}
.ws4c{word-spacing:6.101333pt;}
.ws1c{word-spacing:6.160000pt;}
.ws94{word-spacing:6.218667pt;}
.ws28{word-spacing:6.864000pt;}
.wsb3{word-spacing:7.098667pt;}
.ws29{word-spacing:7.216000pt;}
.ws6{word-spacing:9.472000pt;}
.ws7{word-spacing:11.861333pt;}
.ws3d{word-spacing:75.296000pt;}
._9{margin-left:-75.296000pt;}
._2{margin-left:-21.333333pt;}
._3{margin-left:-20.172267pt;}
._16{margin-left:-18.949333pt;}
._c{margin-left:-17.776000pt;}
._13{margin-left:-16.309333pt;}
._f{margin-left:-13.786667pt;}
._15{margin-left:-12.320000pt;}
._10{margin-left:-1.986667pt;}
._5{margin-left:-0.912000pt;}
._7{width:1.056000pt;}
._17{width:4.810667pt;}
._b{width:6.336000pt;}
._1{width:7.893333pt;}
._4{width:8.784000pt;}
._0{width:11.861333pt;}
._12{width:22.559467pt;}
._a{width:24.448000pt;}
._11{width:26.399467pt;}
._14{width:27.887467pt;}
._e{width:30.143467pt;}
._d{width:41.136000pt;}
._8{width:47.807467pt;}
._6{width:75.296000pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:45.066667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y226{bottom:122.834667pt;}
.y1ad{bottom:122.837333pt;}
.y1d2{bottom:122.840000pt;}
.y61{bottom:122.845333pt;}
.y208{bottom:123.402667pt;}
.y16a{bottom:123.403867pt;}
.y109{bottom:123.696533pt;}
.y9{bottom:124.725733pt;}
.y8b{bottom:126.434667pt;}
.y24b{bottom:132.643867pt;}
.y8{bottom:136.096400pt;}
.y135{bottom:137.048000pt;}
.y60{bottom:137.053333pt;}
.yb6{bottom:140.645333pt;}
.y207{bottom:141.882667pt;}
.y169{bottom:141.883867pt;}
.y108{bottom:142.176533pt;}
.y23f{bottom:150.678800pt;}
.y24a{bottom:151.123867pt;}
.y5f{bottom:151.261333pt;}
.y7{bottom:153.128267pt;}
.y134{bottom:154.856000pt;}
.y206{bottom:160.362667pt;}
.y168{bottom:160.363867pt;}
.y107{bottom:160.656533pt;}
.y5e{bottom:165.469333pt;}
.y1d1{bottom:169.066667pt;}
.y8a{bottom:169.099867pt;}
.y23e{bottom:169.158800pt;}
.y225{bottom:169.367600pt;}
.y6{bottom:170.173600pt;}
.y205{bottom:178.842667pt;}
.y167{bottom:178.843867pt;}
.y106{bottom:179.136533pt;}
.y5d{bottom:183.277333pt;}
.yb5{bottom:184.863867pt;}
.ye0{bottom:185.641067pt;}
.y5{bottom:187.218933pt;}
.y89{bottom:187.579867pt;}
.y224{bottom:187.847600pt;}
.y1ac{bottom:188.126267pt;}
.y1d0{bottom:193.890667pt;}
.y5c{bottom:193.893333pt;}
.y190{bottom:193.898667pt;}
.y23d{bottom:196.878800pt;}
.y204{bottom:197.322667pt;}
.y166{bottom:197.323867pt;}
.y105{bottom:197.616533pt;}
.y4{bottom:198.589600pt;}
.yb4{bottom:200.503867pt;}
.ydf{bottom:204.121067pt;}
.y88{bottom:206.059867pt;}
.y223{bottom:206.327600pt;}
.y1ab{bottom:206.606267pt;}
.y133{bottom:206.665867pt;}
.y5b{bottom:208.101333pt;}
.y18f{bottom:208.106667pt;}
.y1cf{bottom:211.698667pt;}
.y23c{bottom:215.358800pt;}
.y3{bottom:215.634933pt;}
.y203{bottom:215.802667pt;}
.y165{bottom:215.803867pt;}
.y18e{bottom:222.314667pt;}
.yde{bottom:222.601067pt;}
.y87{bottom:224.539867pt;}
.y222{bottom:224.807600pt;}
.y1e1{bottom:225.043867pt;}
.y1aa{bottom:225.086267pt;}
.y132{bottom:225.145867pt;}
.y5a{bottom:225.909333pt;}
.y2{bottom:227.005600pt;}
.yb3{bottom:230.835733pt;}
.y104{bottom:233.505867pt;}
.y202{bottom:234.282667pt;}
.y164{bottom:234.283867pt;}
.y18d{bottom:236.522667pt;}
.y59{bottom:240.120000pt;}
.ydd{bottom:241.081067pt;}
.y147{bottom:241.846933pt;}
.y86{bottom:243.019867pt;}
.y23b{bottom:243.078800pt;}
.y221{bottom:243.287600pt;}
.y1e0{bottom:243.523867pt;}
.y1a9{bottom:243.566267pt;}
.y131{bottom:243.625867pt;}
.yb2{bottom:249.315733pt;}
.y201{bottom:252.762667pt;}
.y163{bottom:252.763867pt;}
.y18c{bottom:254.330667pt;}
.ydc{bottom:259.561067pt;}
.y146{bottom:260.326933pt;}
.y85{bottom:261.499867pt;}
.y23a{bottom:261.558800pt;}
.y220{bottom:261.767600pt;}
.y1df{bottom:262.003867pt;}
.y130{bottom:262.035600pt;}
.y1a8{bottom:262.046267pt;}
.y1ce{bottom:264.103333pt;}
.yb1{bottom:267.795733pt;}
.y18b{bottom:268.541333pt;}
.y200{bottom:271.242667pt;}
.y162{bottom:271.243867pt;}
.y18a{bottom:279.154667pt;}
.y84{bottom:279.979867pt;}
.y239{bottom:280.038800pt;}
.y21f{bottom:280.247600pt;}
.y1de{bottom:280.483867pt;}
.y12f{bottom:280.515600pt;}
.y1a7{bottom:280.526267pt;}
.y103{bottom:282.551200pt;}
.y1cd{bottom:282.583333pt;}
.yb0{bottom:286.246800pt;}
.ydb{bottom:287.193867pt;}
.y249{bottom:289.723867pt;}
.y145{bottom:296.208933pt;}
.y189{bottom:296.962667pt;}
.y83{bottom:298.459867pt;}
.y238{bottom:298.518800pt;}
.y21e{bottom:298.727600pt;}
.y1ff{bottom:298.962667pt;}
.y161{bottom:298.963867pt;}
.y12e{bottom:298.995600pt;}
.y1a6{bottom:299.006267pt;}
.y102{bottom:301.031200pt;}
.y1cc{bottom:301.063333pt;}
.y58{bottom:302.250800pt;}
.yaf{bottom:304.726800pt;}
.yda{bottom:305.673867pt;}
.y82{bottom:316.939867pt;}
.y237{bottom:316.998800pt;}
.y21d{bottom:317.207600pt;}
.y1fe{bottom:317.442667pt;}
.y160{bottom:317.443867pt;}
.y12d{bottom:317.475600pt;}
.y1a5{bottom:317.486267pt;}
.y101{bottom:319.511200pt;}
.y57{bottom:320.730800pt;}
.yae{bottom:323.206800pt;}
.yd9{bottom:324.153867pt;}
.y81{bottom:335.419867pt;}
.y21c{bottom:335.687600pt;}
.y1fd{bottom:335.922667pt;}
.y15f{bottom:335.923867pt;}
.y12c{bottom:335.955600pt;}
.y1a4{bottom:335.966267pt;}
.y100{bottom:337.991200pt;}
.y56{bottom:339.143200pt;}
.yad{bottom:341.686800pt;}
.y1cb{bottom:342.008000pt;}
.yd8{bottom:342.633867pt;}
.y236{bottom:344.718800pt;}
.y144{bottom:345.218667pt;}
.y188{bottom:352.710933pt;}
.y80{bottom:353.899867pt;}
.y21b{bottom:354.167600pt;}
.y1fc{bottom:354.402667pt;}
.y15e{bottom:354.403867pt;}
.y12b{bottom:354.435600pt;}
.y1a3{bottom:354.446267pt;}
.yff{bottom:356.471200pt;}
.y55{bottom:357.623200pt;}
.yac{bottom:360.166800pt;}
.yd7{bottom:361.113867pt;}
.y235{bottom:363.198800pt;}
.y248{bottom:363.643867pt;}
.y143{bottom:363.698667pt;}
.y187{bottom:371.190933pt;}
.y21a{bottom:372.647600pt;}
.y1fb{bottom:372.882667pt;}
.y15d{bottom:372.883867pt;}
.y12a{bottom:372.915600pt;}
.y1a2{bottom:372.926267pt;}
.yfe{bottom:374.951200pt;}
.y54{bottom:376.103200pt;}
.yab{bottom:378.646800pt;}
.yd6{bottom:379.593867pt;}
.y7f{bottom:381.619867pt;}
.y234{bottom:381.678800pt;}
.y247{bottom:382.123867pt;}
.y142{bottom:382.178667pt;}
.y219{bottom:391.127600pt;}
.y1fa{bottom:391.362667pt;}
.y15c{bottom:391.363867pt;}
.y129{bottom:391.395600pt;}
.y1a1{bottom:391.406267pt;}
.yfd{bottom:393.431200pt;}
.y53{bottom:394.583200pt;}
.yaa{bottom:397.126800pt;}
.yd5{bottom:398.073867pt;}
.y7e{bottom:400.099867pt;}
.y1ca{bottom:400.652533pt;}
.y141{bottom:400.658667pt;}
.y186{bottom:407.059600pt;}
.y233{bottom:409.398800pt;}
.y1f9{bottom:409.842667pt;}
.y15b{bottom:409.843867pt;}
.y128{bottom:409.875600pt;}
.y1a0{bottom:409.886267pt;}
.yfc{bottom:411.911200pt;}
.y52{bottom:413.063200pt;}
.ya9{bottom:415.606800pt;}
.y7d{bottom:418.579867pt;}
.y218{bottom:418.847600pt;}
.y1c9{bottom:419.132533pt;}
.y140{bottom:419.138667pt;}
.yd4{bottom:425.793867pt;}
.y232{bottom:427.878800pt;}
.y1f8{bottom:428.322667pt;}
.y15a{bottom:428.323867pt;}
.y127{bottom:428.355600pt;}
.y19f{bottom:428.366267pt;}
.y51{bottom:431.543200pt;}
.y7c{bottom:437.059867pt;}
.y217{bottom:437.327600pt;}
.y1c8{bottom:437.612533pt;}
.y13f{bottom:437.618667pt;}
.yfb{bottom:439.631200pt;}
.ya8{bottom:441.640133pt;}
.y28{bottom:443.496667pt;}
.y33{bottom:443.520667pt;}
.yd3{bottom:444.273867pt;}
.y1f7{bottom:446.802667pt;}
.y159{bottom:446.803867pt;}
.y126{bottom:446.835600pt;}
.y19e{bottom:446.846267pt;}
.y50{bottom:450.023200pt;}
.y7b{bottom:455.539867pt;}
.y231{bottom:455.598800pt;}
.y216{bottom:455.807600pt;}
.y1c7{bottom:456.092533pt;}
.y13e{bottom:456.098667pt;}
.y185{bottom:456.104933pt;}
.y27{bottom:457.704667pt;}
.y32{bottom:457.728667pt;}
.yfa{bottom:458.111200pt;}
.ya7{bottom:460.120133pt;}
.yd2{bottom:462.753867pt;}
.y1f6{bottom:465.282667pt;}
.y158{bottom:465.283867pt;}
.y125{bottom:465.315600pt;}
.y19d{bottom:465.326267pt;}
.y4f{bottom:468.503200pt;}
.y26{bottom:471.912667pt;}
.y31{bottom:471.936667pt;}
.y7a{bottom:474.019867pt;}
.y230{bottom:474.078800pt;}
.y215{bottom:474.287600pt;}
.y246{bottom:474.523867pt;}
.y1c6{bottom:474.572533pt;}
.y13d{bottom:474.578667pt;}
.y184{bottom:474.584933pt;}
.yf9{bottom:476.591200pt;}
.ya6{bottom:478.600133pt;}
.yd1{bottom:481.233867pt;}
.y1f5{bottom:483.762667pt;}
.y1dd{bottom:483.763867pt;}
.y124{bottom:483.795600pt;}
.y19c{bottom:483.806267pt;}
.y25{bottom:486.120667pt;}
.y30{bottom:486.144667pt;}
.y4e{bottom:486.983200pt;}
.y257{bottom:487.298400pt;}
.y79{bottom:492.499867pt;}
.y214{bottom:492.767600pt;}
.y157{bottom:493.003867pt;}
.y1c5{bottom:493.052533pt;}
.y13c{bottom:493.058667pt;}
.y183{bottom:493.064933pt;}
.yf8{bottom:495.071200pt;}
.ya5{bottom:497.080133pt;}
.yd0{bottom:499.713867pt;}
.y24{bottom:500.328667pt;}
.y2f{bottom:500.352667pt;}
.y22f{bottom:501.798800pt;}
.y1f4{bottom:502.242667pt;}
.y1dc{bottom:502.243867pt;}
.y123{bottom:502.275600pt;}
.y19b{bottom:502.286267pt;}
.y4d{bottom:505.463200pt;}
.y78{bottom:510.979867pt;}
.y213{bottom:511.247600pt;}
.y156{bottom:511.483867pt;}
.y1c4{bottom:511.532533pt;}
.y13b{bottom:511.538667pt;}
.y182{bottom:511.544933pt;}
.yf7{bottom:513.551200pt;}
.y2e{bottom:514.560667pt;}
.y256{bottom:515.018400pt;}
.ya4{bottom:515.560133pt;}
.ycf{bottom:518.193867pt;}
.y1f3{bottom:520.722667pt;}
.y1db{bottom:520.723867pt;}
.y122{bottom:520.755600pt;}
.y23{bottom:521.640667pt;}
.y4c{bottom:523.943200pt;}
.y2d{bottom:528.768667pt;}
.y77{bottom:529.459867pt;}
.y22e{bottom:529.518800pt;}
.y212{bottom:529.727600pt;}
.y155{bottom:529.963867pt;}
.y19a{bottom:530.006267pt;}
.y1c3{bottom:530.012533pt;}
.y181{bottom:530.024933pt;}
.yf6{bottom:532.031200pt;}
.ya3{bottom:533.987200pt;}
.yce{bottom:536.673867pt;}
.y1f2{bottom:539.202667pt;}
.y1da{bottom:539.203867pt;}
.y121{bottom:539.235600pt;}
.y13a{bottom:539.258667pt;}
.y4b{bottom:542.423200pt;}
.y255{bottom:542.738400pt;}
.y2c{bottom:542.976667pt;}
.y76{bottom:547.939867pt;}
.y211{bottom:548.207600pt;}
.y154{bottom:548.443867pt;}
.y199{bottom:548.486267pt;}
.y1c2{bottom:548.492533pt;}
.y180{bottom:548.496933pt;}
.ya2{bottom:552.467200pt;}
.ycd{bottom:555.153867pt;}
.y2b{bottom:557.184667pt;}
.y22d{bottom:557.238800pt;}
.y1d9{bottom:557.683867pt;}
.y139{bottom:557.738667pt;}
.y4a{bottom:560.903200pt;}
.y210{bottom:566.687600pt;}
.y1f1{bottom:566.922667pt;}
.y153{bottom:566.923867pt;}
.y120{bottom:566.955600pt;}
.y198{bottom:566.966267pt;}
.y17f{bottom:566.976933pt;}
.y254{bottom:570.458400pt;}
.ya1{bottom:570.947200pt;}
.y2a{bottom:571.392667pt;}
.yf5{bottom:572.975867pt;}
.ycc{bottom:573.633867pt;}
.y75{bottom:575.659867pt;}
.y22c{bottom:575.718800pt;}
.y1d8{bottom:576.163867pt;}
.y1c1{bottom:576.212533pt;}
.y138{bottom:576.218667pt;}
.y49{bottom:579.383200pt;}
.y20f{bottom:585.167600pt;}
.y1f0{bottom:585.402667pt;}
.y152{bottom:585.403867pt;}
.y11f{bottom:585.435600pt;}
.y197{bottom:585.446267pt;}
.y17e{bottom:585.456933pt;}
.y29{bottom:585.600667pt;}
.ya0{bottom:589.427200pt;}
.ycb{bottom:592.113867pt;}
.y74{bottom:594.139867pt;}
.y1d7{bottom:594.643867pt;}
.y1c0{bottom:594.692533pt;}
.y137{bottom:594.696000pt;}
.y48{bottom:597.863200pt;}
.y253{bottom:598.178400pt;}
.y22b{bottom:603.438800pt;}
.y20e{bottom:603.647600pt;}
.y1ef{bottom:603.882667pt;}
.y151{bottom:603.883867pt;}
.y11e{bottom:603.915600pt;}
.y196{bottom:603.926267pt;}
.y17d{bottom:603.931600pt;}
.y9f{bottom:607.907200pt;}
.yca{bottom:610.593867pt;}
.y73{bottom:612.619867pt;}
.y136{bottom:613.122667pt;}
.y1d6{bottom:613.123867pt;}
.y1bf{bottom:613.172533pt;}
.y47{bottom:616.343200pt;}
.y17{bottom:621.828667pt;}
.y22{bottom:621.852667pt;}
.y22a{bottom:621.918800pt;}
.y20d{bottom:622.127600pt;}
.y1ee{bottom:622.362667pt;}
.y150{bottom:622.363867pt;}
.y11d{bottom:622.395600pt;}
.y195{bottom:622.406267pt;}
.y17c{bottom:622.411600pt;}
.y252{bottom:625.898400pt;}
.y9e{bottom:626.387200pt;}
.yc9{bottom:629.073867pt;}
.y72{bottom:631.059733pt;}
.yf4{bottom:631.602667pt;}
.y1d5{bottom:631.603867pt;}
.y1be{bottom:631.641867pt;}
.y46{bottom:634.823200pt;}
.y16{bottom:636.036667pt;}
.y21{bottom:636.060667pt;}
.y20c{bottom:640.607600pt;}
.y1ed{bottom:640.842667pt;}
.y14f{bottom:640.843867pt;}
.y17b{bottom:640.872933pt;}
.y11c{bottom:640.875600pt;}
.y194{bottom:640.886267pt;}
.y9d{bottom:644.867200pt;}
.yc8{bottom:647.553867pt;}
.y71{bottom:649.539733pt;}
.y229{bottom:649.638800pt;}
.yf3{bottom:650.082667pt;}
.y1d4{bottom:650.083867pt;}
.y1bd{bottom:650.121867pt;}
.y15{bottom:650.244667pt;}
.y20{bottom:650.268667pt;}
.y45{bottom:653.303200pt;}
.y251{bottom:653.618400pt;}
.y20b{bottom:659.087600pt;}
.y1ec{bottom:659.322667pt;}
.y14e{bottom:659.323867pt;}
.y17a{bottom:659.352933pt;}
.y11b{bottom:659.355600pt;}
.y193{bottom:659.366267pt;}
.y9c{bottom:663.347200pt;}
.y14{bottom:664.452667pt;}
.y1f{bottom:664.476667pt;}
.yc7{bottom:666.033867pt;}
.y70{bottom:668.019733pt;}
.y228{bottom:668.118800pt;}
.yf2{bottom:668.562667pt;}
.y1d3{bottom:668.563867pt;}
.y1bc{bottom:668.601867pt;}
.y44{bottom:671.783200pt;}
.y20a{bottom:677.567600pt;}
.y1eb{bottom:677.802667pt;}
.y14d{bottom:677.803867pt;}
.y179{bottom:677.832933pt;}
.y11a{bottom:677.835600pt;}
.y13{bottom:678.660667pt;}
.y1e{bottom:678.684667pt;}
.y250{bottom:681.338400pt;}
.y9b{bottom:681.827200pt;}
.yc6{bottom:684.513867pt;}
.y6f{bottom:686.499733pt;}
.yf1{bottom:687.042667pt;}
.y1bb{bottom:687.081867pt;}
.y1d{bottom:692.892667pt;}
.y1ea{bottom:696.282667pt;}
.y14c{bottom:696.283867pt;}
.y178{bottom:696.312933pt;}
.y119{bottom:696.315600pt;}
.y43{bottom:699.503200pt;}
.y12{bottom:699.972667pt;}
.y9a{bottom:700.307200pt;}
.yc5{bottom:702.993867pt;}
.y6e{bottom:704.979733pt;}
.yf0{bottom:705.522667pt;}
.y245{bottom:705.523867pt;}
.y1ba{bottom:705.525333pt;}
.y1c{bottom:707.100667pt;}
.y24f{bottom:709.058400pt;}
.y227{bottom:710.953333pt;}
.y1e9{bottom:714.762667pt;}
.y14b{bottom:714.763867pt;}
.y177{bottom:714.792933pt;}
.y118{bottom:714.795600pt;}
.y42{bottom:717.983200pt;}
.y209{bottom:718.512400pt;}
.y99{bottom:718.787200pt;}
.y1b{bottom:721.308667pt;}
.yc4{bottom:721.473867pt;}
.y6d{bottom:723.459733pt;}
.yef{bottom:724.002667pt;}
.y244{bottom:724.003867pt;}
.y1b9{bottom:724.005333pt;}
.y1e8{bottom:733.242667pt;}
.y14a{bottom:733.243867pt;}
.y176{bottom:733.272933pt;}
.y117{bottom:733.275600pt;}
.y1a{bottom:735.516667pt;}
.y41{bottom:736.463200pt;}
.y24e{bottom:736.778400pt;}
.y98{bottom:737.267200pt;}
.yc3{bottom:739.953867pt;}
.y6c{bottom:741.939733pt;}
.yee{bottom:742.482667pt;}
.y243{bottom:742.483867pt;}
.y19{bottom:749.724667pt;}
.y1e7{bottom:751.722667pt;}
.y116{bottom:751.723867pt;}
.y1b8{bottom:751.725333pt;}
.y175{bottom:751.752933pt;}
.y40{bottom:754.943200pt;}
.y97{bottom:755.747200pt;}
.yc2{bottom:758.433867pt;}
.y6b{bottom:760.419733pt;}
.yed{bottom:760.962667pt;}
.y192{bottom:760.963867pt;}
.y18{bottom:763.932667pt;}
.y1e6{bottom:770.202667pt;}
.y115{bottom:770.203867pt;}
.y1b7{bottom:770.205333pt;}
.y174{bottom:770.211600pt;}
.y3f{bottom:773.423200pt;}
.y96{bottom:774.227200pt;}
.y24d{bottom:777.723200pt;}
.y6a{bottom:778.899733pt;}
.yec{bottom:779.442667pt;}
.y191{bottom:779.443867pt;}
.yc1{bottom:786.153867pt;}
.y1e5{bottom:788.682667pt;}
.y149{bottom:788.683867pt;}
.y1b6{bottom:788.685333pt;}
.y173{bottom:788.691600pt;}
.y3e{bottom:791.903200pt;}
.y69{bottom:797.379733pt;}
.yeb{bottom:797.922667pt;}
.y114{bottom:797.923867pt;}
.y95{bottom:800.260533pt;}
.yc0{bottom:804.633867pt;}
.y1e4{bottom:807.162667pt;}
.y148{bottom:807.163867pt;}
.y1b5{bottom:807.165333pt;}
.y172{bottom:807.171600pt;}
.y3d{bottom:810.364667pt;}
.y68{bottom:815.859733pt;}
.yea{bottom:816.402667pt;}
.y113{bottom:816.403867pt;}
.y94{bottom:818.740533pt;}
.ybf{bottom:823.113867pt;}
.y1e3{bottom:825.642667pt;}
.y242{bottom:825.643867pt;}
.y1b4{bottom:825.645333pt;}
.y171{bottom:825.651600pt;}
.y3c{bottom:828.844667pt;}
.y67{bottom:834.339733pt;}
.ye9{bottom:834.882667pt;}
.y112{bottom:834.883867pt;}
.y93{bottom:837.220533pt;}
.ybe{bottom:841.593867pt;}
.y1e2{bottom:844.122667pt;}
.y1b3{bottom:844.125333pt;}
.y170{bottom:844.131600pt;}
.y3b{bottom:847.324667pt;}
.y11{bottom:849.352267pt;}
.y66{bottom:852.819733pt;}
.ye8{bottom:853.362667pt;}
.y111{bottom:853.363867pt;}
.y92{bottom:855.700533pt;}
.ybd{bottom:860.073867pt;}
.y1b2{bottom:862.605333pt;}
.y16f{bottom:862.611600pt;}
.y3a{bottom:865.804667pt;}
.y10{bottom:867.821467pt;}
.y65{bottom:871.299733pt;}
.ye7{bottom:871.842667pt;}
.y110{bottom:871.843867pt;}
.y91{bottom:874.180533pt;}
.ybc{bottom:878.553867pt;}
.y1b1{bottom:881.085333pt;}
.y16e{bottom:881.091600pt;}
.y39{bottom:884.284667pt;}
.y64{bottom:889.779733pt;}
.ye6{bottom:890.322667pt;}
.y10f{bottom:890.323867pt;}
.y90{bottom:892.660533pt;}
.ybb{bottom:897.031200pt;}
.y241{bottom:899.563867pt;}
.y16d{bottom:899.571600pt;}
.y38{bottom:902.764667pt;}
.yf{bottom:907.282800pt;}
.y63{bottom:908.259733pt;}
.ye5{bottom:908.802667pt;}
.y10e{bottom:908.803867pt;}
.y1b0{bottom:908.805333pt;}
.y8f{bottom:911.140533pt;}
.yba{bottom:915.511200pt;}
.y16c{bottom:918.042667pt;}
.y240{bottom:918.043867pt;}
.y37{bottom:921.244667pt;}
.ye4{bottom:927.282667pt;}
.y10d{bottom:927.283867pt;}
.y1af{bottom:927.285333pt;}
.y8e{bottom:929.620533pt;}
.y16b{bottom:936.522667pt;}
.y36{bottom:939.724667pt;}
.y62{bottom:943.535200pt;}
.ye3{bottom:945.762667pt;}
.y10c{bottom:945.763867pt;}
.y1ae{bottom:945.765333pt;}
.ye{bottom:946.736000pt;}
.y8d{bottom:948.100533pt;}
.yb9{bottom:952.469333pt;}
.y24c{bottom:955.002667pt;}
.ye2{bottom:964.242667pt;}
.y10b{bottom:964.243867pt;}
.yb8{bottom:968.109333pt;}
.yd{bottom:975.536000pt;}
.y35{bottom:980.669333pt;}
.y8c{bottom:981.696000pt;}
.ye1{bottom:982.722667pt;}
.y10a{bottom:982.723867pt;}
.yb7{bottom:983.749333pt;}
.yc{bottom:1027.872400pt;}
.y34{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.hf{height:30.816000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.h2{height:40.304688pt;}
.ha{height:42.704000pt;}
.h9{height:45.216000pt;}
.h8{height:45.312000pt;}
.h7{height:50.240000pt;}
.hc{height:55.264000pt;}
.h14{height:55.274667pt;}
.h1e{height:55.285333pt;}
.h1f{height:55.296000pt;}
.h1b{height:55.299733pt;}
.h22{height:55.306667pt;}
.hd{height:55.338133pt;}
.h1d{height:55.338667pt;}
.h1c{height:55.349333pt;}
.h13{height:55.379733pt;}
.h16{height:55.381333pt;}
.h17{height:55.390933pt;}
.h23{height:55.395733pt;}
.h1a{height:55.406400pt;}
.h21{height:55.410133pt;}
.h11{height:55.424533pt;}
.h20{height:55.433600pt;}
.h12{height:55.475733pt;}
.h19{height:55.477333pt;}
.he{height:55.534400pt;}
.h18{height:55.545067pt;}
.h15{height:55.612800pt;}
.h10{height:60.416000pt;}
.hb{height:65.450667pt;}
.h5{height:69.888000pt;}
.h6{height:70.336000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xf{left:77.316000pt;}
.xb{left:83.316267pt;}
.xe{left:94.489200pt;}
.x12{left:96.214800pt;}
.x2{left:98.267867pt;}
.x13{left:120.939867pt;}
.x14{left:122.658267pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x10{left:136.062933pt;}
.x11{left:137.788400pt;}
.x8{left:196.308933pt;}
.xc{left:219.384267pt;}
.x7{left:277.765733pt;}
.x6{left:489.279333pt;}
.x9{left:509.572933pt;}
.xa{left:576.298400pt;}
.xd{left:595.802400pt;}
.x5{left:652.369467pt;}
}




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