
    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_1b7a650aafc9675e71d92f96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6671136f5ccfe0abc6335859.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.721000;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_176b63ec1897d295b217496a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ef28c97c6fb9bbc2310f4b6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.950000;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_9a5fdb6601a97a9b7ffdd011.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_100a724d500663dc078100a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956055;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_dcd8b4faef843e302977622d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956055;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_f261138ecde9bef7f51978a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_1c3c109b1148a104f4f9ee8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.082031;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_9a5fdb6601a97a9b7ffdd011.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_100a724d500663dc078100a0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956055;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_b0e3e6b6c7c14f48b62bafca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d305f44f8de215ec57a47723.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_9a5fdb6601a97a9b7ffdd011.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_612fc3e86422fdcab25d8d66.woff2')format("woff");}.fff{font-family:fff;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dc27de2fa4fb475ccc490eed.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_799256383da915bf8aebf884.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.956055;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_9bab50c9b78d22d67eba8cd9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.082031;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_b22236bb87ff1799b243a778.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.082031;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_f7c6f08642b1046ea7c13c84.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_1da76c824e3b9f4e52593f18.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c78da90601dcf3461da25927.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9d08d0e6b57298d8f15411e5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.922000;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:ff18;src:url('chunks/assets/font_5be99520b2f8d464d675c19d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.932129;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:ff19;src:url('chunks/assets/font_3bbd4618541adb9f8ee383fd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_68a19dfc5a0a302846aaa38e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.082031;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:ff1b;src:url('chunks/assets/font_2ecd973c6de1f8e74e25104f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls37{letter-spacing:-5.310000px;}
.ls1e{letter-spacing:-3.300000px;}
.ls4{letter-spacing:-3.174000px;}
.ls32{letter-spacing:-2.808000px;}
.ls1{letter-spacing:-2.484000px;}
.ls3{letter-spacing:-2.346000px;}
.ls30{letter-spacing:-2.268000px;}
.ls2{letter-spacing:-2.208000px;}
.ls2f{letter-spacing:-2.052000px;}
.lsa{letter-spacing:-1.836000px;}
.lsf{letter-spacing:-1.620000px;}
.ls17{letter-spacing:-1.560000px;}
.ls29{letter-spacing:-1.512000px;}
.ls19{letter-spacing:-1.500000px;}
.ls36{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-1.296000px;}
.ls13{letter-spacing:-1.260000px;}
.ls34{letter-spacing:-1.200000px;}
.ls1c{letter-spacing:-1.140000px;}
.ls14{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.900000px;}
.ls27{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.780000px;}
.ls28{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.702000px;}
.ls23{letter-spacing:-0.672000px;}
.ls10{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.624000px;}
.ls35{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.420000px;}
.ls2c{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.330000px;}
.ls20{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.168000px;}
.lsd{letter-spacing:-0.120000px;}
.ls33{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:-0.062964px;}
.ls7{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.009000px;}
.ls1b{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.900000px;}
.ls2b{letter-spacing:1.680000px;}
.ls2e{letter-spacing:1.722000px;}
.ls1f{letter-spacing:1.764000px;}
.ls6{letter-spacing:2.100000px;}
.ls9{letter-spacing:206.580000px;}
.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;}
}
.ws52{word-spacing:-27.324000px;}
.ws36{word-spacing:-27.108000px;}
.ws7b{word-spacing:-27.000000px;}
.ws3f{word-spacing:-26.892000px;}
.ws5b{word-spacing:-26.676000px;}
.ws0{word-spacing:-26.545428px;}
.ws86{word-spacing:-26.460000px;}
.ws8b{word-spacing:-26.244000px;}
.wsa{word-spacing:-25.920000px;}
.ws6a{word-spacing:-25.704000px;}
.ws84{word-spacing:-25.488000px;}
.ws29{word-spacing:-25.164000px;}
.ws8a{word-spacing:-24.948000px;}
.ws33{word-spacing:-16.191000px;}
.ws11{word-spacing:-15.420000px;}
.ws34{word-spacing:-15.282000px;}
.ws7{word-spacing:-14.526000px;}
.wsaa{word-spacing:-14.023411px;}
.wsab{word-spacing:-13.878000px;}
.ws6{word-spacing:-13.122000px;}
.ws18{word-spacing:-12.912000px;}
.ws24{word-spacing:-12.672000px;}
.ws31{word-spacing:-12.558000px;}
.ws68{word-spacing:-12.516000px;}
.ws81{word-spacing:-12.474000px;}
.ws2c{word-spacing:-11.664000px;}
.ws2e{word-spacing:-10.794000px;}
.ws3c{word-spacing:-8.468658px;}
.ws4e{word-spacing:-8.405694px;}
.ws8{word-spacing:-2.100000px;}
.ws23{word-spacing:-1.764000px;}
.ws53{word-spacing:-1.680000px;}
.ws16{word-spacing:-0.900000px;}
.ws9{word-spacing:-0.486000px;}
.ws48{word-spacing:-0.432000px;}
.ws5c{word-spacing:-0.378000px;}
.ws9e{word-spacing:-0.324000px;}
.ws56{word-spacing:-0.270000px;}
.ws64{word-spacing:-0.240000px;}
.ws47{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.162000px;}
.ws41{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.060000px;}
.ws2f{word-spacing:-0.054000px;}
.ws22{word-spacing:-0.051013px;}
.ws2b{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.ws9f{word-spacing:0.054000px;}
.ws91{word-spacing:0.108000px;}
.wsd{word-spacing:0.120000px;}
.ws1c{word-spacing:0.240000px;}
.wse{word-spacing:0.300000px;}
.ws25{word-spacing:0.324000px;}
.wsb{word-spacing:0.360000px;}
.ws20{word-spacing:0.420000px;}
.ws26{word-spacing:0.432000px;}
.ws13{word-spacing:0.480000px;}
.ws1d{word-spacing:0.540000px;}
.wsad{word-spacing:0.600000px;}
.ws27{word-spacing:0.648000px;}
.ws10{word-spacing:0.660000px;}
.ws28{word-spacing:0.672000px;}
.ws1a{word-spacing:0.720000px;}
.ws42{word-spacing:0.756000px;}
.ws12{word-spacing:0.780000px;}
.ws3{word-spacing:0.828000px;}
.ws37{word-spacing:0.864000px;}
.wsc{word-spacing:0.900000px;}
.ws17{word-spacing:0.960000px;}
.ws4{word-spacing:0.966000px;}
.ws15{word-spacing:1.080000px;}
.ws2{word-spacing:1.104000px;}
.ws1f{word-spacing:1.140000px;}
.ws14{word-spacing:1.260000px;}
.ws1b{word-spacing:1.500000px;}
.ws43{word-spacing:1.512000px;}
.ws19{word-spacing:1.560000px;}
.wsf{word-spacing:1.620000px;}
.ws5{word-spacing:1.794000px;}
.ws55{word-spacing:1.836000px;}
.ws21{word-spacing:3.300000px;}
.wsae{word-spacing:4.410000px;}
.ws5e{word-spacing:39.474000px;}
.ws60{word-spacing:39.852000px;}
.ws61{word-spacing:40.176000px;}
.ws83{word-spacing:40.446000px;}
.wsac{word-spacing:242.203800px;}
.ws90{word-spacing:1536.483000px;}
.wsa6{word-spacing:1537.575000px;}
.ws8d{word-spacing:1537.827000px;}
.ws8e{word-spacing:1537.995000px;}
.wsa1{word-spacing:1538.314200px;}
.wsa8{word-spacing:1538.583000px;}
.ws96{word-spacing:1538.709000px;}
.wsa9{word-spacing:1538.751000px;}
.ws9a{word-spacing:1538.919000px;}
.wsa4{word-spacing:1539.087000px;}
.ws8f{word-spacing:1539.423000px;}
.ws9c{word-spacing:1539.658200px;}
.ws9d{word-spacing:1539.826200px;}
.ws65{word-spacing:1539.969000px;}
.ws93{word-spacing:1540.053000px;}
.ws94{word-spacing:1540.221000px;}
.ws97{word-spacing:1540.263000px;}
.ws98{word-spacing:1540.431000px;}
.wsa5{word-spacing:1540.515000px;}
.wsa2{word-spacing:1540.599000px;}
.ws89{word-spacing:1540.725000px;}
.ws80{word-spacing:1541.061000px;}
.ws8c{word-spacing:1541.103000px;}
.wsa0{word-spacing:1541.254200px;}
.ws5f{word-spacing:1541.313000px;}
.ws62{word-spacing:1541.481000px;}
.ws95{word-spacing:1541.649000px;}
.ws99{word-spacing:1541.859000px;}
.ws7a{word-spacing:1541.905200px;}
.wsa3{word-spacing:1542.027000px;}
.ws85{word-spacing:1542.069000px;}
.ws71{word-spacing:1542.195000px;}
.ws87{word-spacing:1542.237000px;}
.ws75{word-spacing:1542.405000px;}
.ws7e{word-spacing:1542.573000px;}
.ws63{word-spacing:1542.909000px;}
.ws9b{word-spacing:1542.934200px;}
.ws77{word-spacing:1543.249200px;}
.ws92{word-spacing:1543.329000px;}
.ws78{word-spacing:1543.417200px;}
.wsa7{word-spacing:1543.455000px;}
.ws6e{word-spacing:1543.539000px;}
.ws88{word-spacing:1543.665000px;}
.ws6f{word-spacing:1543.707000px;}
.ws72{word-spacing:1543.749000px;}
.ws73{word-spacing:1543.917000px;}
.ws7f{word-spacing:1544.001000px;}
.ws7c{word-spacing:1544.085000px;}
.ws5d{word-spacing:1544.589000px;}
.ws79{word-spacing:1544.845200px;}
.ws70{word-spacing:1545.135000px;}
.ws74{word-spacing:1545.345000px;}
.ws7d{word-spacing:1545.513000px;}
.ws6c{word-spacing:1545.681000px;}
.ws76{word-spacing:1546.525200px;}
.ws6d{word-spacing:1546.815000px;}
.ws82{word-spacing:1546.941000px;}
.ws67{word-spacing:1547.025000px;}
.ws69{word-spacing:1547.193000px;}
.ws6b{word-spacing:1548.621000px;}
.ws66{word-spacing:1550.301000px;}
.ws5a{word-spacing:1563.363000px;}
.ws46{word-spacing:1563.405000px;}
.ws50{word-spacing:1563.699000px;}
.ws57{word-spacing:1564.707000px;}
.ws44{word-spacing:1564.749000px;}
.ws38{word-spacing:1564.833000px;}
.ws58{word-spacing:1564.875000px;}
.ws45{word-spacing:1564.917000px;}
.ws3e{word-spacing:1565.043000px;}
.ws4c{word-spacing:1565.211000px;}
.ws30{word-spacing:1566.177000px;}
.ws59{word-spacing:1566.303000px;}
.ws32{word-spacing:1566.345000px;}
.ws3a{word-spacing:1566.387000px;}
.ws3b{word-spacing:1566.555000px;}
.ws4f{word-spacing:1566.639000px;}
.ws4a{word-spacing:1566.723000px;}
.ws35{word-spacing:1567.773000px;}
.ws3d{word-spacing:1567.983000px;}
.ws40{word-spacing:1568.025000px;}
.ws4b{word-spacing:1568.151000px;}
.ws4d{word-spacing:1568.319000px;}
.ws2a{word-spacing:1569.453000px;}
.ws54{word-spacing:1569.579000px;}
.ws39{word-spacing:1569.663000px;}
.ws49{word-spacing:1569.831000px;}
.ws51{word-spacing:1571.259000px;}
._20{margin-left:-54.006000px;}
._1d{margin-left:-14.520600px;}
._22{margin-left:-13.500600px;}
._5{margin-left:-9.169200px;}
._4{margin-left:-7.658150px;}
._1b{margin-left:-5.059824px;}
._1a{margin-left:-4.007875px;}
._3{margin-left:-2.658950px;}
._1{margin-left:-1.320125px;}
._0{width:1.259513px;}
._2{width:2.756287px;}
._21{width:4.089974px;}
._1f{width:14.364000px;}
._1c{width:39.468600px;}
._1e{width:53.632800px;}
._17{width:99.000487px;}
._18{width:100.620487px;}
._19{width:102.060000px;}
._16{width:103.320000px;}
._11{width:104.880487px;}
._f{width:107.040487px;}
._13{width:108.600000px;}
._10{width:109.980487px;}
._15{width:111.480000px;}
._e{width:112.740000px;}
._14{width:114.780487px;}
._12{width:115.860000px;}
._9{width:132.720000px;}
._d{width:133.800000px;}
._c{width:135.000000px;}
._a{width:136.500000px;}
._7{width:138.240000px;}
._b{width:140.460487px;}
._6{width:142.200487px;}
._8{width:145.020000px;}
._23{width:187.158000px;}
._24{width:198.574200px;}
.fc11{color:rgb(222,235,248);}
.fc10{color:rgb(0,36,176);}
.fcf{color:rgb(208,215,240);}
.fce{color:rgb(132,157,216);}
.fc0{color:rgb(244,103,166);}
.fc1{color:rgb(241,64,142);}
.fcd{color:rgb(174,203,255);}
.fc2{color:rgb(198,203,235);}
.fc3{color:rgb(147,163,217);}
.fc5{color:rgb(0,25,145);}
.fc8{color:rgb(37,35,35);}
.fcb{color:rgb(123,121,121);}
.fc6{color:rgb(40,40,40);}
.fc9{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fca{color:rgb(110,110,110);}
.fcc{color:rgb(139,139,139);}
.fc7{color:rgb(120,121,123);}
.fsc{font-size:30.000000px;}
.fsb{font-size:31.482000px;}
.fs9{font-size:33.000000px;}
.fsd{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:43.180800px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:51.013200px;}
.fs4{font-size:54.000000px;}
.fsf{font-size:54.565800px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs0{font-size:79.716000px;}
.fs10{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.fse{font-size:120.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y213{bottom:50.393850px;}
.y212{bottom:65.393850px;}
.yb{bottom:76.914750px;}
.y55{bottom:76.945650px;}
.yc{bottom:77.000850px;}
.y4d{bottom:77.031600px;}
.y211{bottom:80.393850px;}
.y45{bottom:100.913400px;}
.y214{bottom:103.708200px;}
.y215{bottom:104.833200px;}
.y200{bottom:116.267550px;}
.y44{bottom:118.913400px;}
.yfa{bottom:119.657100px;}
.yad{bottom:122.831700px;}
.y153{bottom:124.139700px;}
.y1e4{bottom:127.499850px;}
.ye8{bottom:130.877850px;}
.y67{bottom:132.796800px;}
.y8e{bottom:133.139700px;}
.y15f{bottom:133.913400px;}
.y1ff{bottom:135.017550px;}
.y15{bottom:135.212550px;}
.y1ef{bottom:136.877850px;}
.y34{bottom:136.913400px;}
.yf9{bottom:138.407100px;}
.y86{bottom:139.558650px;}
.y183{bottom:139.913400px;}
.y1be{bottom:139.942500px;}
.y18f{bottom:140.261700px;}
.y194{bottom:141.377850px;}
.yac{bottom:141.581700px;}
.y103{bottom:142.872000px;}
.y152{bottom:142.889700px;}
.y20b{bottom:145.168800px;}
.y1d4{bottom:145.552650px;}
.y1e3{bottom:146.249850px;}
.ye7{bottom:149.627850px;}
.y15e{bottom:150.413400px;}
.y66{bottom:151.546800px;}
.y8d{bottom:151.889700px;}
.y1fe{bottom:153.767550px;}
.y33{bottom:154.913400px;}
.y1ee{bottom:155.627850px;}
.y182{bottom:156.413400px;}
.y14{bottom:157.966500px;}
.y85{bottom:158.308650px;}
.y1bd{bottom:158.692500px;}
.y18e{bottom:159.011700px;}
.y193{bottom:160.127850px;}
.yab{bottom:160.331700px;}
.y102{bottom:161.622000px;}
.y151{bottom:161.639700px;}
.yf8{bottom:163.534950px;}
.y20a{bottom:163.918800px;}
.y1d3{bottom:164.302650px;}
.y1e2{bottom:164.999850px;}
.y15d{bottom:166.913400px;}
.ye6{bottom:168.377850px;}
.y65{bottom:170.296800px;}
.y8c{bottom:170.639700px;}
.y13{bottom:172.216500px;}
.y1a3{bottom:172.703700px;}
.y3f{bottom:172.913400px;}
.y1ed{bottom:174.377850px;}
.y84{bottom:177.058650px;}
.y1bc{bottom:177.442500px;}
.y4b{bottom:177.479250px;}
.y18d{bottom:177.761700px;}
.y1fd{bottom:178.895550px;}
.yaa{bottom:179.081700px;}
.y101{bottom:180.372000px;}
.y150{bottom:180.389700px;}
.yf7{bottom:182.284950px;}
.y209{bottom:182.668800px;}
.y1d2{bottom:183.052650px;}
.y15c{bottom:183.413400px;}
.y192{bottom:185.255850px;}
.y12{bottom:186.466500px;}
.ye5{bottom:187.127850px;}
.y64{bottom:189.046800px;}
.y181{bottom:189.413400px;}
.y4a{bottom:189.479250px;}
.y1e1{bottom:190.127850px;}
.y32{bottom:190.913400px;}
.y1a2{bottom:191.453700px;}
.y8b{bottom:195.767550px;}
.y17f{bottom:195.808650px;}
.y1fc{bottom:197.645550px;}
.ya9{bottom:197.831700px;}
.y1ec{bottom:199.505850px;}
.y15b{bottom:199.913400px;}
.y11{bottom:200.716500px;}
.y208{bottom:201.418800px;}
.y1d1{bottom:201.802650px;}
.y83{bottom:202.186500px;}
.y1bb{bottom:202.570350px;}
.y18c{bottom:202.889700px;}
.y49{bottom:204.479250px;}
.y100{bottom:205.499850px;}
.y14f{bottom:205.517550px;}
.ye4{bottom:205.877850px;}
.y180{bottom:205.913400px;}
.y224{bottom:206.694600px;}
.yf6{bottom:207.412950px;}
.y130{bottom:207.796800px;}
.y1e0{bottom:208.877850px;}
.y31{bottom:208.913400px;}
.y1a1{bottom:210.203700px;}
.y11a{bottom:210.587550px;}
.y63{bottom:214.174800px;}
.y17e{bottom:214.558650px;}
.y10{bottom:214.966500px;}
.y9{bottom:215.856450px;}
.y1fb{bottom:216.395550px;}
.y15a{bottom:216.413400px;}
.y1eb{bottom:218.255850px;}
.y48{bottom:219.479250px;}
.y207{bottom:220.168800px;}
.y82{bottom:220.936500px;}
.y21d{bottom:220.944600px;}
.y1ba{bottom:221.320350px;}
.y18b{bottom:221.639700px;}
.ya8{bottom:222.959550px;}
.yff{bottom:224.249850px;}
.y14e{bottom:224.267550px;}
.yf5{bottom:226.162950px;}
.y3e{bottom:226.913400px;}
.y1d0{bottom:226.930650px;}
.y1df{bottom:227.627850px;}
.yf{bottom:229.216500px;}
.y119{bottom:229.337550px;}
.ye3{bottom:231.005850px;}
.y159{bottom:232.913400px;}
.y62{bottom:232.924800px;}
.y21c{bottom:235.194600px;}
.y1a0{bottom:235.331700px;}
.y223{bottom:235.726050px;}
.y1ea{bottom:237.005850px;}
.y81{bottom:239.686500px;}
.y4c{bottom:239.704650px;}
.y1b9{bottom:240.070350px;}
.y18a{bottom:240.389700px;}
.y1fa{bottom:241.523550px;}
.ya7{bottom:241.709550px;}
.yfe{bottom:242.999850px;}
.y14d{bottom:243.017550px;}
.ye{bottom:243.466500px;}
.y30{bottom:244.913400px;}
.y206{bottom:245.296800px;}
.y1cf{bottom:245.680650px;}
.y118{bottom:248.087550px;}
.y158{bottom:249.413400px;}
.y21b{bottom:249.444600px;}
.ye2{bottom:249.755850px;}
.y222{bottom:249.976050px;}
.yf4{bottom:251.290950px;}
.y61{bottom:251.674800px;}
.y1de{bottom:252.755850px;}
.y19f{bottom:254.081700px;}
.ybd{bottom:258.413400px;}
.y17d{bottom:258.436500px;}
.y1b8{bottom:258.820350px;}
.y1f9{bottom:260.273550px;}
.ya6{bottom:260.459550px;}
.y14c{bottom:261.767550px;}
.y1e9{bottom:262.133850px;}
.y8{bottom:262.356450px;}
.y3d{bottom:262.913400px;}
.y21a{bottom:263.694600px;}
.y205{bottom:264.046800px;}
.y221{bottom:264.226050px;}
.y1ce{bottom:264.430650px;}
.y80{bottom:264.814500px;}
.y189{bottom:265.517550px;}
.y157{bottom:265.913400px;}
.y117{bottom:266.837550px;}
.yfd{bottom:268.127850px;}
.ye1{bottom:268.505850px;}
.y60{bottom:270.424800px;}
.y1dd{bottom:271.505850px;}
.y12f{bottom:271.913400px;}
.yd{bottom:271.966500px;}
.ybc{bottom:274.913400px;}
.yf3{bottom:276.418800px;}
.y17c{bottom:277.186500px;}
.y1b7{bottom:277.570350px;}
.y219{bottom:277.944600px;}
.y220{bottom:278.476050px;}
.y1f8{bottom:279.023550px;}
.y19e{bottom:279.209550px;}
.y1e8{bottom:280.883850px;}
.y2f{bottom:280.913400px;}
.y156{bottom:282.413400px;}
.y204{bottom:282.796800px;}
.y7f{bottom:283.564500px;}
.y188{bottom:284.267550px;}
.yca{bottom:285.413400px;}
.ya5{bottom:285.587550px;}
.y14b{bottom:286.895550px;}
.ye0{bottom:287.255850px;}
.y12e{bottom:288.413400px;}
.y5f{bottom:289.174800px;}
.y1cd{bottom:289.558650px;}
.y1dc{bottom:290.255850px;}
.ybb{bottom:291.413400px;}
.y116{bottom:291.965400px;}
.y218{bottom:292.194600px;}
.y21f{bottom:292.726050px;}
.yf2{bottom:295.168800px;}
.y13c{bottom:295.552650px;}
.y17b{bottom:295.936500px;}
.y19d{bottom:297.959550px;}
.y2e{bottom:298.913400px;}
.y1e7{bottom:299.633850px;}
.yc9{bottom:301.913400px;}
.y7e{bottom:302.314500px;}
.y1b6{bottom:302.698350px;}
.y1f7{bottom:304.151550px;}
.ya4{bottom:304.337550px;}
.y12d{bottom:304.913400px;}
.y14a{bottom:305.645550px;}
.ydf{bottom:306.005850px;}
.y217{bottom:306.444600px;}
.y21e{bottom:306.976050px;}
.yba{bottom:307.913400px;}
.y203{bottom:307.924800px;}
.y191{bottom:308.288400px;}
.y1cc{bottom:308.308650px;}
.y7{bottom:308.856450px;}
.y1db{bottom:309.005850px;}
.y187{bottom:309.395550px;}
.y115{bottom:310.715400px;}
.y5e{bottom:314.302650px;}
.y155{bottom:315.413400px;}
.y19c{bottom:316.709550px;}
.y43{bottom:316.913400px;}
.y1e6{bottom:318.383850px;}
.yc8{bottom:318.413400px;}
.yf1{bottom:320.296800px;}
.y7d{bottom:321.064500px;}
.y129{bottom:321.413400px;}
.y1b5{bottom:321.448350px;}
.y190{bottom:322.538400px;}
.y1f6{bottom:322.901550px;}
.ya3{bottom:323.087550px;}
.y149{bottom:324.395550px;}
.yc0{bottom:324.413400px;}
.y202{bottom:326.674800px;}
.y1cb{bottom:327.058650px;}
.y186{bottom:328.145550px;}
.y114{bottom:329.465400px;}
.yde{bottom:331.133850px;}
.y136{bottom:331.913400px;}
.y5d{bottom:333.052650px;}
.y1da{bottom:334.133850px;}
.y2d{bottom:334.913400px;}
.y128{bottom:337.913400px;}
.yf0{bottom:339.046800px;}
.y17a{bottom:339.814500px;}
.y1b4{bottom:340.198350px;}
.ybf{bottom:340.913400px;}
.ya2{bottom:341.837550px;}
.y148{bottom:343.145550px;}
.y1e5{bottom:343.511700px;}
.y201{bottom:345.424800px;}
.y7c{bottom:346.192500px;}
.y185{bottom:346.895550px;}
.y1f5{bottom:348.029400px;}
.y113{bottom:348.215400px;}
.y135{bottom:348.413400px;}
.ydd{bottom:349.883850px;}
.y5c{bottom:351.802650px;}
.y1ca{bottom:352.186500px;}
.y1d9{bottom:352.883850px;}
.y2c{bottom:352.913400px;}
.y127{bottom:354.413400px;}
.y6{bottom:355.356450px;}
.yc2{bottom:357.413400px;}
.yef{bottom:357.796800px;}
.y13b{bottom:358.180650px;}
.y179{bottom:358.564500px;}
.yb9{bottom:360.413400px;}
.ya1{bottom:360.587550px;}
.y120{bottom:361.913400px;}
.y134{bottom:364.913400px;}
.y7b{bottom:364.942500px;}
.y1b3{bottom:365.326350px;}
.y1f4{bottom:366.779400px;}
.y1f0{bottom:367.913400px;}
.y147{bottom:368.273550px;}
.ydc{bottom:368.633850px;}
.y5b{bottom:370.552650px;}
.y2b{bottom:370.913400px;}
.y1c9{bottom:370.936500px;}
.y184{bottom:372.023550px;}
.y112{bottom:373.343400px;}
.yc1{bottom:373.913400px;}
.yfc{bottom:374.484000px;}
.yed{bottom:376.261350px;}
.yb8{bottom:376.913400px;}
.y13a{bottom:376.930650px;}
.y1d8{bottom:378.011700px;}
.y11f{bottom:378.413400px;}
.y19b{bottom:379.337550px;}
.y139{bottom:381.413400px;}
.yee{bottom:382.924800px;}
.y7a{bottom:383.692500px;}
.y1b2{bottom:384.076350px;}
.y1c0{bottom:384.413400px;}
.y1f3{bottom:385.529550px;}
.ya0{bottom:385.715550px;}
.y146{bottom:387.023550px;}
.ydb{bottom:387.383850px;}
.yc7{bottom:387.413400px;}
.yfb{bottom:388.734000px;}
.y42{bottom:388.913400px;}
.y5a{bottom:389.302800px;}
.y1c8{bottom:389.686500px;}
.y122{bottom:390.413400px;}
.yec{bottom:390.508350px;}
.y111{bottom:392.093400px;}
.yb7{bottom:393.413400px;}
.y11e{bottom:394.913400px;}
.y12c{bottom:395.680650px;}
.y1d7{bottom:396.761700px;}
.y138{bottom:397.913400px;}
.y19a{bottom:398.087550px;}
.y1bf{bottom:400.913400px;}
.y5{bottom:401.856450px;}
.y178{bottom:402.442500px;}
.y1b1{bottom:402.826350px;}
.yc6{bottom:403.913400px;}
.y1f2{bottom:404.279550px;}
.y9f{bottom:404.465550px;}
.yeb{bottom:404.755350px;}
.y145{bottom:405.773550px;}
.y2a{bottom:406.913400px;}
.y59{bottom:408.052800px;}
.y1c7{bottom:408.436500px;}
.y79{bottom:408.820350px;}
.y47{bottom:409.051650px;}
.yb6{bottom:409.913400px;}
.y110{bottom:410.843400px;}
.y225{bottom:411.284400px;}
.yda{bottom:412.511700px;}
.y137{bottom:414.413400px;}
.y12b{bottom:414.430650px;}
.y1d6{bottom:415.511700px;}
.y133{bottom:417.413400px;}
.yea{bottom:419.002350px;}
.yc5{bottom:420.413400px;}
.y177{bottom:421.192500px;}
.y1b0{bottom:421.576350px;}
.y9e{bottom:423.215550px;}
.y121{bottom:423.413400px;}
.y144{bottom:424.523550px;}
.y29{bottom:424.913400px;}
.yb5{bottom:426.413400px;}
.y78{bottom:427.570350px;}
.y1f1{bottom:429.407400px;}
.y154{bottom:430.913400px;}
.yd9{bottom:431.261700px;}
.y58{bottom:433.180650px;}
.ye9{bottom:433.252350px;}
.y1c6{bottom:433.564500px;}
.yd3{bottom:433.913400px;}
.y10f{bottom:435.971400px;}
.yc4{bottom:436.913400px;}
.y126{bottom:439.913400px;}
.y1af{bottom:440.326350px;}
.y1d5{bottom:440.639700px;}
.y199{bottom:441.965550px;}
.y28{bottom:442.913400px;}
.y77{bottom:446.320350px;}
.y11d{bottom:447.413400px;}
.y9d{bottom:448.343400px;}
.y143{bottom:449.651550px;}
.y8a{bottom:450.413400px;}
.y1c5{bottom:452.314500px;}
.yc3{bottom:453.413400px;}
.y10e{bottom:454.721400px;}
.y1c{bottom:455.368650px;}
.yd8{bottom:456.389700px;}
.y125{bottom:456.413400px;}
.y12a{bottom:458.308650px;}
.yb4{bottom:459.413400px;}
.y3c{bottom:460.913400px;}
.y11c{bottom:463.913400px;}
.y176{bottom:465.070350px;}
.y1ae{bottom:465.454350px;}
.y89{bottom:466.913400px;}
.y9c{bottom:467.093400px;}
.y4{bottom:467.440350px;}
.y142{bottom:468.401550px;}
.ybe{bottom:469.913400px;}
.y16e{bottom:470.417250px;}
.y1c4{bottom:471.064500px;}
.y76{bottom:471.448350px;}
.y124{bottom:472.913400px;}
.y10d{bottom:473.471400px;}
.yd7{bottom:475.139700px;}
.yb3{bottom:475.913400px;}
.y1b{bottom:476.368650px;}
.y27{bottom:478.913400px;}
.y11b{bottom:480.413400px;}
.yd2{bottom:483.413400px;}
.y175{bottom:483.820350px;}
.y1ad{bottom:484.204350px;}
.y9b{bottom:485.843400px;}
.y6c{bottom:486.413400px;}
.y16d{bottom:486.917250px;}
.y141{bottom:487.151550px;}
.y123{bottom:489.413400px;}
.y1c3{bottom:489.814500px;}
.y75{bottom:490.198350px;}
.y10c{bottom:492.221400px;}
.yb2{bottom:492.413400px;}
.yd6{bottom:493.889700px;}
.y26{bottom:496.913400px;}
.y1a{bottom:497.368650px;}
.y132{bottom:499.913400px;}
.y174{bottom:502.570350px;}
.y6b{bottom:502.913400px;}
.y1ac{bottom:502.954350px;}
.y16c{bottom:503.417250px;}
.y198{bottom:504.593400px;}
.y53{bottom:505.913400px;}
.y1c2{bottom:508.564500px;}
.yb1{bottom:508.913400px;}
.y74{bottom:508.948350px;}
.y9a{bottom:510.971400px;}
.y140{bottom:512.279550px;}
.yd5{bottom:512.639700px;}
.y3b{bottom:514.913400px;}
.y131{bottom:516.413400px;}
.y10b{bottom:517.349400px;}
.y6a{bottom:519.413400px;}
.y16b{bottom:519.917250px;}
.y1ab{bottom:521.704350px;}
.y52{bottom:522.413400px;}
.y197{bottom:523.343400px;}
.y216{bottom:524.004000px;}
.yb0{bottom:525.413400px;}
.y173{bottom:527.698350px;}
.y99{bottom:529.721400px;}
.y25{bottom:532.913400px;}
.y1c1{bottom:533.692500px;}
.y73{bottom:534.076350px;}
.y88{bottom:535.913400px;}
.y10a{bottom:536.099400px;}
.y16a{bottom:536.417250px;}
.yd4{bottom:537.767700px;}
.y57{bottom:538.913400px;}
.y1aa{bottom:540.454350px;}
.yaf{bottom:541.913400px;}
.y172{bottom:546.448350px;}
.y98{bottom:548.471400px;}
.y24{bottom:550.913400px;}
.y87{bottom:552.413400px;}
.y72{bottom:552.826350px;}
.y109{bottom:554.849400px;}
.y56{bottom:555.413400px;}
.y19{bottom:555.783000px;}
.yae{bottom:558.413400px;}
.y1a9{bottom:559.204350px;}
.yd1{bottom:561.413400px;}
.y171{bottom:565.198350px;}
.y97{bottom:567.221400px;}
.y41{bottom:568.913400px;}
.y71{bottom:571.576350px;}
.y69{bottom:571.913400px;}
.y108{bottom:573.599400px;}
.y51{bottom:574.913400px;}
.y18{bottom:576.783000px;}
.yd0{bottom:577.913400px;}
.y1a8{bottom:577.954350px;}
.y13f{bottom:578.291400px;}
.y170{bottom:583.948350px;}
.y196{bottom:585.971400px;}
.y23{bottom:586.913400px;}
.y68{bottom:588.413400px;}
.y169{bottom:588.917250px;}
.y50{bottom:591.413400px;}
.y96{bottom:592.349400px;}
.y13e{bottom:592.538400px;}
.ycf{bottom:594.413400px;}
.y70{bottom:596.704350px;}
.y107{bottom:598.727400px;}
.y1a7{bottom:603.082200px;}
.y22{bottom:604.913400px;}
.y168{bottom:605.417250px;}
.y13d{bottom:606.788400px;}
.y4f{bottom:607.913400px;}
.y16f{bottom:609.076350px;}
.yce{bottom:610.913400px;}
.y95{bottom:611.099400px;}
.y6f{bottom:615.454350px;}
.y106{bottom:617.477400px;}
.y1a6{bottom:621.832200px;}
.y167{bottom:621.917250px;}
.y3a{bottom:622.913400px;}
.y4e{bottom:624.413400px;}
.ycd{bottom:627.413400px;}
.y17{bottom:629.821950px;}
.y94{bottom:629.849400px;}
.y6e{bottom:634.204350px;}
.y105{bottom:636.227400px;}
.y166{bottom:638.417250px;}
.y1a5{bottom:640.582200px;}
.y40{bottom:640.913400px;}
.ycc{bottom:643.913400px;}
.y195{bottom:648.599400px;}
.y16{bottom:650.821950px;}
.y210{bottom:654.466200px;}
.y165{bottom:654.917250px;}
.y93{bottom:654.977400px;}
.y39{bottom:658.913400px;}
.y6d{bottom:659.332200px;}
.ycb{bottom:660.413400px;}
.y164{bottom:671.417250px;}
.y92{bottom:673.727400px;}
.y38{bottom:676.913400px;}
.y1f{bottom:676.929900px;}
.y104{bottom:680.105250px;}
.y1a4{bottom:684.460200px;}
.y163{bottom:687.917250px;}
.y21{bottom:694.913250px;}
.y37{bottom:694.913400px;}
.y91{bottom:698.855250px;}
.y1e{bottom:700.929900px;}
.y162{bottom:704.417250px;}
.y20f{bottom:705.018900px;}
.y36{bottom:712.913400px;}
.y46{bottom:713.218050px;}
.y90{bottom:717.605250px;}
.y161{bottom:720.917250px;}
.y1d{bottom:724.929900px;}
.y3{bottom:725.514720px;}
.y20e{bottom:727.518900px;}
.y35{bottom:730.913400px;}
.y8f{bottom:736.355250px;}
.y160{bottom:737.417250px;}
.y2{bottom:752.618160px;}
.y20d{bottom:760.833300px;}
.y1{bottom:779.721600px;}
.y20c{bottom:795.333300px;}
.y20{bottom:807.158850px;}
.ya{bottom:807.717150px;}
.y54{bottom:807.991800px;}
.h16{height:22.382812px;}
.h11{height:24.621094px;}
.h3{height:30.658368px;}
.h6{height:30.864258px;}
.h8{height:31.080000px;}
.h7{height:31.335938px;}
.h17{height:31.394531px;}
.hf{height:35.520000px;}
.he{height:35.709240px;}
.h14{height:35.812500px;}
.h10{height:36.626953px;}
.h18{height:38.448000px;}
.ha{height:39.682617px;}
.h1b{height:40.098403px;}
.h12{height:40.289062px;}
.hd{height:41.859375px;}
.hc{height:44.091797px;}
.h15{height:46.296387px;}
.h9{height:47.091797px;}
.h1a{height:52.324219px;}
.h2{height:58.035428px;}
.h1c{height:66.137695px;}
.hb{height:79.365234px;}
.h13{height:80.578125px;}
.h19{height:88.183594px;}
.h4{height:101.411133px;}
.h5{height:102.120000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x6{left:74.409450px;}
.x7{left:75.472500px;}
.x3{left:76.500000px;}
.xa{left:77.952750px;}
.x11{left:85.910400px;}
.x10{left:89.291400px;}
.x15{left:93.005400px;}
.x9{left:95.478750px;}
.x14{left:96.679950px;}
.x8{left:98.029950px;}
.x12{left:99.659400px;}
.x13{left:100.997550px;}
.xe{left:106.238400px;}
.xb{left:132.035400px;}
.x1{left:184.896750px;}
.x17{left:200.519400px;}
.x2{left:285.531900px;}
.xd{left:288.009450px;}
.xc{left:290.464500px;}
.x16{left:312.274950px;}
.x4{left:316.035300px;}
.x18{left:322.132650px;}
.x19{left:443.745750px;}
.x5{left:481.563000px;}
.xf{left:483.249750px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls37{letter-spacing:-4.720000pt;}
.ls1e{letter-spacing:-2.933333pt;}
.ls4{letter-spacing:-2.821333pt;}
.ls32{letter-spacing:-2.496000pt;}
.ls1{letter-spacing:-2.208000pt;}
.ls3{letter-spacing:-2.085333pt;}
.ls30{letter-spacing:-2.016000pt;}
.ls2{letter-spacing:-1.962667pt;}
.ls2f{letter-spacing:-1.824000pt;}
.lsa{letter-spacing:-1.632000pt;}
.lsf{letter-spacing:-1.440000pt;}
.ls17{letter-spacing:-1.386667pt;}
.ls29{letter-spacing:-1.344000pt;}
.ls19{letter-spacing:-1.333333pt;}
.ls36{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-1.152000pt;}
.ls13{letter-spacing:-1.120000pt;}
.ls34{letter-spacing:-1.066667pt;}
.ls1c{letter-spacing:-1.013333pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls27{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls28{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.624000pt;}
.ls23{letter-spacing:-0.597333pt;}
.ls10{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.554667pt;}
.ls35{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.373333pt;}
.ls2c{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.293333pt;}
.ls20{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.149333pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:-0.055968pt;}
.ls7{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.008000pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.800000pt;}
.ls2b{letter-spacing:1.493333pt;}
.ls2e{letter-spacing:1.530667pt;}
.ls1f{letter-spacing:1.568000pt;}
.ls6{letter-spacing:1.866667pt;}
.ls9{letter-spacing:183.626667pt;}
.ws52{word-spacing:-24.288000pt;}
.ws36{word-spacing:-24.096000pt;}
.ws7b{word-spacing:-24.000000pt;}
.ws3f{word-spacing:-23.904000pt;}
.ws5b{word-spacing:-23.712000pt;}
.ws0{word-spacing:-23.595936pt;}
.ws86{word-spacing:-23.520000pt;}
.ws8b{word-spacing:-23.328000pt;}
.wsa{word-spacing:-23.040000pt;}
.ws6a{word-spacing:-22.848000pt;}
.ws84{word-spacing:-22.656000pt;}
.ws29{word-spacing:-22.368000pt;}
.ws8a{word-spacing:-22.176000pt;}
.ws33{word-spacing:-14.392000pt;}
.ws11{word-spacing:-13.706667pt;}
.ws34{word-spacing:-13.584000pt;}
.ws7{word-spacing:-12.912000pt;}
.wsaa{word-spacing:-12.465254pt;}
.wsab{word-spacing:-12.336000pt;}
.ws6{word-spacing:-11.664000pt;}
.ws18{word-spacing:-11.477333pt;}
.ws24{word-spacing:-11.264000pt;}
.ws31{word-spacing:-11.162667pt;}
.ws68{word-spacing:-11.125333pt;}
.ws81{word-spacing:-11.088000pt;}
.ws2c{word-spacing:-10.368000pt;}
.ws2e{word-spacing:-9.594667pt;}
.ws3c{word-spacing:-7.527696pt;}
.ws4e{word-spacing:-7.471728pt;}
.ws8{word-spacing:-1.866667pt;}
.ws23{word-spacing:-1.568000pt;}
.ws53{word-spacing:-1.493333pt;}
.ws16{word-spacing:-0.800000pt;}
.ws9{word-spacing:-0.432000pt;}
.ws48{word-spacing:-0.384000pt;}
.ws5c{word-spacing:-0.336000pt;}
.ws9e{word-spacing:-0.288000pt;}
.ws56{word-spacing:-0.240000pt;}
.ws64{word-spacing:-0.213333pt;}
.ws47{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.144000pt;}
.ws41{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws2f{word-spacing:-0.048000pt;}
.ws22{word-spacing:-0.045345pt;}
.ws2b{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.048000pt;}
.ws91{word-spacing:0.096000pt;}
.wsd{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.213333pt;}
.wse{word-spacing:0.266667pt;}
.ws25{word-spacing:0.288000pt;}
.wsb{word-spacing:0.320000pt;}
.ws20{word-spacing:0.373333pt;}
.ws26{word-spacing:0.384000pt;}
.ws13{word-spacing:0.426667pt;}
.ws1d{word-spacing:0.480000pt;}
.wsad{word-spacing:0.533333pt;}
.ws27{word-spacing:0.576000pt;}
.ws10{word-spacing:0.586667pt;}
.ws28{word-spacing:0.597333pt;}
.ws1a{word-spacing:0.640000pt;}
.ws42{word-spacing:0.672000pt;}
.ws12{word-spacing:0.693333pt;}
.ws3{word-spacing:0.736000pt;}
.ws37{word-spacing:0.768000pt;}
.wsc{word-spacing:0.800000pt;}
.ws17{word-spacing:0.853333pt;}
.ws4{word-spacing:0.858667pt;}
.ws15{word-spacing:0.960000pt;}
.ws2{word-spacing:0.981333pt;}
.ws1f{word-spacing:1.013333pt;}
.ws14{word-spacing:1.120000pt;}
.ws1b{word-spacing:1.333333pt;}
.ws43{word-spacing:1.344000pt;}
.ws19{word-spacing:1.386667pt;}
.wsf{word-spacing:1.440000pt;}
.ws5{word-spacing:1.594667pt;}
.ws55{word-spacing:1.632000pt;}
.ws21{word-spacing:2.933333pt;}
.wsae{word-spacing:3.920000pt;}
.ws5e{word-spacing:35.088000pt;}
.ws60{word-spacing:35.424000pt;}
.ws61{word-spacing:35.712000pt;}
.ws83{word-spacing:35.952000pt;}
.wsac{word-spacing:215.292267pt;}
.ws90{word-spacing:1365.762667pt;}
.wsa6{word-spacing:1366.733333pt;}
.ws8d{word-spacing:1366.957333pt;}
.ws8e{word-spacing:1367.106667pt;}
.wsa1{word-spacing:1367.390400pt;}
.wsa8{word-spacing:1367.629333pt;}
.ws96{word-spacing:1367.741333pt;}
.wsa9{word-spacing:1367.778667pt;}
.ws9a{word-spacing:1367.928000pt;}
.wsa4{word-spacing:1368.077333pt;}
.ws8f{word-spacing:1368.376000pt;}
.ws9c{word-spacing:1368.585067pt;}
.ws9d{word-spacing:1368.734400pt;}
.ws65{word-spacing:1368.861333pt;}
.ws93{word-spacing:1368.936000pt;}
.ws94{word-spacing:1369.085333pt;}
.ws97{word-spacing:1369.122667pt;}
.ws98{word-spacing:1369.272000pt;}
.wsa5{word-spacing:1369.346667pt;}
.wsa2{word-spacing:1369.421333pt;}
.ws89{word-spacing:1369.533333pt;}
.ws80{word-spacing:1369.832000pt;}
.ws8c{word-spacing:1369.869333pt;}
.wsa0{word-spacing:1370.003733pt;}
.ws5f{word-spacing:1370.056000pt;}
.ws62{word-spacing:1370.205333pt;}
.ws95{word-spacing:1370.354667pt;}
.ws99{word-spacing:1370.541333pt;}
.ws7a{word-spacing:1370.582400pt;}
.wsa3{word-spacing:1370.690667pt;}
.ws85{word-spacing:1370.728000pt;}
.ws71{word-spacing:1370.840000pt;}
.ws87{word-spacing:1370.877333pt;}
.ws75{word-spacing:1371.026667pt;}
.ws7e{word-spacing:1371.176000pt;}
.ws63{word-spacing:1371.474667pt;}
.ws9b{word-spacing:1371.497067pt;}
.ws77{word-spacing:1371.777067pt;}
.ws92{word-spacing:1371.848000pt;}
.ws78{word-spacing:1371.926400pt;}
.wsa7{word-spacing:1371.960000pt;}
.ws6e{word-spacing:1372.034667pt;}
.ws88{word-spacing:1372.146667pt;}
.ws6f{word-spacing:1372.184000pt;}
.ws72{word-spacing:1372.221333pt;}
.ws73{word-spacing:1372.370667pt;}
.ws7f{word-spacing:1372.445333pt;}
.ws7c{word-spacing:1372.520000pt;}
.ws5d{word-spacing:1372.968000pt;}
.ws79{word-spacing:1373.195733pt;}
.ws70{word-spacing:1373.453333pt;}
.ws74{word-spacing:1373.640000pt;}
.ws7d{word-spacing:1373.789333pt;}
.ws6c{word-spacing:1373.938667pt;}
.ws76{word-spacing:1374.689067pt;}
.ws6d{word-spacing:1374.946667pt;}
.ws82{word-spacing:1375.058667pt;}
.ws67{word-spacing:1375.133333pt;}
.ws69{word-spacing:1375.282667pt;}
.ws6b{word-spacing:1376.552000pt;}
.ws66{word-spacing:1378.045333pt;}
.ws5a{word-spacing:1389.656000pt;}
.ws46{word-spacing:1389.693333pt;}
.ws50{word-spacing:1389.954667pt;}
.ws57{word-spacing:1390.850667pt;}
.ws44{word-spacing:1390.888000pt;}
.ws38{word-spacing:1390.962667pt;}
.ws58{word-spacing:1391.000000pt;}
.ws45{word-spacing:1391.037333pt;}
.ws3e{word-spacing:1391.149333pt;}
.ws4c{word-spacing:1391.298667pt;}
.ws30{word-spacing:1392.157333pt;}
.ws59{word-spacing:1392.269333pt;}
.ws32{word-spacing:1392.306667pt;}
.ws3a{word-spacing:1392.344000pt;}
.ws3b{word-spacing:1392.493333pt;}
.ws4f{word-spacing:1392.568000pt;}
.ws4a{word-spacing:1392.642667pt;}
.ws35{word-spacing:1393.576000pt;}
.ws3d{word-spacing:1393.762667pt;}
.ws40{word-spacing:1393.800000pt;}
.ws4b{word-spacing:1393.912000pt;}
.ws4d{word-spacing:1394.061333pt;}
.ws2a{word-spacing:1395.069333pt;}
.ws54{word-spacing:1395.181333pt;}
.ws39{word-spacing:1395.256000pt;}
.ws49{word-spacing:1395.405333pt;}
.ws51{word-spacing:1396.674667pt;}
._20{margin-left:-48.005333pt;}
._1d{margin-left:-12.907200pt;}
._22{margin-left:-12.000533pt;}
._5{margin-left:-8.150400pt;}
._4{margin-left:-6.807245pt;}
._1b{margin-left:-4.497621pt;}
._1a{margin-left:-3.562556pt;}
._3{margin-left:-2.363511pt;}
._1{margin-left:-1.173444pt;}
._0{width:1.119567pt;}
._2{width:2.450033pt;}
._21{width:3.635533pt;}
._1f{width:12.768000pt;}
._1c{width:35.083200pt;}
._1e{width:47.673600pt;}
._17{width:88.000433pt;}
._18{width:89.440433pt;}
._19{width:90.720000pt;}
._16{width:91.840000pt;}
._11{width:93.227100pt;}
._f{width:95.147100pt;}
._13{width:96.533333pt;}
._10{width:97.760433pt;}
._15{width:99.093333pt;}
._e{width:100.213333pt;}
._14{width:102.027100pt;}
._12{width:102.986667pt;}
._9{width:117.973333pt;}
._d{width:118.933333pt;}
._c{width:120.000000pt;}
._a{width:121.333333pt;}
._7{width:122.880000pt;}
._b{width:124.853766pt;}
._6{width:126.400433pt;}
._8{width:128.906667pt;}
._23{width:166.362667pt;}
._24{width:176.510400pt;}
.fsc{font-size:26.666667pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:29.333333pt;}
.fsd{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:38.382933pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:45.345067pt;}
.fs4{font-size:48.000000pt;}
.fsf{font-size:48.502933pt;}
.fs6{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs0{font-size:70.858667pt;}
.fs10{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.fse{font-size:106.666667pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y213{bottom:44.794533pt;}
.y212{bottom:58.127867pt;}
.yb{bottom:68.368667pt;}
.y55{bottom:68.396133pt;}
.yc{bottom:68.445200pt;}
.y4d{bottom:68.472533pt;}
.y211{bottom:71.461200pt;}
.y45{bottom:89.700800pt;}
.y214{bottom:92.185067pt;}
.y215{bottom:93.185067pt;}
.y200{bottom:103.348933pt;}
.y44{bottom:105.700800pt;}
.yfa{bottom:106.361867pt;}
.yad{bottom:109.183733pt;}
.y153{bottom:110.346400pt;}
.y1e4{bottom:113.333200pt;}
.ye8{bottom:116.335867pt;}
.y67{bottom:118.041600pt;}
.y8e{bottom:118.346400pt;}
.y15f{bottom:119.034133pt;}
.y1ff{bottom:120.015600pt;}
.y15{bottom:120.188933pt;}
.y1ef{bottom:121.669200pt;}
.y34{bottom:121.700800pt;}
.yf9{bottom:123.028533pt;}
.y86{bottom:124.052133pt;}
.y183{bottom:124.367467pt;}
.y1be{bottom:124.393333pt;}
.y18f{bottom:124.677067pt;}
.y194{bottom:125.669200pt;}
.yac{bottom:125.850400pt;}
.y103{bottom:126.997333pt;}
.y152{bottom:127.013067pt;}
.y20b{bottom:129.038933pt;}
.y1d4{bottom:129.380133pt;}
.y1e3{bottom:129.999867pt;}
.ye7{bottom:133.002533pt;}
.y15e{bottom:133.700800pt;}
.y66{bottom:134.708267pt;}
.y8d{bottom:135.013067pt;}
.y1fe{bottom:136.682267pt;}
.y33{bottom:137.700800pt;}
.y1ee{bottom:138.335867pt;}
.y182{bottom:139.034133pt;}
.y14{bottom:140.414667pt;}
.y85{bottom:140.718800pt;}
.y1bd{bottom:141.060000pt;}
.y18e{bottom:141.343733pt;}
.y193{bottom:142.335867pt;}
.yab{bottom:142.517067pt;}
.y102{bottom:143.664000pt;}
.y151{bottom:143.679733pt;}
.yf8{bottom:145.364400pt;}
.y20a{bottom:145.705600pt;}
.y1d3{bottom:146.046800pt;}
.y1e2{bottom:146.666533pt;}
.y15d{bottom:148.367467pt;}
.ye6{bottom:149.669200pt;}
.y65{bottom:151.374933pt;}
.y8c{bottom:151.679733pt;}
.y13{bottom:153.081333pt;}
.y1a3{bottom:153.514400pt;}
.y3f{bottom:153.700800pt;}
.y1ed{bottom:155.002533pt;}
.y84{bottom:157.385467pt;}
.y1bc{bottom:157.726667pt;}
.y4b{bottom:157.759333pt;}
.y18d{bottom:158.010400pt;}
.y1fd{bottom:159.018267pt;}
.yaa{bottom:159.183733pt;}
.y101{bottom:160.330667pt;}
.y150{bottom:160.346400pt;}
.yf7{bottom:162.031067pt;}
.y209{bottom:162.372267pt;}
.y1d2{bottom:162.713467pt;}
.y15c{bottom:163.034133pt;}
.y192{bottom:164.671867pt;}
.y12{bottom:165.748000pt;}
.ye5{bottom:166.335867pt;}
.y64{bottom:168.041600pt;}
.y181{bottom:168.367467pt;}
.y4a{bottom:168.426000pt;}
.y1e1{bottom:169.002533pt;}
.y32{bottom:169.700800pt;}
.y1a2{bottom:170.181067pt;}
.y8b{bottom:174.015600pt;}
.y17f{bottom:174.052133pt;}
.y1fc{bottom:175.684933pt;}
.ya9{bottom:175.850400pt;}
.y1ec{bottom:177.338533pt;}
.y15b{bottom:177.700800pt;}
.y11{bottom:178.414667pt;}
.y208{bottom:179.038933pt;}
.y1d1{bottom:179.380133pt;}
.y83{bottom:179.721333pt;}
.y1bb{bottom:180.062533pt;}
.y18c{bottom:180.346400pt;}
.y49{bottom:181.759333pt;}
.y100{bottom:182.666533pt;}
.y14f{bottom:182.682267pt;}
.ye4{bottom:183.002533pt;}
.y180{bottom:183.034133pt;}
.y224{bottom:183.728533pt;}
.yf6{bottom:184.367067pt;}
.y130{bottom:184.708267pt;}
.y1e0{bottom:185.669200pt;}
.y31{bottom:185.700800pt;}
.y1a1{bottom:186.847733pt;}
.y11a{bottom:187.188933pt;}
.y63{bottom:190.377600pt;}
.y17e{bottom:190.718800pt;}
.y10{bottom:191.081333pt;}
.y9{bottom:191.872400pt;}
.y1fb{bottom:192.351600pt;}
.y15a{bottom:192.367467pt;}
.y1eb{bottom:194.005200pt;}
.y48{bottom:195.092667pt;}
.y207{bottom:195.705600pt;}
.y82{bottom:196.388000pt;}
.y21d{bottom:196.395200pt;}
.y1ba{bottom:196.729200pt;}
.y18b{bottom:197.013067pt;}
.ya8{bottom:198.186267pt;}
.yff{bottom:199.333200pt;}
.y14e{bottom:199.348933pt;}
.yf5{bottom:201.033733pt;}
.y3e{bottom:201.700800pt;}
.y1d0{bottom:201.716133pt;}
.y1df{bottom:202.335867pt;}
.yf{bottom:203.748000pt;}
.y119{bottom:203.855600pt;}
.ye3{bottom:205.338533pt;}
.y159{bottom:207.034133pt;}
.y62{bottom:207.044267pt;}
.y21c{bottom:209.061867pt;}
.y1a0{bottom:209.183733pt;}
.y223{bottom:209.534267pt;}
.y1ea{bottom:210.671867pt;}
.y81{bottom:213.054667pt;}
.y4c{bottom:213.070800pt;}
.y1b9{bottom:213.395867pt;}
.y18a{bottom:213.679733pt;}
.y1fa{bottom:214.687600pt;}
.ya7{bottom:214.852933pt;}
.yfe{bottom:215.999867pt;}
.y14d{bottom:216.015600pt;}
.ye{bottom:216.414667pt;}
.y30{bottom:217.700800pt;}
.y206{bottom:218.041600pt;}
.y1cf{bottom:218.382800pt;}
.y118{bottom:220.522267pt;}
.y158{bottom:221.700800pt;}
.y21b{bottom:221.728533pt;}
.ye2{bottom:222.005200pt;}
.y222{bottom:222.200933pt;}
.yf4{bottom:223.369733pt;}
.y61{bottom:223.710933pt;}
.y1de{bottom:224.671867pt;}
.y19f{bottom:225.850400pt;}
.ybd{bottom:229.700800pt;}
.y17d{bottom:229.721333pt;}
.y1b8{bottom:230.062533pt;}
.y1f9{bottom:231.354267pt;}
.ya6{bottom:231.519600pt;}
.y14c{bottom:232.682267pt;}
.y1e9{bottom:233.007867pt;}
.y8{bottom:233.205733pt;}
.y3d{bottom:233.700800pt;}
.y21a{bottom:234.395200pt;}
.y205{bottom:234.708267pt;}
.y221{bottom:234.867600pt;}
.y1ce{bottom:235.049467pt;}
.y80{bottom:235.390667pt;}
.y189{bottom:236.015600pt;}
.y157{bottom:236.367467pt;}
.y117{bottom:237.188933pt;}
.yfd{bottom:238.335867pt;}
.ye1{bottom:238.671867pt;}
.y60{bottom:240.377600pt;}
.y1dd{bottom:241.338533pt;}
.y12f{bottom:241.700800pt;}
.yd{bottom:241.748000pt;}
.ybc{bottom:244.367467pt;}
.yf3{bottom:245.705600pt;}
.y17c{bottom:246.388000pt;}
.y1b7{bottom:246.729200pt;}
.y219{bottom:247.061867pt;}
.y220{bottom:247.534267pt;}
.y1f8{bottom:248.020933pt;}
.y19e{bottom:248.186267pt;}
.y1e8{bottom:249.674533pt;}
.y2f{bottom:249.700800pt;}
.y156{bottom:251.034133pt;}
.y204{bottom:251.374933pt;}
.y7f{bottom:252.057333pt;}
.y188{bottom:252.682267pt;}
.yca{bottom:253.700800pt;}
.ya5{bottom:253.855600pt;}
.y14b{bottom:255.018267pt;}
.ye0{bottom:255.338533pt;}
.y12e{bottom:256.367467pt;}
.y5f{bottom:257.044267pt;}
.y1cd{bottom:257.385467pt;}
.y1dc{bottom:258.005200pt;}
.ybb{bottom:259.034133pt;}
.y116{bottom:259.524800pt;}
.y218{bottom:259.728533pt;}
.y21f{bottom:260.200933pt;}
.yf2{bottom:262.372267pt;}
.y13c{bottom:262.713467pt;}
.y17b{bottom:263.054667pt;}
.y19d{bottom:264.852933pt;}
.y2e{bottom:265.700800pt;}
.y1e7{bottom:266.341200pt;}
.yc9{bottom:268.367467pt;}
.y7e{bottom:268.724000pt;}
.y1b6{bottom:269.065200pt;}
.y1f7{bottom:270.356933pt;}
.ya4{bottom:270.522267pt;}
.y12d{bottom:271.034133pt;}
.y14a{bottom:271.684933pt;}
.ydf{bottom:272.005200pt;}
.y217{bottom:272.395200pt;}
.y21e{bottom:272.867600pt;}
.yba{bottom:273.700800pt;}
.y203{bottom:273.710933pt;}
.y191{bottom:274.034133pt;}
.y1cc{bottom:274.052133pt;}
.y7{bottom:274.539067pt;}
.y1db{bottom:274.671867pt;}
.y187{bottom:275.018267pt;}
.y115{bottom:276.191467pt;}
.y5e{bottom:279.380133pt;}
.y155{bottom:280.367467pt;}
.y19c{bottom:281.519600pt;}
.y43{bottom:281.700800pt;}
.y1e6{bottom:283.007867pt;}
.yc8{bottom:283.034133pt;}
.yf1{bottom:284.708267pt;}
.y7d{bottom:285.390667pt;}
.y129{bottom:285.700800pt;}
.y1b5{bottom:285.731867pt;}
.y190{bottom:286.700800pt;}
.y1f6{bottom:287.023600pt;}
.ya3{bottom:287.188933pt;}
.y149{bottom:288.351600pt;}
.yc0{bottom:288.367467pt;}
.y202{bottom:290.377600pt;}
.y1cb{bottom:290.718800pt;}
.y186{bottom:291.684933pt;}
.y114{bottom:292.858133pt;}
.yde{bottom:294.341200pt;}
.y136{bottom:295.034133pt;}
.y5d{bottom:296.046800pt;}
.y1da{bottom:297.007867pt;}
.y2d{bottom:297.700800pt;}
.y128{bottom:300.367467pt;}
.yf0{bottom:301.374933pt;}
.y17a{bottom:302.057333pt;}
.y1b4{bottom:302.398533pt;}
.ybf{bottom:303.034133pt;}
.ya2{bottom:303.855600pt;}
.y148{bottom:305.018267pt;}
.y1e5{bottom:305.343733pt;}
.y201{bottom:307.044267pt;}
.y7c{bottom:307.726667pt;}
.y185{bottom:308.351600pt;}
.y1f5{bottom:309.359467pt;}
.y113{bottom:309.524800pt;}
.y135{bottom:309.700800pt;}
.ydd{bottom:311.007867pt;}
.y5c{bottom:312.713467pt;}
.y1ca{bottom:313.054667pt;}
.y1d9{bottom:313.674533pt;}
.y2c{bottom:313.700800pt;}
.y127{bottom:315.034133pt;}
.y6{bottom:315.872400pt;}
.yc2{bottom:317.700800pt;}
.yef{bottom:318.041600pt;}
.y13b{bottom:318.382800pt;}
.y179{bottom:318.724000pt;}
.yb9{bottom:320.367467pt;}
.ya1{bottom:320.522267pt;}
.y120{bottom:321.700800pt;}
.y134{bottom:324.367467pt;}
.y7b{bottom:324.393333pt;}
.y1b3{bottom:324.734533pt;}
.y1f4{bottom:326.026133pt;}
.y1f0{bottom:327.034133pt;}
.y147{bottom:327.354267pt;}
.ydc{bottom:327.674533pt;}
.y5b{bottom:329.380133pt;}
.y2b{bottom:329.700800pt;}
.y1c9{bottom:329.721333pt;}
.y184{bottom:330.687600pt;}
.y112{bottom:331.860800pt;}
.yc1{bottom:332.367467pt;}
.yfc{bottom:332.874667pt;}
.yed{bottom:334.454533pt;}
.yb8{bottom:335.034133pt;}
.y13a{bottom:335.049467pt;}
.y1d8{bottom:336.010400pt;}
.y11f{bottom:336.367467pt;}
.y19b{bottom:337.188933pt;}
.y139{bottom:339.034133pt;}
.yee{bottom:340.377600pt;}
.y7a{bottom:341.060000pt;}
.y1b2{bottom:341.401200pt;}
.y1c0{bottom:341.700800pt;}
.y1f3{bottom:342.692933pt;}
.ya0{bottom:342.858267pt;}
.y146{bottom:344.020933pt;}
.ydb{bottom:344.341200pt;}
.yc7{bottom:344.367467pt;}
.yfb{bottom:345.541333pt;}
.y42{bottom:345.700800pt;}
.y5a{bottom:346.046933pt;}
.y1c8{bottom:346.388000pt;}
.y122{bottom:347.034133pt;}
.yec{bottom:347.118533pt;}
.y111{bottom:348.527467pt;}
.yb7{bottom:349.700800pt;}
.y11e{bottom:351.034133pt;}
.y12c{bottom:351.716133pt;}
.y1d7{bottom:352.677067pt;}
.y138{bottom:353.700800pt;}
.y19a{bottom:353.855600pt;}
.y1bf{bottom:356.367467pt;}
.y5{bottom:357.205733pt;}
.y178{bottom:357.726667pt;}
.y1b1{bottom:358.067867pt;}
.yc6{bottom:359.034133pt;}
.y1f2{bottom:359.359600pt;}
.y9f{bottom:359.524933pt;}
.yeb{bottom:359.782533pt;}
.y145{bottom:360.687600pt;}
.y2a{bottom:361.700800pt;}
.y59{bottom:362.713600pt;}
.y1c7{bottom:363.054667pt;}
.y79{bottom:363.395867pt;}
.y47{bottom:363.601467pt;}
.yb6{bottom:364.367467pt;}
.y110{bottom:365.194133pt;}
.y225{bottom:365.586133pt;}
.yda{bottom:366.677067pt;}
.y137{bottom:368.367467pt;}
.y12b{bottom:368.382800pt;}
.y1d6{bottom:369.343733pt;}
.y133{bottom:371.034133pt;}
.yea{bottom:372.446533pt;}
.yc5{bottom:373.700800pt;}
.y177{bottom:374.393333pt;}
.y1b0{bottom:374.734533pt;}
.y9e{bottom:376.191600pt;}
.y121{bottom:376.367467pt;}
.y144{bottom:377.354267pt;}
.y29{bottom:377.700800pt;}
.yb5{bottom:379.034133pt;}
.y78{bottom:380.062533pt;}
.y1f1{bottom:381.695467pt;}
.y154{bottom:383.034133pt;}
.yd9{bottom:383.343733pt;}
.y58{bottom:385.049467pt;}
.ye9{bottom:385.113200pt;}
.y1c6{bottom:385.390667pt;}
.yd3{bottom:385.700800pt;}
.y10f{bottom:387.530133pt;}
.yc4{bottom:388.367467pt;}
.y126{bottom:391.034133pt;}
.y1af{bottom:391.401200pt;}
.y1d5{bottom:391.679733pt;}
.y199{bottom:392.858267pt;}
.y28{bottom:393.700800pt;}
.y77{bottom:396.729200pt;}
.y11d{bottom:397.700800pt;}
.y9d{bottom:398.527467pt;}
.y143{bottom:399.690267pt;}
.y8a{bottom:400.367467pt;}
.y1c5{bottom:402.057333pt;}
.yc3{bottom:403.034133pt;}
.y10e{bottom:404.196800pt;}
.y1c{bottom:404.772133pt;}
.yd8{bottom:405.679733pt;}
.y125{bottom:405.700800pt;}
.y12a{bottom:407.385467pt;}
.yb4{bottom:408.367467pt;}
.y3c{bottom:409.700800pt;}
.y11c{bottom:412.367467pt;}
.y176{bottom:413.395867pt;}
.y1ae{bottom:413.737200pt;}
.y89{bottom:415.034133pt;}
.y9c{bottom:415.194133pt;}
.y4{bottom:415.502533pt;}
.y142{bottom:416.356933pt;}
.ybe{bottom:417.700800pt;}
.y16e{bottom:418.148667pt;}
.y1c4{bottom:418.724000pt;}
.y76{bottom:419.065200pt;}
.y124{bottom:420.367467pt;}
.y10d{bottom:420.863467pt;}
.yd7{bottom:422.346400pt;}
.yb3{bottom:423.034133pt;}
.y1b{bottom:423.438800pt;}
.y27{bottom:425.700800pt;}
.y11b{bottom:427.034133pt;}
.yd2{bottom:429.700800pt;}
.y175{bottom:430.062533pt;}
.y1ad{bottom:430.403867pt;}
.y9b{bottom:431.860800pt;}
.y6c{bottom:432.367467pt;}
.y16d{bottom:432.815333pt;}
.y141{bottom:433.023600pt;}
.y123{bottom:435.034133pt;}
.y1c3{bottom:435.390667pt;}
.y75{bottom:435.731867pt;}
.y10c{bottom:437.530133pt;}
.yb2{bottom:437.700800pt;}
.yd6{bottom:439.013067pt;}
.y26{bottom:441.700800pt;}
.y1a{bottom:442.105467pt;}
.y132{bottom:444.367467pt;}
.y174{bottom:446.729200pt;}
.y6b{bottom:447.034133pt;}
.y1ac{bottom:447.070533pt;}
.y16c{bottom:447.482000pt;}
.y198{bottom:448.527467pt;}
.y53{bottom:449.700800pt;}
.y1c2{bottom:452.057333pt;}
.yb1{bottom:452.367467pt;}
.y74{bottom:452.398533pt;}
.y9a{bottom:454.196800pt;}
.y140{bottom:455.359600pt;}
.yd5{bottom:455.679733pt;}
.y3b{bottom:457.700800pt;}
.y131{bottom:459.034133pt;}
.y10b{bottom:459.866133pt;}
.y6a{bottom:461.700800pt;}
.y16b{bottom:462.148667pt;}
.y1ab{bottom:463.737200pt;}
.y52{bottom:464.367467pt;}
.y197{bottom:465.194133pt;}
.y216{bottom:465.781333pt;}
.yb0{bottom:467.034133pt;}
.y173{bottom:469.065200pt;}
.y99{bottom:470.863467pt;}
.y25{bottom:473.700800pt;}
.y1c1{bottom:474.393333pt;}
.y73{bottom:474.734533pt;}
.y88{bottom:476.367467pt;}
.y10a{bottom:476.532800pt;}
.y16a{bottom:476.815333pt;}
.yd4{bottom:478.015733pt;}
.y57{bottom:479.034133pt;}
.y1aa{bottom:480.403867pt;}
.yaf{bottom:481.700800pt;}
.y172{bottom:485.731867pt;}
.y98{bottom:487.530133pt;}
.y24{bottom:489.700800pt;}
.y87{bottom:491.034133pt;}
.y72{bottom:491.401200pt;}
.y109{bottom:493.199467pt;}
.y56{bottom:493.700800pt;}
.y19{bottom:494.029333pt;}
.yae{bottom:496.367467pt;}
.y1a9{bottom:497.070533pt;}
.yd1{bottom:499.034133pt;}
.y171{bottom:502.398533pt;}
.y97{bottom:504.196800pt;}
.y41{bottom:505.700800pt;}
.y71{bottom:508.067867pt;}
.y69{bottom:508.367467pt;}
.y108{bottom:509.866133pt;}
.y51{bottom:511.034133pt;}
.y18{bottom:512.696000pt;}
.yd0{bottom:513.700800pt;}
.y1a8{bottom:513.737200pt;}
.y13f{bottom:514.036800pt;}
.y170{bottom:519.065200pt;}
.y196{bottom:520.863467pt;}
.y23{bottom:521.700800pt;}
.y68{bottom:523.034133pt;}
.y169{bottom:523.482000pt;}
.y50{bottom:525.700800pt;}
.y96{bottom:526.532800pt;}
.y13e{bottom:526.700800pt;}
.ycf{bottom:528.367467pt;}
.y70{bottom:530.403867pt;}
.y107{bottom:532.202133pt;}
.y1a7{bottom:536.073067pt;}
.y22{bottom:537.700800pt;}
.y168{bottom:538.148667pt;}
.y13d{bottom:539.367467pt;}
.y4f{bottom:540.367467pt;}
.y16f{bottom:541.401200pt;}
.yce{bottom:543.034133pt;}
.y95{bottom:543.199467pt;}
.y6f{bottom:547.070533pt;}
.y106{bottom:548.868800pt;}
.y1a6{bottom:552.739733pt;}
.y167{bottom:552.815333pt;}
.y3a{bottom:553.700800pt;}
.y4e{bottom:555.034133pt;}
.ycd{bottom:557.700800pt;}
.y17{bottom:559.841733pt;}
.y94{bottom:559.866133pt;}
.y6e{bottom:563.737200pt;}
.y105{bottom:565.535467pt;}
.y166{bottom:567.482000pt;}
.y1a5{bottom:569.406400pt;}
.y40{bottom:569.700800pt;}
.ycc{bottom:572.367467pt;}
.y195{bottom:576.532800pt;}
.y16{bottom:578.508400pt;}
.y210{bottom:581.747733pt;}
.y165{bottom:582.148667pt;}
.y93{bottom:582.202133pt;}
.y39{bottom:585.700800pt;}
.y6d{bottom:586.073067pt;}
.ycb{bottom:587.034133pt;}
.y164{bottom:596.815333pt;}
.y92{bottom:598.868800pt;}
.y38{bottom:601.700800pt;}
.y1f{bottom:601.715467pt;}
.y104{bottom:604.538000pt;}
.y1a4{bottom:608.409067pt;}
.y163{bottom:611.482000pt;}
.y21{bottom:617.700667pt;}
.y37{bottom:617.700800pt;}
.y91{bottom:621.204667pt;}
.y1e{bottom:623.048800pt;}
.y162{bottom:626.148667pt;}
.y20f{bottom:626.683467pt;}
.y36{bottom:633.700800pt;}
.y46{bottom:633.971600pt;}
.y90{bottom:637.871333pt;}
.y161{bottom:640.815333pt;}
.y1d{bottom:644.382133pt;}
.y3{bottom:644.901973pt;}
.y20e{bottom:646.683467pt;}
.y35{bottom:649.700800pt;}
.y8f{bottom:654.538000pt;}
.y160{bottom:655.482000pt;}
.y2{bottom:668.993920pt;}
.y20d{bottom:676.296267pt;}
.y1{bottom:693.085867pt;}
.y20c{bottom:706.962933pt;}
.y20{bottom:717.474533pt;}
.ya{bottom:717.970800pt;}
.y54{bottom:718.214933pt;}
.h16{height:19.895833pt;}
.h11{height:21.885417pt;}
.h3{height:27.251883pt;}
.h6{height:27.434896pt;}
.h8{height:27.626667pt;}
.h7{height:27.854167pt;}
.h17{height:27.906250pt;}
.hf{height:31.573333pt;}
.he{height:31.741547pt;}
.h14{height:31.833333pt;}
.h10{height:32.557292pt;}
.h18{height:34.176000pt;}
.ha{height:35.273438pt;}
.h1b{height:35.643025pt;}
.h12{height:35.812500pt;}
.hd{height:37.208333pt;}
.hc{height:39.192708pt;}
.h15{height:41.152344pt;}
.h9{height:41.859375pt;}
.h1a{height:46.510417pt;}
.h2{height:51.587047pt;}
.h1c{height:58.789062pt;}
.hb{height:70.546875pt;}
.h13{height:71.625000pt;}
.h19{height:78.385417pt;}
.h4{height:90.143229pt;}
.h5{height:90.773333pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x6{left:66.141733pt;}
.x7{left:67.086667pt;}
.x3{left:68.000000pt;}
.xa{left:69.291333pt;}
.x11{left:76.364800pt;}
.x10{left:79.370133pt;}
.x15{left:82.671467pt;}
.x9{left:84.870000pt;}
.x14{left:85.937733pt;}
.x8{left:87.137733pt;}
.x12{left:88.586133pt;}
.x13{left:89.775600pt;}
.xe{left:94.434133pt;}
.xb{left:117.364800pt;}
.x1{left:164.352667pt;}
.x17{left:178.239467pt;}
.x2{left:253.806133pt;}
.xd{left:256.008400pt;}
.xc{left:258.190667pt;}
.x16{left:277.577733pt;}
.x4{left:280.920267pt;}
.x18{left:286.340133pt;}
.x19{left:394.440667pt;}
.x5{left:428.056000pt;}
.xf{left:429.555333pt;}
}




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