
    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_9be11408449a6e09621a0311.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b9464a2b7bf0d1229b49e01b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_a4ac67cfa001e8490f3a5ee7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f33ac58edbac2536e310023d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_e23132b63b5b9e5ce8ab761f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_b6a960726a5bd26525086a35.woff')format("woff");}.ff6{font-family:ff6;line-height:0.822000;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_a11123a9e112cebe10c66550.woff')format("woff");}.ff7{font-family:ff7;line-height:0.905000;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_bd747a7b5047170d8fad438a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_5b2ba0fbb270ebaa679f7e59.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_bc46a7df60aa4ce872647ef3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_f5425496f5ad218436f31845.woff')format("woff");}.ffb{font-family:ffb;line-height:0.678711;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_5e47d4466594b97a66d6158e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902344;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_de6d8a3edd52017c48bfe0f8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899414;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_020114707d235ca771053466.woff')format("woff");}.ffe{font-family:ffe;line-height:0.897949;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_4f82bf8279d483eb7b43b4d7.woff')format("woff");}.fff{font-family:fff;line-height:0.897949;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);}
.v1{vertical-align:-60.183576px;}
.v7{vertical-align:-23.760000px;}
.v4{vertical-align:-16.830000px;}
.v5{vertical-align:-14.400000px;}
.v8{vertical-align:-12.000000px;}
.v9{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:12.000000px;}
.v6{vertical-align:14.400000px;}
.va{vertical-align:19.800000px;}
.v3{vertical-align:24.120000px;}
.v2{vertical-align:180.183576px;}
.ls58{letter-spacing:-7.344000px;}
.ls56{letter-spacing:-6.624000px;}
.ls55{letter-spacing:-6.264000px;}
.ls5b{letter-spacing:-4.320000px;}
.ls42{letter-spacing:-2.808000px;}
.ls28{letter-spacing:-2.340000px;}
.ls5e{letter-spacing:-2.088000px;}
.ls62{letter-spacing:-1.872000px;}
.ls4f{letter-spacing:-1.224000px;}
.ls59{letter-spacing:-1.152000px;}
.ls17{letter-spacing:-1.080000px;}
.ls57{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.648000px;}
.ls52{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.300000px;}
.ls2a{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.463800px;}
.ls4a{letter-spacing:0.493800px;}
.ls22{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.576000px;}
.ls36{letter-spacing:0.600000px;}
.ls33{letter-spacing:0.648000px;}
.ls5a{letter-spacing:0.690000px;}
.ls6{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.864000px;}
.ls54{letter-spacing:1.008000px;}
.ls47{letter-spacing:1.080000px;}
.ls46{letter-spacing:1.152000px;}
.ls4b{letter-spacing:1.224000px;}
.ls4c{letter-spacing:1.368000px;}
.ls5c{letter-spacing:1.440000px;}
.ls3e{letter-spacing:1.512000px;}
.ls5d{letter-spacing:1.656000px;}
.ls37{letter-spacing:1.857600px;}
.ls3{letter-spacing:2.880000px;}
.ls26{letter-spacing:3.618000px;}
.ls4e{letter-spacing:3.678000px;}
.ls4d{letter-spacing:3.702000px;}
.ls25{letter-spacing:3.708000px;}
.ls24{letter-spacing:3.774000px;}
.ls53{letter-spacing:4.200000px;}
.ls2{letter-spacing:4.608000px;}
.ls60{letter-spacing:4.752000px;}
.ls32{letter-spacing:6.264000px;}
.ls1f{letter-spacing:6.300000px;}
.ls51{letter-spacing:6.600000px;}
.ls19{letter-spacing:6.900000px;}
.ls18{letter-spacing:7.200000px;}
.ls1d{letter-spacing:7.704000px;}
.ls35{letter-spacing:7.800000px;}
.ls27{letter-spacing:7.992000px;}
.ls15{letter-spacing:8.280000px;}
.ls0{letter-spacing:8.436000px;}
.ls5f{letter-spacing:8.460000px;}
.ls14{letter-spacing:8.496000px;}
.ls2f{letter-spacing:8.568000px;}
.ls21{letter-spacing:8.640000px;}
.ls45{letter-spacing:8.784000px;}
.ls38{letter-spacing:8.812800px;}
.ls31{letter-spacing:8.856000px;}
.ls2d{letter-spacing:8.928000px;}
.ls44{letter-spacing:9.000000px;}
.ls39{letter-spacing:9.216000px;}
.ls49{letter-spacing:9.288000px;}
.ls3b{letter-spacing:9.360000px;}
.ls2e{letter-spacing:9.720000px;}
.ls3d{letter-spacing:10.152000px;}
.ls1e{letter-spacing:10.296000px;}
.ls1{letter-spacing:10.740000px;}
.ls41{letter-spacing:14.328000px;}
.ls3a{letter-spacing:16.156800px;}
.ls43{letter-spacing:17.784000px;}
.ls48{letter-spacing:18.036000px;}
.ls30{letter-spacing:18.288000px;}
.ls40{letter-spacing:18.741600px;}
.ls3f{letter-spacing:18.943200px;}
.ls3c{letter-spacing:19.008000px;}
.ls2c{letter-spacing:19.152000px;}
.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;}
}
.ws43{word-spacing:-72.000000px;}
.ws17{word-spacing:-71.640000px;}
.ws1{word-spacing:-66.540996px;}
.ws3f{word-spacing:-29.088000px;}
.ws40{word-spacing:-28.872000px;}
.ws4f{word-spacing:-27.936000px;}
.ws4e{word-spacing:-27.144000px;}
.ws57{word-spacing:-27.072000px;}
.ws4d{word-spacing:-27.000000px;}
.ws54{word-spacing:-26.784000px;}
.ws3c{word-spacing:-26.712000px;}
.ws55{word-spacing:-26.568000px;}
.ws3d{word-spacing:-26.424000px;}
.ws3e{word-spacing:-26.352000px;}
.ws79{word-spacing:-25.320000px;}
.ws25{word-spacing:-22.020000px;}
.ws22{word-spacing:-20.448000px;}
.ws38{word-spacing:-20.232000px;}
.ws42{word-spacing:-20.160000px;}
.ws63{word-spacing:-20.016000px;}
.ws60{word-spacing:-19.800000px;}
.ws50{word-spacing:-19.296000px;}
.ws5b{word-spacing:-19.008000px;}
.ws56{word-spacing:-18.864000px;}
.ws6c{word-spacing:-18.648000px;}
.ws4c{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.504000px;}
.ws53{word-spacing:-18.432000px;}
.ws41{word-spacing:-18.360000px;}
.ws6e{word-spacing:-18.288000px;}
.ws62{word-spacing:-18.216000px;}
.ws58{word-spacing:-18.144000px;}
.ws65{word-spacing:-18.072000px;}
.ws31{word-spacing:-18.000000px;}
.ws5c{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.784000px;}
.ws30{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.640000px;}
.ws5a{word-spacing:-17.496000px;}
.ws21{word-spacing:-17.424000px;}
.ws61{word-spacing:-17.352000px;}
.ws64{word-spacing:-17.280000px;}
.ws36{word-spacing:-17.208000px;}
.ws37{word-spacing:-17.136000px;}
.ws1f{word-spacing:-17.064000px;}
.ws26{word-spacing:-16.860000px;}
.ws20{word-spacing:-16.848000px;}
.ws6d{word-spacing:-16.776000px;}
.ws68{word-spacing:-16.560000px;}
.ws24{word-spacing:-14.820000px;}
.ws47{word-spacing:-14.520000px;}
.ws67{word-spacing:-14.220000px;}
.ws16{word-spacing:-14.162400px;}
.ws7a{word-spacing:-13.488000px;}
.ws49{word-spacing:-11.856000px;}
.ws27{word-spacing:-11.802000px;}
.ws2b{word-spacing:-10.296000px;}
.ws32{word-spacing:-9.441600px;}
.ws33{word-spacing:-8.640000px;}
.ws45{word-spacing:-8.568000px;}
.ws0{word-spacing:-8.496000px;}
.ws1e{word-spacing:-8.280000px;}
.ws39{word-spacing:-7.992000px;}
.ws4b{word-spacing:-7.800000px;}
.ws2a{word-spacing:-7.704000px;}
.ws2d{word-spacing:-7.200000px;}
.ws2f{word-spacing:-6.900000px;}
.ws6a{word-spacing:-6.600000px;}
.ws2c{word-spacing:-6.300000px;}
.ws46{word-spacing:-6.264000px;}
.ws6b{word-spacing:-4.200000px;}
.ws77{word-spacing:-1.656000px;}
.ws52{word-spacing:-1.512000px;}
.ws78{word-spacing:-1.440000px;}
.ws5e{word-spacing:-1.368000px;}
.ws5d{word-spacing:-1.224000px;}
.ws59{word-spacing:-1.152000px;}
.ws6f{word-spacing:-1.008000px;}
.ws12{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.792000px;}
.ws13{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.648000px;}
.ws4a{word-spacing:-0.600000px;}
.ws34{word-spacing:-0.576000px;}
.ws35{word-spacing:-0.504000px;}
.ws1b{word-spacing:-0.432000px;}
.ws44{word-spacing:-0.360000px;}
.ws7d{word-spacing:-0.300000px;}
.ws23{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.144000px;}
.ws1c{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws29{word-spacing:0.072000px;}
.ws11{word-spacing:0.144000px;}
.ws3b{word-spacing:0.216000px;}
.wsd{word-spacing:0.288000px;}
.ws2e{word-spacing:0.300000px;}
.ws8{word-spacing:0.360000px;}
.ws10{word-spacing:0.432000px;}
.wsf{word-spacing:0.504000px;}
.wsc{word-spacing:0.576000px;}
.ws69{word-spacing:0.600000px;}
.wsb{word-spacing:0.648000px;}
.ws28{word-spacing:0.720000px;}
.wse{word-spacing:0.792000px;}
.ws72{word-spacing:1.008000px;}
.ws1d{word-spacing:1.080000px;}
.ws74{word-spacing:1.152000px;}
.ws66{word-spacing:1.224000px;}
.ws7b{word-spacing:1.440000px;}
.ws5{word-spacing:1.800000px;}
.ws7c{word-spacing:1.872000px;}
.ws76{word-spacing:2.088000px;}
.ws3a{word-spacing:2.340000px;}
.ws51{word-spacing:2.808000px;}
.ws6{word-spacing:3.312000px;}
.ws19{word-spacing:3.600000px;}
.ws3{word-spacing:4.200000px;}
.ws75{word-spacing:4.320000px;}
.ws70{word-spacing:6.264000px;}
.ws71{word-spacing:6.624000px;}
.ws73{word-spacing:7.344000px;}
.ws5f{word-spacing:10.080000px;}
.ws14{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._8{margin-left:-55.949568px;}
._15{margin-left:-15.261600px;}
._10{margin-left:-14.034000px;}
._1a{margin-left:-10.512000px;}
._f{margin-left:-9.224400px;}
._d{margin-left:-7.374000px;}
._1{margin-left:-5.964000px;}
._19{margin-left:-4.926000px;}
._5{margin-left:-3.888000px;}
._9{margin-left:-2.484000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._e{width:2.904000px;}
._6{width:3.912000px;}
._7{width:4.987200px;}
._11{width:6.056400px;}
._a{width:7.094400px;}
._4{width:8.580000px;}
._b{width:10.159200px;}
._c{width:11.253600px;}
._16{width:12.432000px;}
._17{width:13.872000px;}
._14{width:14.906400px;}
._18{width:26.450400px;}
._12{width:31.646100px;}
._13{width:45.080400px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y8e{bottom:117.000000px;}
.y232{bottom:117.000150px;}
.y196{bottom:118.046100px;}
.y1ee{bottom:119.250000px;}
.y257{bottom:119.472150px;}
.y210{bottom:119.942100px;}
.y14a{bottom:120.310200px;}
.yb6{bottom:120.484200px;}
.y287{bottom:121.044150px;}
.y42{bottom:121.207500px;}
.y102{bottom:121.488150px;}
.y1f{bottom:121.746600px;}
.y172{bottom:132.000000px;}
.y231{bottom:132.000150px;}
.y256{bottom:134.772150px;}
.y8d{bottom:136.207500px;}
.y1ed{bottom:137.700000px;}
.yb5{bottom:139.234200px;}
.y286{bottom:139.494150px;}
.y123{bottom:139.500000px;}
.y195{bottom:141.140100px;}
.y20f{bottom:142.892100px;}
.y149{bottom:143.116200px;}
.y101{bottom:143.988150px;}
.y1e{bottom:144.390600px;}
.y171{bottom:147.000000px;}
.y255{bottom:150.072150px;}
.y1d1{bottom:151.207500px;}
.y230{bottom:151.207650px;}
.y8c{bottom:154.500000px;}
.y1ec{bottom:156.150000px;}
.ydd{bottom:156.426300px;}
.y285{bottom:157.944150px;}
.yb4{bottom:157.984200px;}
.y66{bottom:161.088150px;}
.y122{bottom:162.000000px;}
.y194{bottom:164.234100px;}
.y254{bottom:165.372150px;}
.y20e{bottom:165.842100px;}
.y148{bottom:165.922200px;}
.y100{bottom:166.488150px;}
.y41{bottom:167.010000px;}
.y1d{bottom:167.034600px;}
.y8b{bottom:169.500000px;}
.y1eb{bottom:174.600000px;}
.ydc{bottom:174.876300px;}
.y1b9{bottom:175.638150px;}
.y284{bottom:176.394150px;}
.yb3{bottom:176.734200px;}
.y170{bottom:177.000000px;}
.y65{bottom:180.288150px;}
.y253{bottom:180.666000px;}
.y8a{bottom:184.500000px;}
.y193{bottom:187.328100px;}
.y147{bottom:188.728200px;}
.y20d{bottom:188.792100px;}
.yff{bottom:188.988150px;}
.y40{bottom:189.510000px;}
.y1c{bottom:189.678600px;}
.y22f{bottom:192.300000px;}
.y1ea{bottom:193.050000px;}
.ydb{bottom:193.326300px;}
.y1d0{bottom:193.424100px;}
.y1b8{bottom:194.088150px;}
.y283{bottom:194.844150px;}
.yb2{bottom:195.484200px;}
.y252{bottom:195.966000px;}
.y16f{bottom:196.207500px;}
.y64{bottom:199.488150px;}
.y89{bottom:203.707500px;}
.y121{bottom:207.000000px;}
.y192{bottom:210.422100px;}
.y251{bottom:211.266000px;}
.yfe{bottom:211.488150px;}
.y1e9{bottom:211.500000px;}
.y146{bottom:211.516200px;}
.y20c{bottom:211.742100px;}
.y3f{bottom:211.866000px;}
.y1b{bottom:212.322600px;}
.y1b7{bottom:212.538150px;}
.y282{bottom:213.294150px;}
.yb1{bottom:214.234200px;}
.y22e{bottom:215.250000px;}
.y1cf{bottom:215.780100px;}
.y63{bottom:218.688150px;}
.yda{bottom:220.286250px;}
.y250{bottom:226.566000px;}
.y120{bottom:229.500000px;}
.y1e8{bottom:229.950000px;}
.y1b6{bottom:230.988150px;}
.y281{bottom:231.744150px;}
.yb0{bottom:232.984200px;}
.y191{bottom:233.516100px;}
.yfd{bottom:233.988150px;}
.y3e{bottom:234.222000px;}
.y145{bottom:234.322200px;}
.y20b{bottom:234.692100px;}
.y1a{bottom:234.966600px;}
.y16e{bottom:237.716100px;}
.y62{bottom:237.888150px;}
.y1ce{bottom:238.136100px;}
.y22d{bottom:238.200000px;}
.y88{bottom:240.484200px;}
.y24f{bottom:241.866000px;}
.yd9{bottom:242.480250px;}
.y1e7{bottom:248.400000px;}
.y1b5{bottom:249.438150px;}
.y280{bottom:250.194150px;}
.yaf{bottom:251.734200px;}
.y11f{bottom:252.000000px;}
.yfc{bottom:256.488150px;}
.y3d{bottom:256.578000px;}
.y190{bottom:256.610100px;}
.y144{bottom:257.128200px;}
.y24e{bottom:257.166000px;}
.y19{bottom:257.610600px;}
.y20a{bottom:257.642100px;}
.y87{bottom:258.934200px;}
.y16d{bottom:259.910100px;}
.y1cd{bottom:260.468100px;}
.y22c{bottom:261.150000px;}
.y61{bottom:265.592100px;}
.y1e6{bottom:266.850000px;}
.y27f{bottom:268.644150px;}
.yae{bottom:270.484200px;}
.y24d{bottom:272.466000px;}
.yd8{bottom:273.184200px;}
.y11e{bottom:274.500000px;}
.y1b4{bottom:276.488100px;}
.y86{bottom:277.384200px;}
.y3c{bottom:278.934000px;}
.yfb{bottom:278.988150px;}
.y18f{bottom:279.704100px;}
.y143{bottom:279.922200px;}
.y18{bottom:280.254600px;}
.y209{bottom:280.592100px;}
.y16c{bottom:282.104100px;}
.y1cc{bottom:282.824100px;}
.y22b{bottom:284.100000px;}
.y1e5{bottom:285.300000px;}
.y27e{bottom:287.094150px;}
.y60{bottom:288.542100px;}
.yad{bottom:289.234200px;}
.yd7{bottom:291.634200px;}
.y24c{bottom:294.150000px;}
.y85{bottom:295.684200px;}
.y11d{bottom:297.000000px;}
.y1b3{bottom:298.682100px;}
.y3b{bottom:301.290000px;}
.yfa{bottom:301.488150px;}
.y142{bottom:302.728200px;}
.y18e{bottom:302.798100px;}
.y17{bottom:302.898600px;}
.y208{bottom:303.542100px;}
.y1e4{bottom:303.750000px;}
.y16b{bottom:304.298100px;}
.y1cb{bottom:305.180100px;}
.y27d{bottom:305.544150px;}
.y22a{bottom:307.050000px;}
.yac{bottom:307.984200px;}
.yd6{bottom:310.084200px;}
.y84{bottom:313.984200px;}
.y11c{bottom:319.500000px;}
.y5f{bottom:319.996050px;}
.y1b2{bottom:320.876100px;}
.y1e3{bottom:322.200000px;}
.yf9{bottom:323.988150px;}
.y27c{bottom:323.994150px;}
.y141{bottom:325.528200px;}
.y16{bottom:325.542600px;}
.y18d{bottom:325.892100px;}
.y16a{bottom:326.492100px;}
.yab{bottom:326.734200px;}
.y1ca{bottom:327.536100px;}
.yd5{bottom:328.534200px;}
.y229{bottom:330.000000px;}
.y83{bottom:332.284200px;}
.y5e{bottom:339.196050px;}
.y24b{bottom:339.786000px;}
.y1e2{bottom:340.650000px;}
.y11b{bottom:342.000000px;}
.y27b{bottom:342.444150px;}
.y1b1{bottom:343.070100px;}
.yaa{bottom:345.484200px;}
.y3a{bottom:345.984000px;}
.yd4{bottom:346.984200px;}
.y15{bottom:348.186600px;}
.y140{bottom:348.334200px;}
.y207{bottom:349.442100px;}
.y1c9{bottom:349.892100px;}
.y82{bottom:350.584200px;}
.y228{bottom:352.950000px;}
.yf8{bottom:354.992100px;}
.y169{bottom:357.196050px;}
.y18c{bottom:357.496050px;}
.y5d{bottom:358.396050px;}
.y1e1{bottom:359.100000px;}
.y24a{bottom:362.286000px;}
.ya9{bottom:364.234200px;}
.y11a{bottom:364.500000px;}
.y1b0{bottom:365.264100px;}
.yd3{bottom:365.434200px;}
.y27a{bottom:367.272000px;}
.y39{bottom:368.340000px;}
.y81{bottom:368.884200px;}
.y14{bottom:370.830600px;}
.y206{bottom:372.392100px;}
.yf7{bottom:373.742100px;}
.y168{bottom:375.796050px;}
.y227{bottom:375.900000px;}
.y18b{bottom:376.846050px;}
.y1e0{bottom:377.550000px;}
.y5c{bottom:377.596050px;}
.y13f{bottom:379.638150px;}
.y1c8{bottom:380.746050px;}
.ya8{bottom:382.984200px;}
.yd2{bottom:383.884200px;}
.y249{bottom:384.786000px;}
.y119{bottom:387.000000px;}
.y80{bottom:387.184200px;}
.y1af{bottom:387.458100px;}
.y38{bottom:390.696000px;}
.yf6{bottom:392.492100px;}
.y13{bottom:393.474600px;}
.y167{bottom:394.396050px;}
.y205{bottom:395.342100px;}
.y1df{bottom:396.000000px;}
.y18a{bottom:396.196050px;}
.y5b{bottom:396.796050px;}
.y13e{bottom:398.688150px;}
.y226{bottom:398.850000px;}
.y1c7{bottom:399.346050px;}
.ya7{bottom:401.734200px;}
.y7f{bottom:405.484200px;}
.y248{bottom:407.286000px;}
.y118{bottom:409.500000px;}
.y1ae{bottom:409.652100px;}
.yd1{bottom:410.844150px;}
.yf5{bottom:411.242100px;}
.y279{bottom:411.672000px;}
.y166{bottom:412.996050px;}
.y37{bottom:413.052000px;}
.y1de{bottom:414.450000px;}
.y189{bottom:415.546050px;}
.y5a{bottom:415.996050px;}
.y12{bottom:416.118600px;}
.y13d{bottom:417.738150px;}
.y1c6{bottom:417.946050px;}
.y204{bottom:418.292100px;}
.ya6{bottom:420.484200px;}
.y225{bottom:421.800000px;}
.y7e{bottom:423.784200px;}
.y278{bottom:426.372000px;}
.y247{bottom:429.786000px;}
.yf4{bottom:429.992100px;}
.y165{bottom:431.596050px;}
.y1ad{bottom:431.846100px;}
.y117{bottom:432.000000px;}
.y1dd{bottom:432.900000px;}
.yd0{bottom:433.038150px;}
.y188{bottom:434.896050px;}
.y59{bottom:435.196050px;}
.y36{bottom:435.408000px;}
.y1c5{bottom:436.546050px;}
.y13c{bottom:436.788150px;}
.y11{bottom:438.762600px;}
.ya5{bottom:439.234200px;}
.y277{bottom:441.072000px;}
.y224{bottom:444.750000px;}
.yf3{bottom:448.742100px;}
.y203{bottom:449.746050px;}
.y164{bottom:450.196050px;}
.y7d{bottom:450.588150px;}
.y1dc{bottom:451.350000px;}
.y246{bottom:452.286000px;}
.y1ac{bottom:454.040100px;}
.y187{bottom:454.246050px;}
.y58{bottom:454.396050px;}
.y116{bottom:454.500000px;}
.y1c4{bottom:455.146050px;}
.y276{bottom:455.772000px;}
.y13b{bottom:455.838150px;}
.y35{bottom:457.764000px;}
.y10{bottom:461.406600px;}
.ycf{bottom:463.742100px;}
.ya4{bottom:466.488150px;}
.yf2{bottom:467.492100px;}
.y223{bottom:467.700000px;}
.y163{bottom:468.796050px;}
.y1db{bottom:469.800000px;}
.y275{bottom:470.472000px;}
.y7c{bottom:472.638150px;}
.y57{bottom:473.596050px;}
.y1c3{bottom:473.746050px;}
.y245{bottom:474.786000px;}
.y13a{bottom:474.888150px;}
.y1ab{bottom:476.234100px;}
.y115{bottom:477.000000px;}
.y34{bottom:480.120000px;}
.yce{bottom:482.192100px;}
.yf{bottom:484.050600px;}
.y274{bottom:485.172000px;}
.yf1{bottom:486.242100px;}
.y162{bottom:487.396050px;}
.y202{bottom:487.846050px;}
.y1da{bottom:488.250000px;}
.ya3{bottom:488.988150px;}
.y222{bottom:490.650000px;}
.y1c2{bottom:492.346050px;}
.y56{bottom:492.796050px;}
.y186{bottom:492.946050px;}
.y139{bottom:493.938150px;}
.y7b{bottom:494.688150px;}
.y244{bottom:497.286000px;}
.y1aa{bottom:498.428100px;}
.y114{bottom:499.500000px;}
.y273{bottom:499.872000px;}
.ycd{bottom:500.642100px;}
.y33{bottom:502.476000px;}
.yf0{bottom:504.992100px;}
.y161{bottom:505.996050px;}
.ye{bottom:506.694600px;}
.y1d9{bottom:506.700000px;}
.y201{bottom:506.896050px;}
.y1c1{bottom:510.946050px;}
.ya2{bottom:511.488150px;}
.y55{bottom:511.996050px;}
.y185{bottom:512.296050px;}
.y221{bottom:513.600000px;}
.y272{bottom:514.572000px;}
.y7a{bottom:516.738150px;}
.ycc{bottom:519.092100px;}
.y243{bottom:519.786000px;}
.y1a9{bottom:520.622100px;}
.y138{bottom:521.492100px;}
.y113{bottom:522.000000px;}
.yef{bottom:523.742100px;}
.y160{bottom:524.596050px;}
.y32{bottom:524.832000px;}
.y1d8{bottom:525.150000px;}
.y200{bottom:525.946050px;}
.y271{bottom:529.272000px;}
.yd{bottom:529.338600px;}
.y1c0{bottom:529.546050px;}
.y54{bottom:531.196050px;}
.y184{bottom:531.646050px;}
.ya1{bottom:533.988150px;}
.y220{bottom:536.550000px;}
.ycb{bottom:537.542100px;}
.y79{bottom:538.788150px;}
.y242{bottom:542.286000px;}
.yee{bottom:542.492100px;}
.y1a8{bottom:542.816100px;}
.y15f{bottom:543.196050px;}
.y1d7{bottom:543.600000px;}
.y270{bottom:543.972000px;}
.y112{bottom:544.500000px;}
.y1ff{bottom:544.996050px;}
.y31{bottom:547.188000px;}
.y1bf{bottom:548.146050px;}
.y53{bottom:550.396050px;}
.y183{bottom:550.996050px;}
.yc{bottom:551.982600px;}
.y137{bottom:552.496050px;}
.yca{bottom:555.992100px;}
.ya0{bottom:556.488150px;}
.y26f{bottom:558.672000px;}
.y21f{bottom:559.500000px;}
.yed{bottom:561.242100px;}
.y15e{bottom:561.796050px;}
.y1d6{bottom:562.050000px;}
.y1fe{bottom:564.046050px;}
.y241{bottom:564.786000px;}
.y1a7{bottom:565.010100px;}
.y1be{bottom:566.746050px;}
.y111{bottom:567.000000px;}
.y78{bottom:569.342100px;}
.y30{bottom:569.544000px;}
.y52{bottom:569.596050px;}
.y182{bottom:570.346050px;}
.y136{bottom:571.546050px;}
.y26e{bottom:573.372000px;}
.yc9{bottom:574.442100px;}
.yb{bottom:574.626600px;}
.y299{bottom:578.850000px;}
.y9f{bottom:578.988150px;}
.y15d{bottom:580.396050px;}
.y1d5{bottom:580.500000px;}
.y21e{bottom:582.450000px;}
.y1fd{bottom:583.096050px;}
.y1bd{bottom:585.346050px;}
.y1a6{bottom:587.204100px;}
.y240{bottom:587.286000px;}
.y77{bottom:587.642100px;}
.y26d{bottom:588.072000px;}
.yec{bottom:588.496050px;}
.y51{bottom:588.796050px;}
.y110{bottom:589.500000px;}
.y181{bottom:589.696050px;}
.y135{bottom:590.596050px;}
.y2f{bottom:591.810000px;}
.ya{bottom:597.270600px;}
.y298{bottom:597.600000px;}
.y1d4{bottom:598.950000px;}
.y15c{bottom:598.996050px;}
.yc8{bottom:601.402050px;}
.y9e{bottom:601.488150px;}
.y1fc{bottom:602.146050px;}
.y26c{bottom:602.772000px;}
.y21d{bottom:605.400000px;}
.y76{bottom:605.942100px;}
.y50{bottom:607.996050px;}
.y180{bottom:609.046050px;}
.y1a5{bottom:609.398100px;}
.y134{bottom:609.646050px;}
.y23f{bottom:609.786000px;}
.yeb{bottom:610.996050px;}
.y10f{bottom:612.000000px;}
.y1bc{bottom:612.432000px;}
.y8{bottom:612.558600px;}
.y2e{bottom:614.166000px;}
.y297{bottom:616.350000px;}
.y1d3{bottom:617.400000px;}
.y26b{bottom:617.472000px;}
.y15b{bottom:617.596050px;}
.y9{bottom:619.914600px;}
.y1fb{bottom:621.196050px;}
.yc7{bottom:623.596050px;}
.y75{bottom:624.242100px;}
.y4f{bottom:627.196050px;}
.y21c{bottom:628.350000px;}
.y17f{bottom:628.396050px;}
.y133{bottom:628.696050px;}
.y1a4{bottom:631.592100px;}
.y26a{bottom:632.172000px;}
.y23e{bottom:632.286000px;}
.y9d{bottom:632.492100px;}
.yea{bottom:633.496050px;}
.y10e{bottom:634.500000px;}
.y1bb{bottom:634.788000px;}
.y296{bottom:635.100000px;}
.y1d2{bottom:635.850000px;}
.y15a{bottom:636.196050px;}
.y2d{bottom:636.522000px;}
.y1fa{bottom:640.246050px;}
.y74{bottom:642.542100px;}
.y4e{bottom:646.396050px;}
.y269{bottom:646.872000px;}
.y132{bottom:647.746050px;}
.y9c{bottom:651.242100px;}
.y21b{bottom:651.300000px;}
.yc6{bottom:654.300000px;}
.y159{bottom:654.796050px;}
.y23d{bottom:654.930000px;}
.ye9{bottom:655.996050px;}
.y10d{bottom:657.000000px;}
.y1ba{bottom:657.144000px;}
.y2c{bottom:658.878000px;}
.y1f9{bottom:659.296050px;}
.y73{bottom:660.842100px;}
.y268{bottom:661.572000px;}
.y1a3{bottom:662.296050px;}
.y295{bottom:665.100000px;}
.y131{bottom:666.796050px;}
.y17e{bottom:667.096050px;}
.y9b{bottom:669.992100px;}
.yc5{bottom:672.750000px;}
.y158{bottom:673.396050px;}
.y4d{bottom:674.100000px;}
.y21a{bottom:674.250000px;}
.y267{bottom:676.272000px;}
.y23c{bottom:677.574000px;}
.y1f8{bottom:678.346050px;}
.ye8{bottom:678.496050px;}
.y10c{bottom:679.500000px;}
.y1a2{bottom:680.596050px;}
.y2b{bottom:681.234000px;}
.y130{bottom:685.846050px;}
.y17d{bottom:686.446050px;}
.y72{bottom:687.646050px;}
.y9a{bottom:688.742100px;}
.y266{bottom:690.972000px;}
.yc4{bottom:691.200000px;}
.y157{bottom:691.996050px;}
.y4c{bottom:697.050000px;}
.y1f7{bottom:697.396050px;}
.y1a1{bottom:698.896050px;}
.y23b{bottom:700.218000px;}
.ye7{bottom:700.996050px;}
.y10b{bottom:702.000000px;}
.y2a{bottom:703.590000px;}
.y12f{bottom:704.896050px;}
.y265{bottom:705.672000px;}
.y17c{bottom:705.796050px;}
.y294{bottom:706.350000px;}
.y99{bottom:707.492100px;}
.y7{bottom:708.968550px;}
.yc3{bottom:709.650000px;}
.y71{bottom:709.696050px;}
.y156{bottom:710.596050px;}
.y1f6{bottom:716.446050px;}
.y1a0{bottom:717.196050px;}
.y4b{bottom:720.000000px;}
.y219{bottom:720.150000px;}
.y264{bottom:720.372000px;}
.y23a{bottom:722.862000px;}
.ye6{bottom:723.496050px;}
.y12e{bottom:723.946050px;}
.y10a{bottom:724.500000px;}
.y293{bottom:725.100000px;}
.y17b{bottom:725.146050px;}
.y29{bottom:725.946000px;}
.y98{bottom:726.242100px;}
.y6{bottom:727.718550px;}
.yc2{bottom:728.100000px;}
.y155{bottom:729.196050px;}
.y70{bottom:731.746050px;}
.y263{bottom:735.072000px;}
.y19f{bottom:735.496050px;}
.y12d{bottom:742.996050px;}
.y218{bottom:743.100000px;}
.y292{bottom:743.850000px;}
.y17a{bottom:744.496050px;}
.y97{bottom:744.992100px;}
.y239{bottom:745.506000px;}
.ye5{bottom:745.996050px;}
.yc1{bottom:746.550000px;}
.y109{bottom:747.000000px;}
.y154{bottom:747.796050px;}
.y28{bottom:748.302000px;}
.y262{bottom:749.772000px;}
.y6f{bottom:753.796050px;}
.y1f5{bottom:754.546050px;}
.y12c{bottom:762.046050px;}
.y291{bottom:762.600000px;}
.y96{bottom:763.742100px;}
.y179{bottom:763.846050px;}
.y261{bottom:764.472000px;}
.yc0{bottom:765.000000px;}
.y4a{bottom:765.900000px;}
.y217{bottom:766.050000px;}
.y153{bottom:766.396050px;}
.y238{bottom:768.150000px;}
.ye4{bottom:768.496050px;}
.y108{bottom:769.500000px;}
.y5{bottom:769.854300px;}
.y27{bottom:770.658000px;}
.y19e{bottom:772.096050px;}
.y1f4{bottom:773.596050px;}
.y6e{bottom:775.846050px;}
.y260{bottom:779.172000px;}
.y12b{bottom:781.096050px;}
.y290{bottom:781.350000px;}
.y178{bottom:783.196050px;}
.ybf{bottom:783.450000px;}
.y152{bottom:784.996050px;}
.y49{bottom:788.850000px;}
.y216{bottom:789.000000px;}
.y19d{bottom:790.396050px;}
.y237{bottom:790.794000px;}
.y95{bottom:790.996050px;}
.y107{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.y1f3{bottom:792.646050px;}
.y26{bottom:793.014000px;}
.y25f{bottom:793.872000px;}
.y6d{bottom:797.896050px;}
.ye3{bottom:799.500000px;}
.y28f{bottom:800.100000px;}
.y12a{bottom:800.146050px;}
.ybe{bottom:801.900000px;}
.y151{bottom:803.596050px;}
.y25e{bottom:808.572000px;}
.y177{bottom:811.080000px;}
.y1f2{bottom:811.696050px;}
.y48{bottom:811.800000px;}
.y215{bottom:811.950000px;}
.y236{bottom:813.438000px;}
.y94{bottom:813.496050px;}
.y106{bottom:814.500000px;}
.y25{bottom:815.370000px;}
.y19c{bottom:817.200000px;}
.ye2{bottom:818.250000px;}
.y28e{bottom:818.850000px;}
.y129{bottom:819.196050px;}
.y6c{bottom:819.946050px;}
.ybd{bottom:820.350000px;}
.y150{bottom:822.196050px;}
.y25d{bottom:823.290000px;}
.y1f1{bottom:830.746050px;}
.y176{bottom:834.174000px;}
.y47{bottom:834.750000px;}
.y214{bottom:834.900000px;}
.y93{bottom:835.996050px;}
.y235{bottom:836.082000px;}
.ye1{bottom:837.000000px;}
.y28d{bottom:837.600000px;}
.y24{bottom:837.726000px;}
.y128{bottom:838.246050px;}
.ybc{bottom:838.800000px;}
.y19b{bottom:839.250000px;}
.y14f{bottom:840.796050px;}
.y6b{bottom:841.996050px;}
.y25c{bottom:844.362000px;}
.ye0{bottom:855.750000px;}
.y28c{bottom:856.350000px;}
.ybb{bottom:857.250000px;}
.y175{bottom:857.268000px;}
.y127{bottom:857.296050px;}
.y46{bottom:857.700000px;}
.y213{bottom:857.850000px;}
.y1f0{bottom:858.282000px;}
.y92{bottom:858.496050px;}
.y234{bottom:858.888000px;}
.y14e{bottom:859.396050px;}
.y3{bottom:859.500000px;}
.y23{bottom:860.082000px;}
.y19a{bottom:861.300000px;}
.y6a{bottom:864.046050px;}
.ydf{bottom:874.500000px;}
.y28b{bottom:875.100000px;}
.yba{bottom:875.700000px;}
.y126{bottom:876.346050px;}
.y14d{bottom:877.996050px;}
.y174{bottom:880.362000px;}
.y45{bottom:880.650000px;}
.y212{bottom:880.800000px;}
.y91{bottom:880.996050px;}
.y1ef{bottom:881.088000px;}
.y233{bottom:881.694000px;}
.y105{bottom:882.000000px;}
.y22{bottom:882.438000px;}
.y199{bottom:883.350000px;}
.y25b{bottom:888.906000px;}
.y2{bottom:889.500000px;}
.yde{bottom:893.250000px;}
.y28a{bottom:893.700000px;}
.yb9{bottom:894.150000px;}
.y69{bottom:894.600000px;}
.y173{bottom:903.456000px;}
.y44{bottom:903.600000px;}
.y211{bottom:903.750000px;}
.y125{bottom:903.894000px;}
.y25a{bottom:904.062000px;}
.y104{bottom:904.500000px;}
.y21{bottom:904.794000px;}
.y14c{bottom:905.106000px;}
.y198{bottom:905.400000px;}
.y90{bottom:912.000000px;}
.y289{bottom:912.300000px;}
.yb8{bottom:912.600000px;}
.y68{bottom:912.900000px;}
.y259{bottom:919.206000px;}
.y43{bottom:926.550000px;}
.y124{bottom:926.700000px;}
.y103{bottom:927.000000px;}
.y20{bottom:927.150000px;}
.y14b{bottom:927.300000px;}
.y197{bottom:927.450000px;}
.y8f{bottom:930.750000px;}
.y288{bottom:930.900000px;}
.yb7{bottom:931.050000px;}
.y67{bottom:931.200000px;}
.y258{bottom:934.350000px;}
.h8{height:30.313623px;}
.h12{height:39.072000px;}
.h1{height:39.990234px;}
.hb{height:40.757812px;}
.h13{height:40.782413px;}
.h3{height:42.000000px;}
.h5{height:50.947266px;}
.h11{height:55.463086px;}
.h4{height:61.136719px;}
.hc{height:61.160719px;}
.hd{height:61.184719px;}
.he{height:61.208719px;}
.hf{height:61.232719px;}
.h10{height:66.459703px;}
.h9{height:66.555703px;}
.ha{height:66.556303px;}
.h7{height:66.915703px;}
.h2{height:101.894531px;}
.h6{height:296.679600px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x6{left:82.368000px;}
.x9{left:97.263750px;}
.x2{left:112.500000px;}
.x4{left:127.377300px;}
.x3{left:136.233300px;}
.x7{left:142.263750px;}
.x8{left:157.158750px;}
.xa{left:180.525000px;}
.x1{left:625.781250px;}
@media print{
.v1{vertical-align:-53.496512pt;}
.v7{vertical-align:-21.120000pt;}
.v4{vertical-align:-14.960000pt;}
.v5{vertical-align:-12.800000pt;}
.v8{vertical-align:-10.666667pt;}
.v9{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:10.666667pt;}
.v6{vertical-align:12.800000pt;}
.va{vertical-align:17.600000pt;}
.v3{vertical-align:21.440000pt;}
.v2{vertical-align:160.163179pt;}
.ls58{letter-spacing:-6.528000pt;}
.ls56{letter-spacing:-5.888000pt;}
.ls55{letter-spacing:-5.568000pt;}
.ls5b{letter-spacing:-3.840000pt;}
.ls42{letter-spacing:-2.496000pt;}
.ls28{letter-spacing:-2.080000pt;}
.ls5e{letter-spacing:-1.856000pt;}
.ls62{letter-spacing:-1.664000pt;}
.ls4f{letter-spacing:-1.088000pt;}
.ls59{letter-spacing:-1.024000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls57{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls52{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.266667pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.412267pt;}
.ls4a{letter-spacing:0.438933pt;}
.ls22{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.512000pt;}
.ls36{letter-spacing:0.533333pt;}
.ls33{letter-spacing:0.576000pt;}
.ls5a{letter-spacing:0.613333pt;}
.ls6{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.768000pt;}
.ls54{letter-spacing:0.896000pt;}
.ls47{letter-spacing:0.960000pt;}
.ls46{letter-spacing:1.024000pt;}
.ls4b{letter-spacing:1.088000pt;}
.ls4c{letter-spacing:1.216000pt;}
.ls5c{letter-spacing:1.280000pt;}
.ls3e{letter-spacing:1.344000pt;}
.ls5d{letter-spacing:1.472000pt;}
.ls37{letter-spacing:1.651200pt;}
.ls3{letter-spacing:2.560000pt;}
.ls26{letter-spacing:3.216000pt;}
.ls4e{letter-spacing:3.269333pt;}
.ls4d{letter-spacing:3.290667pt;}
.ls25{letter-spacing:3.296000pt;}
.ls24{letter-spacing:3.354667pt;}
.ls53{letter-spacing:3.733333pt;}
.ls2{letter-spacing:4.096000pt;}
.ls60{letter-spacing:4.224000pt;}
.ls32{letter-spacing:5.568000pt;}
.ls1f{letter-spacing:5.600000pt;}
.ls51{letter-spacing:5.866667pt;}
.ls19{letter-spacing:6.133333pt;}
.ls18{letter-spacing:6.400000pt;}
.ls1d{letter-spacing:6.848000pt;}
.ls35{letter-spacing:6.933333pt;}
.ls27{letter-spacing:7.104000pt;}
.ls15{letter-spacing:7.360000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls5f{letter-spacing:7.520000pt;}
.ls14{letter-spacing:7.552000pt;}
.ls2f{letter-spacing:7.616000pt;}
.ls21{letter-spacing:7.680000pt;}
.ls45{letter-spacing:7.808000pt;}
.ls38{letter-spacing:7.833600pt;}
.ls31{letter-spacing:7.872000pt;}
.ls2d{letter-spacing:7.936000pt;}
.ls44{letter-spacing:8.000000pt;}
.ls39{letter-spacing:8.192000pt;}
.ls49{letter-spacing:8.256000pt;}
.ls3b{letter-spacing:8.320000pt;}
.ls2e{letter-spacing:8.640000pt;}
.ls3d{letter-spacing:9.024000pt;}
.ls1e{letter-spacing:9.152000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls41{letter-spacing:12.736000pt;}
.ls3a{letter-spacing:14.361600pt;}
.ls43{letter-spacing:15.808000pt;}
.ls48{letter-spacing:16.032000pt;}
.ls30{letter-spacing:16.256000pt;}
.ls40{letter-spacing:16.659200pt;}
.ls3f{letter-spacing:16.838400pt;}
.ls3c{letter-spacing:16.896000pt;}
.ls2c{letter-spacing:17.024000pt;}
.ws43{word-spacing:-64.000000pt;}
.ws17{word-spacing:-63.680000pt;}
.ws1{word-spacing:-59.147552pt;}
.ws3f{word-spacing:-25.856000pt;}
.ws40{word-spacing:-25.664000pt;}
.ws4f{word-spacing:-24.832000pt;}
.ws4e{word-spacing:-24.128000pt;}
.ws57{word-spacing:-24.064000pt;}
.ws4d{word-spacing:-24.000000pt;}
.ws54{word-spacing:-23.808000pt;}
.ws3c{word-spacing:-23.744000pt;}
.ws55{word-spacing:-23.616000pt;}
.ws3d{word-spacing:-23.488000pt;}
.ws3e{word-spacing:-23.424000pt;}
.ws79{word-spacing:-22.506667pt;}
.ws25{word-spacing:-19.573333pt;}
.ws22{word-spacing:-18.176000pt;}
.ws38{word-spacing:-17.984000pt;}
.ws42{word-spacing:-17.920000pt;}
.ws63{word-spacing:-17.792000pt;}
.ws60{word-spacing:-17.600000pt;}
.ws50{word-spacing:-17.152000pt;}
.ws5b{word-spacing:-16.896000pt;}
.ws56{word-spacing:-16.768000pt;}
.ws6c{word-spacing:-16.576000pt;}
.ws4c{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.448000pt;}
.ws53{word-spacing:-16.384000pt;}
.ws41{word-spacing:-16.320000pt;}
.ws6e{word-spacing:-16.256000pt;}
.ws62{word-spacing:-16.192000pt;}
.ws58{word-spacing:-16.128000pt;}
.ws65{word-spacing:-16.064000pt;}
.ws31{word-spacing:-16.000000pt;}
.ws5c{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws30{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.680000pt;}
.ws5a{word-spacing:-15.552000pt;}
.ws21{word-spacing:-15.488000pt;}
.ws61{word-spacing:-15.424000pt;}
.ws64{word-spacing:-15.360000pt;}
.ws36{word-spacing:-15.296000pt;}
.ws37{word-spacing:-15.232000pt;}
.ws1f{word-spacing:-15.168000pt;}
.ws26{word-spacing:-14.986667pt;}
.ws20{word-spacing:-14.976000pt;}
.ws6d{word-spacing:-14.912000pt;}
.ws68{word-spacing:-14.720000pt;}
.ws24{word-spacing:-13.173333pt;}
.ws47{word-spacing:-12.906667pt;}
.ws67{word-spacing:-12.640000pt;}
.ws16{word-spacing:-12.588800pt;}
.ws7a{word-spacing:-11.989333pt;}
.ws49{word-spacing:-10.538667pt;}
.ws27{word-spacing:-10.490667pt;}
.ws2b{word-spacing:-9.152000pt;}
.ws32{word-spacing:-8.392533pt;}
.ws33{word-spacing:-7.680000pt;}
.ws45{word-spacing:-7.616000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws1e{word-spacing:-7.360000pt;}
.ws39{word-spacing:-7.104000pt;}
.ws4b{word-spacing:-6.933333pt;}
.ws2a{word-spacing:-6.848000pt;}
.ws2d{word-spacing:-6.400000pt;}
.ws2f{word-spacing:-6.133333pt;}
.ws6a{word-spacing:-5.866667pt;}
.ws2c{word-spacing:-5.600000pt;}
.ws46{word-spacing:-5.568000pt;}
.ws6b{word-spacing:-3.733333pt;}
.ws77{word-spacing:-1.472000pt;}
.ws52{word-spacing:-1.344000pt;}
.ws78{word-spacing:-1.280000pt;}
.ws5e{word-spacing:-1.216000pt;}
.ws5d{word-spacing:-1.088000pt;}
.ws59{word-spacing:-1.024000pt;}
.ws6f{word-spacing:-0.896000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws13{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.576000pt;}
.ws4a{word-spacing:-0.533333pt;}
.ws34{word-spacing:-0.512000pt;}
.ws35{word-spacing:-0.448000pt;}
.ws1b{word-spacing:-0.384000pt;}
.ws44{word-spacing:-0.320000pt;}
.ws7d{word-spacing:-0.266667pt;}
.ws23{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.128000pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws29{word-spacing:0.064000pt;}
.ws11{word-spacing:0.128000pt;}
.ws3b{word-spacing:0.192000pt;}
.wsd{word-spacing:0.256000pt;}
.ws2e{word-spacing:0.266667pt;}
.ws8{word-spacing:0.320000pt;}
.ws10{word-spacing:0.384000pt;}
.wsf{word-spacing:0.448000pt;}
.wsc{word-spacing:0.512000pt;}
.ws69{word-spacing:0.533333pt;}
.wsb{word-spacing:0.576000pt;}
.ws28{word-spacing:0.640000pt;}
.wse{word-spacing:0.704000pt;}
.ws72{word-spacing:0.896000pt;}
.ws1d{word-spacing:0.960000pt;}
.ws74{word-spacing:1.024000pt;}
.ws66{word-spacing:1.088000pt;}
.ws7b{word-spacing:1.280000pt;}
.ws5{word-spacing:1.600000pt;}
.ws7c{word-spacing:1.664000pt;}
.ws76{word-spacing:1.856000pt;}
.ws3a{word-spacing:2.080000pt;}
.ws51{word-spacing:2.496000pt;}
.ws6{word-spacing:2.944000pt;}
.ws19{word-spacing:3.200000pt;}
.ws3{word-spacing:3.733333pt;}
.ws75{word-spacing:3.840000pt;}
.ws70{word-spacing:5.568000pt;}
.ws71{word-spacing:5.888000pt;}
.ws73{word-spacing:6.528000pt;}
.ws5f{word-spacing:8.960000pt;}
.ws14{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._8{margin-left:-49.732949pt;}
._15{margin-left:-13.565867pt;}
._10{margin-left:-12.474667pt;}
._1a{margin-left:-9.344000pt;}
._f{margin-left:-8.199467pt;}
._d{margin-left:-6.554667pt;}
._1{margin-left:-5.301333pt;}
._19{margin-left:-4.378667pt;}
._5{margin-left:-3.456000pt;}
._9{margin-left:-2.208000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._e{width:2.581333pt;}
._6{width:3.477333pt;}
._7{width:4.433067pt;}
._11{width:5.383467pt;}
._a{width:6.306133pt;}
._4{width:7.626667pt;}
._b{width:9.030400pt;}
._c{width:10.003200pt;}
._16{width:11.050667pt;}
._17{width:12.330667pt;}
._14{width:13.250133pt;}
._18{width:23.511467pt;}
._12{width:28.129867pt;}
._13{width:40.071467pt;}
.fs8{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y8e{bottom:104.000000pt;}
.y232{bottom:104.000133pt;}
.y196{bottom:104.929867pt;}
.y1ee{bottom:106.000000pt;}
.y257{bottom:106.197467pt;}
.y210{bottom:106.615200pt;}
.y14a{bottom:106.942400pt;}
.yb6{bottom:107.097067pt;}
.y287{bottom:107.594800pt;}
.y42{bottom:107.740000pt;}
.y102{bottom:107.989467pt;}
.y1f{bottom:108.219200pt;}
.y172{bottom:117.333333pt;}
.y231{bottom:117.333467pt;}
.y256{bottom:119.797467pt;}
.y8d{bottom:121.073333pt;}
.y1ed{bottom:122.400000pt;}
.yb5{bottom:123.763733pt;}
.y286{bottom:123.994800pt;}
.y123{bottom:124.000000pt;}
.y195{bottom:125.457867pt;}
.y20f{bottom:127.015200pt;}
.y149{bottom:127.214400pt;}
.y101{bottom:127.989467pt;}
.y1e{bottom:128.347200pt;}
.y171{bottom:130.666667pt;}
.y255{bottom:133.397467pt;}
.y1d1{bottom:134.406667pt;}
.y230{bottom:134.406800pt;}
.y8c{bottom:137.333333pt;}
.y1ec{bottom:138.800000pt;}
.ydd{bottom:139.045600pt;}
.y285{bottom:140.394800pt;}
.yb4{bottom:140.430400pt;}
.y66{bottom:143.189467pt;}
.y122{bottom:144.000000pt;}
.y194{bottom:145.985867pt;}
.y254{bottom:146.997467pt;}
.y20e{bottom:147.415200pt;}
.y148{bottom:147.486400pt;}
.y100{bottom:147.989467pt;}
.y41{bottom:148.453333pt;}
.y1d{bottom:148.475200pt;}
.y8b{bottom:150.666667pt;}
.y1eb{bottom:155.200000pt;}
.ydc{bottom:155.445600pt;}
.y1b9{bottom:156.122800pt;}
.y284{bottom:156.794800pt;}
.yb3{bottom:157.097067pt;}
.y170{bottom:157.333333pt;}
.y65{bottom:160.256133pt;}
.y253{bottom:160.592000pt;}
.y8a{bottom:164.000000pt;}
.y193{bottom:166.513867pt;}
.y147{bottom:167.758400pt;}
.y20d{bottom:167.815200pt;}
.yff{bottom:167.989467pt;}
.y40{bottom:168.453333pt;}
.y1c{bottom:168.603200pt;}
.y22f{bottom:170.933333pt;}
.y1ea{bottom:171.600000pt;}
.ydb{bottom:171.845600pt;}
.y1d0{bottom:171.932533pt;}
.y1b8{bottom:172.522800pt;}
.y283{bottom:173.194800pt;}
.yb2{bottom:173.763733pt;}
.y252{bottom:174.192000pt;}
.y16f{bottom:174.406667pt;}
.y64{bottom:177.322800pt;}
.y89{bottom:181.073333pt;}
.y121{bottom:184.000000pt;}
.y192{bottom:187.041867pt;}
.y251{bottom:187.792000pt;}
.yfe{bottom:187.989467pt;}
.y1e9{bottom:188.000000pt;}
.y146{bottom:188.014400pt;}
.y20c{bottom:188.215200pt;}
.y3f{bottom:188.325333pt;}
.y1b{bottom:188.731200pt;}
.y1b7{bottom:188.922800pt;}
.y282{bottom:189.594800pt;}
.yb1{bottom:190.430400pt;}
.y22e{bottom:191.333333pt;}
.y1cf{bottom:191.804533pt;}
.y63{bottom:194.389467pt;}
.yda{bottom:195.810000pt;}
.y250{bottom:201.392000pt;}
.y120{bottom:204.000000pt;}
.y1e8{bottom:204.400000pt;}
.y1b6{bottom:205.322800pt;}
.y281{bottom:205.994800pt;}
.yb0{bottom:207.097067pt;}
.y191{bottom:207.569867pt;}
.yfd{bottom:207.989467pt;}
.y3e{bottom:208.197333pt;}
.y145{bottom:208.286400pt;}
.y20b{bottom:208.615200pt;}
.y1a{bottom:208.859200pt;}
.y16e{bottom:211.303200pt;}
.y62{bottom:211.456133pt;}
.y1ce{bottom:211.676533pt;}
.y22d{bottom:211.733333pt;}
.y88{bottom:213.763733pt;}
.y24f{bottom:214.992000pt;}
.yd9{bottom:215.538000pt;}
.y1e7{bottom:220.800000pt;}
.y1b5{bottom:221.722800pt;}
.y280{bottom:222.394800pt;}
.yaf{bottom:223.763733pt;}
.y11f{bottom:224.000000pt;}
.yfc{bottom:227.989467pt;}
.y3d{bottom:228.069333pt;}
.y190{bottom:228.097867pt;}
.y144{bottom:228.558400pt;}
.y24e{bottom:228.592000pt;}
.y19{bottom:228.987200pt;}
.y20a{bottom:229.015200pt;}
.y87{bottom:230.163733pt;}
.y16d{bottom:231.031200pt;}
.y1cd{bottom:231.527200pt;}
.y22c{bottom:232.133333pt;}
.y61{bottom:236.081867pt;}
.y1e6{bottom:237.200000pt;}
.y27f{bottom:238.794800pt;}
.yae{bottom:240.430400pt;}
.y24d{bottom:242.192000pt;}
.yd8{bottom:242.830400pt;}
.y11e{bottom:244.000000pt;}
.y1b4{bottom:245.767200pt;}
.y86{bottom:246.563733pt;}
.y3c{bottom:247.941333pt;}
.yfb{bottom:247.989467pt;}
.y18f{bottom:248.625867pt;}
.y143{bottom:248.819733pt;}
.y18{bottom:249.115200pt;}
.y209{bottom:249.415200pt;}
.y16c{bottom:250.759200pt;}
.y1cc{bottom:251.399200pt;}
.y22b{bottom:252.533333pt;}
.y1e5{bottom:253.600000pt;}
.y27e{bottom:255.194800pt;}
.y60{bottom:256.481867pt;}
.yad{bottom:257.097067pt;}
.yd7{bottom:259.230400pt;}
.y24c{bottom:261.466667pt;}
.y85{bottom:262.830400pt;}
.y11d{bottom:264.000000pt;}
.y1b3{bottom:265.495200pt;}
.y3b{bottom:267.813333pt;}
.yfa{bottom:267.989467pt;}
.y142{bottom:269.091733pt;}
.y18e{bottom:269.153867pt;}
.y17{bottom:269.243200pt;}
.y208{bottom:269.815200pt;}
.y1e4{bottom:270.000000pt;}
.y16b{bottom:270.487200pt;}
.y1cb{bottom:271.271200pt;}
.y27d{bottom:271.594800pt;}
.y22a{bottom:272.933333pt;}
.yac{bottom:273.763733pt;}
.yd6{bottom:275.630400pt;}
.y84{bottom:279.097067pt;}
.y11c{bottom:284.000000pt;}
.y5f{bottom:284.440933pt;}
.y1b2{bottom:285.223200pt;}
.y1e3{bottom:286.400000pt;}
.yf9{bottom:287.989467pt;}
.y27c{bottom:287.994800pt;}
.y141{bottom:289.358400pt;}
.y16{bottom:289.371200pt;}
.y18d{bottom:289.681867pt;}
.y16a{bottom:290.215200pt;}
.yab{bottom:290.430400pt;}
.y1ca{bottom:291.143200pt;}
.yd5{bottom:292.030400pt;}
.y229{bottom:293.333333pt;}
.y83{bottom:295.363733pt;}
.y5e{bottom:301.507600pt;}
.y24b{bottom:302.032000pt;}
.y1e2{bottom:302.800000pt;}
.y11b{bottom:304.000000pt;}
.y27b{bottom:304.394800pt;}
.y1b1{bottom:304.951200pt;}
.yaa{bottom:307.097067pt;}
.y3a{bottom:307.541333pt;}
.yd4{bottom:308.430400pt;}
.y15{bottom:309.499200pt;}
.y140{bottom:309.630400pt;}
.y207{bottom:310.615200pt;}
.y1c9{bottom:311.015200pt;}
.y82{bottom:311.630400pt;}
.y228{bottom:313.733333pt;}
.yf8{bottom:315.548533pt;}
.y169{bottom:317.507600pt;}
.y18c{bottom:317.774267pt;}
.y5d{bottom:318.574267pt;}
.y1e1{bottom:319.200000pt;}
.y24a{bottom:322.032000pt;}
.ya9{bottom:323.763733pt;}
.y11a{bottom:324.000000pt;}
.y1b0{bottom:324.679200pt;}
.yd3{bottom:324.830400pt;}
.y27a{bottom:326.464000pt;}
.y39{bottom:327.413333pt;}
.y81{bottom:327.897067pt;}
.y14{bottom:329.627200pt;}
.y206{bottom:331.015200pt;}
.yf7{bottom:332.215200pt;}
.y168{bottom:334.040933pt;}
.y227{bottom:334.133333pt;}
.y18b{bottom:334.974267pt;}
.y1e0{bottom:335.600000pt;}
.y5c{bottom:335.640933pt;}
.y13f{bottom:337.456133pt;}
.y1c8{bottom:338.440933pt;}
.ya8{bottom:340.430400pt;}
.yd2{bottom:341.230400pt;}
.y249{bottom:342.032000pt;}
.y119{bottom:344.000000pt;}
.y80{bottom:344.163733pt;}
.y1af{bottom:344.407200pt;}
.y38{bottom:347.285333pt;}
.yf6{bottom:348.881867pt;}
.y13{bottom:349.755200pt;}
.y167{bottom:350.574267pt;}
.y205{bottom:351.415200pt;}
.y1df{bottom:352.000000pt;}
.y18a{bottom:352.174267pt;}
.y5b{bottom:352.707600pt;}
.y13e{bottom:354.389467pt;}
.y226{bottom:354.533333pt;}
.y1c7{bottom:354.974267pt;}
.ya7{bottom:357.097067pt;}
.y7f{bottom:360.430400pt;}
.y248{bottom:362.032000pt;}
.y118{bottom:364.000000pt;}
.y1ae{bottom:364.135200pt;}
.yd1{bottom:365.194800pt;}
.yf5{bottom:365.548533pt;}
.y279{bottom:365.930667pt;}
.y166{bottom:367.107600pt;}
.y37{bottom:367.157333pt;}
.y1de{bottom:368.400000pt;}
.y189{bottom:369.374267pt;}
.y5a{bottom:369.774267pt;}
.y12{bottom:369.883200pt;}
.y13d{bottom:371.322800pt;}
.y1c6{bottom:371.507600pt;}
.y204{bottom:371.815200pt;}
.ya6{bottom:373.763733pt;}
.y225{bottom:374.933333pt;}
.y7e{bottom:376.697067pt;}
.y278{bottom:378.997333pt;}
.y247{bottom:382.032000pt;}
.yf4{bottom:382.215200pt;}
.y165{bottom:383.640933pt;}
.y1ad{bottom:383.863200pt;}
.y117{bottom:384.000000pt;}
.y1dd{bottom:384.800000pt;}
.yd0{bottom:384.922800pt;}
.y188{bottom:386.574267pt;}
.y59{bottom:386.840933pt;}
.y36{bottom:387.029333pt;}
.y1c5{bottom:388.040933pt;}
.y13c{bottom:388.256133pt;}
.y11{bottom:390.011200pt;}
.ya5{bottom:390.430400pt;}
.y277{bottom:392.064000pt;}
.y224{bottom:395.333333pt;}
.yf3{bottom:398.881867pt;}
.y203{bottom:399.774267pt;}
.y164{bottom:400.174267pt;}
.y7d{bottom:400.522800pt;}
.y1dc{bottom:401.200000pt;}
.y246{bottom:402.032000pt;}
.y1ac{bottom:403.591200pt;}
.y187{bottom:403.774267pt;}
.y58{bottom:403.907600pt;}
.y116{bottom:404.000000pt;}
.y1c4{bottom:404.574267pt;}
.y276{bottom:405.130667pt;}
.y13b{bottom:405.189467pt;}
.y35{bottom:406.901333pt;}
.y10{bottom:410.139200pt;}
.ycf{bottom:412.215200pt;}
.ya4{bottom:414.656133pt;}
.yf2{bottom:415.548533pt;}
.y223{bottom:415.733333pt;}
.y163{bottom:416.707600pt;}
.y1db{bottom:417.600000pt;}
.y275{bottom:418.197333pt;}
.y7c{bottom:420.122800pt;}
.y57{bottom:420.974267pt;}
.y1c3{bottom:421.107600pt;}
.y245{bottom:422.032000pt;}
.y13a{bottom:422.122800pt;}
.y1ab{bottom:423.319200pt;}
.y115{bottom:424.000000pt;}
.y34{bottom:426.773333pt;}
.yce{bottom:428.615200pt;}
.yf{bottom:430.267200pt;}
.y274{bottom:431.264000pt;}
.yf1{bottom:432.215200pt;}
.y162{bottom:433.240933pt;}
.y202{bottom:433.640933pt;}
.y1da{bottom:434.000000pt;}
.ya3{bottom:434.656133pt;}
.y222{bottom:436.133333pt;}
.y1c2{bottom:437.640933pt;}
.y56{bottom:438.040933pt;}
.y186{bottom:438.174267pt;}
.y139{bottom:439.056133pt;}
.y7b{bottom:439.722800pt;}
.y244{bottom:442.032000pt;}
.y1aa{bottom:443.047200pt;}
.y114{bottom:444.000000pt;}
.y273{bottom:444.330667pt;}
.ycd{bottom:445.015200pt;}
.y33{bottom:446.645333pt;}
.yf0{bottom:448.881867pt;}
.y161{bottom:449.774267pt;}
.ye{bottom:450.395200pt;}
.y1d9{bottom:450.400000pt;}
.y201{bottom:450.574267pt;}
.y1c1{bottom:454.174267pt;}
.ya2{bottom:454.656133pt;}
.y55{bottom:455.107600pt;}
.y185{bottom:455.374267pt;}
.y221{bottom:456.533333pt;}
.y272{bottom:457.397333pt;}
.y7a{bottom:459.322800pt;}
.ycc{bottom:461.415200pt;}
.y243{bottom:462.032000pt;}
.y1a9{bottom:462.775200pt;}
.y138{bottom:463.548533pt;}
.y113{bottom:464.000000pt;}
.yef{bottom:465.548533pt;}
.y160{bottom:466.307600pt;}
.y32{bottom:466.517333pt;}
.y1d8{bottom:466.800000pt;}
.y200{bottom:467.507600pt;}
.y271{bottom:470.464000pt;}
.yd{bottom:470.523200pt;}
.y1c0{bottom:470.707600pt;}
.y54{bottom:472.174267pt;}
.y184{bottom:472.574267pt;}
.ya1{bottom:474.656133pt;}
.y220{bottom:476.933333pt;}
.ycb{bottom:477.815200pt;}
.y79{bottom:478.922800pt;}
.y242{bottom:482.032000pt;}
.yee{bottom:482.215200pt;}
.y1a8{bottom:482.503200pt;}
.y15f{bottom:482.840933pt;}
.y1d7{bottom:483.200000pt;}
.y270{bottom:483.530667pt;}
.y112{bottom:484.000000pt;}
.y1ff{bottom:484.440933pt;}
.y31{bottom:486.389333pt;}
.y1bf{bottom:487.240933pt;}
.y53{bottom:489.240933pt;}
.y183{bottom:489.774267pt;}
.yc{bottom:490.651200pt;}
.y137{bottom:491.107600pt;}
.yca{bottom:494.215200pt;}
.ya0{bottom:494.656133pt;}
.y26f{bottom:496.597333pt;}
.y21f{bottom:497.333333pt;}
.yed{bottom:498.881867pt;}
.y15e{bottom:499.374267pt;}
.y1d6{bottom:499.600000pt;}
.y1fe{bottom:501.374267pt;}
.y241{bottom:502.032000pt;}
.y1a7{bottom:502.231200pt;}
.y1be{bottom:503.774267pt;}
.y111{bottom:504.000000pt;}
.y78{bottom:506.081867pt;}
.y30{bottom:506.261333pt;}
.y52{bottom:506.307600pt;}
.y182{bottom:506.974267pt;}
.y136{bottom:508.040933pt;}
.y26e{bottom:509.664000pt;}
.yc9{bottom:510.615200pt;}
.yb{bottom:510.779200pt;}
.y299{bottom:514.533333pt;}
.y9f{bottom:514.656133pt;}
.y15d{bottom:515.907600pt;}
.y1d5{bottom:516.000000pt;}
.y21e{bottom:517.733333pt;}
.y1fd{bottom:518.307600pt;}
.y1bd{bottom:520.307600pt;}
.y1a6{bottom:521.959200pt;}
.y240{bottom:522.032000pt;}
.y77{bottom:522.348533pt;}
.y26d{bottom:522.730667pt;}
.yec{bottom:523.107600pt;}
.y51{bottom:523.374267pt;}
.y110{bottom:524.000000pt;}
.y181{bottom:524.174267pt;}
.y135{bottom:524.974267pt;}
.y2f{bottom:526.053333pt;}
.ya{bottom:530.907200pt;}
.y298{bottom:531.200000pt;}
.y1d4{bottom:532.400000pt;}
.y15c{bottom:532.440933pt;}
.yc8{bottom:534.579600pt;}
.y9e{bottom:534.656133pt;}
.y1fc{bottom:535.240933pt;}
.y26c{bottom:535.797333pt;}
.y21d{bottom:538.133333pt;}
.y76{bottom:538.615200pt;}
.y50{bottom:540.440933pt;}
.y180{bottom:541.374267pt;}
.y1a5{bottom:541.687200pt;}
.y134{bottom:541.907600pt;}
.y23f{bottom:542.032000pt;}
.yeb{bottom:543.107600pt;}
.y10f{bottom:544.000000pt;}
.y1bc{bottom:544.384000pt;}
.y8{bottom:544.496533pt;}
.y2e{bottom:545.925333pt;}
.y297{bottom:547.866667pt;}
.y1d3{bottom:548.800000pt;}
.y26b{bottom:548.864000pt;}
.y15b{bottom:548.974267pt;}
.y9{bottom:551.035200pt;}
.y1fb{bottom:552.174267pt;}
.yc7{bottom:554.307600pt;}
.y75{bottom:554.881867pt;}
.y4f{bottom:557.507600pt;}
.y21c{bottom:558.533333pt;}
.y17f{bottom:558.574267pt;}
.y133{bottom:558.840933pt;}
.y1a4{bottom:561.415200pt;}
.y26a{bottom:561.930667pt;}
.y23e{bottom:562.032000pt;}
.y9d{bottom:562.215200pt;}
.yea{bottom:563.107600pt;}
.y10e{bottom:564.000000pt;}
.y1bb{bottom:564.256000pt;}
.y296{bottom:564.533333pt;}
.y1d2{bottom:565.200000pt;}
.y15a{bottom:565.507600pt;}
.y2d{bottom:565.797333pt;}
.y1fa{bottom:569.107600pt;}
.y74{bottom:571.148533pt;}
.y4e{bottom:574.574267pt;}
.y269{bottom:574.997333pt;}
.y132{bottom:575.774267pt;}
.y9c{bottom:578.881867pt;}
.y21b{bottom:578.933333pt;}
.yc6{bottom:581.600000pt;}
.y159{bottom:582.040933pt;}
.y23d{bottom:582.160000pt;}
.ye9{bottom:583.107600pt;}
.y10d{bottom:584.000000pt;}
.y1ba{bottom:584.128000pt;}
.y2c{bottom:585.669333pt;}
.y1f9{bottom:586.040933pt;}
.y73{bottom:587.415200pt;}
.y268{bottom:588.064000pt;}
.y1a3{bottom:588.707600pt;}
.y295{bottom:591.200000pt;}
.y131{bottom:592.707600pt;}
.y17e{bottom:592.974267pt;}
.y9b{bottom:595.548533pt;}
.yc5{bottom:598.000000pt;}
.y158{bottom:598.574267pt;}
.y4d{bottom:599.200000pt;}
.y21a{bottom:599.333333pt;}
.y267{bottom:601.130667pt;}
.y23c{bottom:602.288000pt;}
.y1f8{bottom:602.974267pt;}
.ye8{bottom:603.107600pt;}
.y10c{bottom:604.000000pt;}
.y1a2{bottom:604.974267pt;}
.y2b{bottom:605.541333pt;}
.y130{bottom:609.640933pt;}
.y17d{bottom:610.174267pt;}
.y72{bottom:611.240933pt;}
.y9a{bottom:612.215200pt;}
.y266{bottom:614.197333pt;}
.yc4{bottom:614.400000pt;}
.y157{bottom:615.107600pt;}
.y4c{bottom:619.600000pt;}
.y1f7{bottom:619.907600pt;}
.y1a1{bottom:621.240933pt;}
.y23b{bottom:622.416000pt;}
.ye7{bottom:623.107600pt;}
.y10b{bottom:624.000000pt;}
.y2a{bottom:625.413333pt;}
.y12f{bottom:626.574267pt;}
.y265{bottom:627.264000pt;}
.y17c{bottom:627.374267pt;}
.y294{bottom:627.866667pt;}
.y99{bottom:628.881867pt;}
.y7{bottom:630.194267pt;}
.yc3{bottom:630.800000pt;}
.y71{bottom:630.840933pt;}
.y156{bottom:631.640933pt;}
.y1f6{bottom:636.840933pt;}
.y1a0{bottom:637.507600pt;}
.y4b{bottom:640.000000pt;}
.y219{bottom:640.133333pt;}
.y264{bottom:640.330667pt;}
.y23a{bottom:642.544000pt;}
.ye6{bottom:643.107600pt;}
.y12e{bottom:643.507600pt;}
.y10a{bottom:644.000000pt;}
.y293{bottom:644.533333pt;}
.y17b{bottom:644.574267pt;}
.y29{bottom:645.285333pt;}
.y98{bottom:645.548533pt;}
.y6{bottom:646.860933pt;}
.yc2{bottom:647.200000pt;}
.y155{bottom:648.174267pt;}
.y70{bottom:650.440933pt;}
.y263{bottom:653.397333pt;}
.y19f{bottom:653.774267pt;}
.y12d{bottom:660.440933pt;}
.y218{bottom:660.533333pt;}
.y292{bottom:661.200000pt;}
.y17a{bottom:661.774267pt;}
.y97{bottom:662.215200pt;}
.y239{bottom:662.672000pt;}
.ye5{bottom:663.107600pt;}
.yc1{bottom:663.600000pt;}
.y109{bottom:664.000000pt;}
.y154{bottom:664.707600pt;}
.y28{bottom:665.157333pt;}
.y262{bottom:666.464000pt;}
.y6f{bottom:670.040933pt;}
.y1f5{bottom:670.707600pt;}
.y12c{bottom:677.374267pt;}
.y291{bottom:677.866667pt;}
.y96{bottom:678.881867pt;}
.y179{bottom:678.974267pt;}
.y261{bottom:679.530667pt;}
.yc0{bottom:680.000000pt;}
.y4a{bottom:680.800000pt;}
.y217{bottom:680.933333pt;}
.y153{bottom:681.240933pt;}
.y238{bottom:682.800000pt;}
.ye4{bottom:683.107600pt;}
.y108{bottom:684.000000pt;}
.y5{bottom:684.314933pt;}
.y27{bottom:685.029333pt;}
.y19e{bottom:686.307600pt;}
.y1f4{bottom:687.640933pt;}
.y6e{bottom:689.640933pt;}
.y260{bottom:692.597333pt;}
.y12b{bottom:694.307600pt;}
.y290{bottom:694.533333pt;}
.y178{bottom:696.174267pt;}
.ybf{bottom:696.400000pt;}
.y152{bottom:697.774267pt;}
.y49{bottom:701.200000pt;}
.y216{bottom:701.333333pt;}
.y19d{bottom:702.574267pt;}
.y237{bottom:702.928000pt;}
.y95{bottom:703.107600pt;}
.y107{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.y1f3{bottom:704.574267pt;}
.y26{bottom:704.901333pt;}
.y25f{bottom:705.664000pt;}
.y6d{bottom:709.240933pt;}
.ye3{bottom:710.666667pt;}
.y28f{bottom:711.200000pt;}
.y12a{bottom:711.240933pt;}
.ybe{bottom:712.800000pt;}
.y151{bottom:714.307600pt;}
.y25e{bottom:718.730667pt;}
.y177{bottom:720.960000pt;}
.y1f2{bottom:721.507600pt;}
.y48{bottom:721.600000pt;}
.y215{bottom:721.733333pt;}
.y236{bottom:723.056000pt;}
.y94{bottom:723.107600pt;}
.y106{bottom:724.000000pt;}
.y25{bottom:724.773333pt;}
.y19c{bottom:726.400000pt;}
.ye2{bottom:727.333333pt;}
.y28e{bottom:727.866667pt;}
.y129{bottom:728.174267pt;}
.y6c{bottom:728.840933pt;}
.ybd{bottom:729.200000pt;}
.y150{bottom:730.840933pt;}
.y25d{bottom:731.813333pt;}
.y1f1{bottom:738.440933pt;}
.y176{bottom:741.488000pt;}
.y47{bottom:742.000000pt;}
.y214{bottom:742.133333pt;}
.y93{bottom:743.107600pt;}
.y235{bottom:743.184000pt;}
.ye1{bottom:744.000000pt;}
.y28d{bottom:744.533333pt;}
.y24{bottom:744.645333pt;}
.y128{bottom:745.107600pt;}
.ybc{bottom:745.600000pt;}
.y19b{bottom:746.000000pt;}
.y14f{bottom:747.374267pt;}
.y6b{bottom:748.440933pt;}
.y25c{bottom:750.544000pt;}
.ye0{bottom:760.666667pt;}
.y28c{bottom:761.200000pt;}
.ybb{bottom:762.000000pt;}
.y175{bottom:762.016000pt;}
.y127{bottom:762.040933pt;}
.y46{bottom:762.400000pt;}
.y213{bottom:762.533333pt;}
.y1f0{bottom:762.917333pt;}
.y92{bottom:763.107600pt;}
.y234{bottom:763.456000pt;}
.y14e{bottom:763.907600pt;}
.y3{bottom:764.000000pt;}
.y23{bottom:764.517333pt;}
.y19a{bottom:765.600000pt;}
.y6a{bottom:768.040933pt;}
.ydf{bottom:777.333333pt;}
.y28b{bottom:777.866667pt;}
.yba{bottom:778.400000pt;}
.y126{bottom:778.974267pt;}
.y14d{bottom:780.440933pt;}
.y174{bottom:782.544000pt;}
.y45{bottom:782.800000pt;}
.y212{bottom:782.933333pt;}
.y91{bottom:783.107600pt;}
.y1ef{bottom:783.189333pt;}
.y233{bottom:783.728000pt;}
.y105{bottom:784.000000pt;}
.y22{bottom:784.389333pt;}
.y199{bottom:785.200000pt;}
.y25b{bottom:790.138667pt;}
.y2{bottom:790.666667pt;}
.yde{bottom:794.000000pt;}
.y28a{bottom:794.400000pt;}
.yb9{bottom:794.800000pt;}
.y69{bottom:795.200000pt;}
.y173{bottom:803.072000pt;}
.y44{bottom:803.200000pt;}
.y211{bottom:803.333333pt;}
.y125{bottom:803.461333pt;}
.y25a{bottom:803.610667pt;}
.y104{bottom:804.000000pt;}
.y21{bottom:804.261333pt;}
.y14c{bottom:804.538667pt;}
.y198{bottom:804.800000pt;}
.y90{bottom:810.666667pt;}
.y289{bottom:810.933333pt;}
.yb8{bottom:811.200000pt;}
.y68{bottom:811.466667pt;}
.y259{bottom:817.072000pt;}
.y43{bottom:823.600000pt;}
.y124{bottom:823.733333pt;}
.y103{bottom:824.000000pt;}
.y20{bottom:824.133333pt;}
.y14b{bottom:824.266667pt;}
.y197{bottom:824.400000pt;}
.y8f{bottom:827.333333pt;}
.y288{bottom:827.466667pt;}
.yb7{bottom:827.600000pt;}
.y67{bottom:827.733333pt;}
.y258{bottom:830.533333pt;}
.h8{height:26.945443pt;}
.h12{height:34.730667pt;}
.h1{height:35.546875pt;}
.hb{height:36.229167pt;}
.h13{height:36.251033pt;}
.h3{height:37.333333pt;}
.h5{height:45.286458pt;}
.h11{height:49.300521pt;}
.h4{height:54.343750pt;}
.hc{height:54.365083pt;}
.hd{height:54.386417pt;}
.he{height:54.407750pt;}
.hf{height:54.429083pt;}
.h10{height:59.075292pt;}
.h9{height:59.160625pt;}
.ha{height:59.161158pt;}
.h7{height:59.480625pt;}
.h2{height:90.572917pt;}
.h6{height:263.715200pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x6{left:73.216000pt;}
.x9{left:86.456667pt;}
.x2{left:100.000000pt;}
.x4{left:113.224267pt;}
.x3{left:121.096267pt;}
.x7{left:126.456667pt;}
.x8{left:139.696667pt;}
.xa{left:160.466667pt;}
.x1{left:556.250000pt;}
}




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