
    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_ac8bd6df46ee75a81067de56.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_908e44095760181f0ac084e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_df4bfc7d7ffc9de49524109a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.759870;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_ac8725c4282c97ca023bc95f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_c01e218890aa2ae8eea6c8ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_e9ea9630b7c8bc2ad2af97df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_0f06e49e68664724d1f671ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_57a0110121212100e36962ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_cf3f1269347c7d108e717f41.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_ee6e39757c75e8dd1ce9b37e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964860;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_1d735e8342f985e4f384ba44.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_83a405e42986268728d8ae39.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.026855;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_7d23ebbd427ab44124518001.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.731533;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_8960e2ed2dc9d1d3f29a316b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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_a348cbf590953662ca0c4e9b.woff2')format("woff");}.fff{font-family:fff;line-height:0.929688;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_8e5a15bff223e8f4947e2826.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.770020;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-15.984000px;}
.v7{vertical-align:-1.680000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.680600px;}
.v4{vertical-align:15.984000px;}
.v3{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:30.000000px;}
.ls27{letter-spacing:-3.960000px;}
.ls2d{letter-spacing:-3.360000px;}
.ls26{letter-spacing:-3.000000px;}
.ls1d{letter-spacing:-2.880000px;}
.ls3{letter-spacing:-1.326000px;}
.lsa{letter-spacing:-1.320000px;}
.ls2a{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-0.960000px;}
.ls6{letter-spacing:-0.918000px;}
.ls23{letter-spacing:-0.840000px;}
.lsc{letter-spacing:-0.769560px;}
.ls14{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.691200px;}
.ls7{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.629640px;}
.ls2e{letter-spacing:-0.624000px;}
.lsd{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.486000px;}
.ls21{letter-spacing:-0.454740px;}
.ls2b{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.314820px;}
.ls30{letter-spacing:-0.283338px;}
.lsf{letter-spacing:-0.251856px;}
.ls20{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.139920px;}
.ls16{letter-spacing:-0.120000px;}
.ls25{letter-spacing:-0.104940px;}
.ls17{letter-spacing:-0.069960px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.002400px;}
.ls29{letter-spacing:0.005400px;}
.ls28{letter-spacing:0.009000px;}
.ls0{letter-spacing:0.012000px;}
.ls1a{letter-spacing:0.020400px;}
.ls15{letter-spacing:0.021000px;}
.ls1{letter-spacing:0.025800px;}
.ls1e{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.279840px;}
.ls19{letter-spacing:0.472200px;}
.ls1b{letter-spacing:0.472800px;}
.ls18{letter-spacing:0.480000px;}
.lsb{letter-spacing:2.119800px;}
.ls8{letter-spacing:12.193200px;}
.ls9{letter-spacing:12.494400px;}
.lse{letter-spacing:242.769456px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-23.868000px;}
.ws7{word-spacing:-17.928000px;}
.ws106{word-spacing:-17.784000px;}
.ws11f{word-spacing:-16.434000px;}
.wsf7{word-spacing:-16.302000px;}
.wsb6{word-spacing:-15.420000px;}
.wsca{word-spacing:-15.360000px;}
.wsb7{word-spacing:-15.180000px;}
.ws5{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.880000px;}
.ws3e{word-spacing:-14.820000px;}
.ws8{word-spacing:-14.700000px;}
.ws105{word-spacing:-14.520000px;}
.ws25{word-spacing:-14.280000px;}
.ws107{word-spacing:-13.620000px;}
.ws59{word-spacing:-13.560000px;}
.ws57{word-spacing:-13.446000px;}
.ws129{word-spacing:-13.392000px;}
.ws40{word-spacing:-13.380000px;}
.ws6{word-spacing:-13.230000px;}
.ws108{word-spacing:-12.798000px;}
.wsf6{word-spacing:-12.342000px;}
.wsd{word-spacing:-12.150000px;}
.ws68{word-spacing:-11.904000px;}
.ws9{word-spacing:-11.772000px;}
.ws109{word-spacing:-11.760000px;}
.wsb{word-spacing:-11.232000px;}
.ws3{word-spacing:-10.896000px;}
.wsa{word-spacing:-10.854000px;}
.ws23{word-spacing:-10.800000px;}
.wse{word-spacing:-10.464000px;}
.ws2{word-spacing:-9.542544px;}
.ws4{word-spacing:-9.417600px;}
.wscb{word-spacing:-8.976000px;}
.wsc9{word-spacing:-8.954880px;}
.ws3f{word-spacing:-8.675040px;}
.wsac{word-spacing:-8.605080px;}
.wsf1{word-spacing:-8.570100px;}
.wsf0{word-spacing:-8.535120px;}
.ws10e{word-spacing:-8.400000px;}
.ws75{word-spacing:-8.360220px;}
.wseb{word-spacing:-8.220300px;}
.ws74{word-spacing:-8.045400px;}
.ws58{word-spacing:-7.905480px;}
.ws61{word-spacing:-7.807536px;}
.ws137{word-spacing:-7.524198px;}
.ws65{word-spacing:-6.940032px;}
.ws123{word-spacing:-3.840000px;}
.wsae{word-spacing:-3.300000px;}
.wsd6{word-spacing:-3.000000px;}
.ws7a{word-spacing:-2.820000px;}
.ws100{word-spacing:-2.760000px;}
.ws56{word-spacing:-2.640000px;}
.ws101{word-spacing:-2.520000px;}
.ws102{word-spacing:-2.460000px;}
.wsec{word-spacing:-2.400000px;}
.ws125{word-spacing:-2.340000px;}
.ws3a{word-spacing:-2.280000px;}
.wsea{word-spacing:-2.268000px;}
.wsf8{word-spacing:-2.220000px;}
.ws2d{word-spacing:-2.160000px;}
.ws116{word-spacing:-2.088000px;}
.ws13{word-spacing:-2.052000px;}
.ws2b{word-spacing:-1.980000px;}
.ws11e{word-spacing:-1.944000px;}
.ws87{word-spacing:-1.836000px;}
.wsc6{word-spacing:-1.800000px;}
.ws9b{word-spacing:-1.740000px;}
.ws138{word-spacing:-1.674000px;}
.ws115{word-spacing:-1.620000px;}
.ws12f{word-spacing:-1.512000px;}
.ws12a{word-spacing:-1.458000px;}
.ws114{word-spacing:-1.440000px;}
.ws9d{word-spacing:-1.320000px;}
.ws46{word-spacing:-1.260000px;}
.wsad{word-spacing:-1.188000px;}
.ws128{word-spacing:-1.140000px;}
.ws7b{word-spacing:-1.080000px;}
.ws1b{word-spacing:-1.026000px;}
.ws2e{word-spacing:-0.960000px;}
.wsef{word-spacing:-0.918000px;}
.ws27{word-spacing:-0.912000px;}
.wsb0{word-spacing:-0.900000px;}
.ws97{word-spacing:-0.840000px;}
.ws9f{word-spacing:-0.810000px;}
.wsf2{word-spacing:-0.780000px;}
.ws9e{word-spacing:-0.756000px;}
.ws3b{word-spacing:-0.720000px;}
.ws7d{word-spacing:-0.660000px;}
.ws119{word-spacing:-0.600000px;}
.wsdd{word-spacing:-0.594000px;}
.ws41{word-spacing:-0.540000px;}
.wsc7{word-spacing:-0.480000px;}
.wsdc{word-spacing:-0.420000px;}
.ws32{word-spacing:-0.300000px;}
.wse8{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.wsb1{word-spacing:-0.180000px;}
.ws79{word-spacing:-0.120000px;}
.wsc{word-spacing:-0.054000px;}
.ws24{word-spacing:-0.048000px;}
.wsf{word-spacing:0.000000px;}
.wsfa{word-spacing:0.060000px;}
.ws95{word-spacing:0.108000px;}
.wsb3{word-spacing:0.120000px;}
.ws135{word-spacing:0.162000px;}
.wsc2{word-spacing:0.180000px;}
.ws99{word-spacing:0.240000px;}
.ws50{word-spacing:0.300000px;}
.ws130{word-spacing:0.324000px;}
.wse7{word-spacing:0.360000px;}
.ws16{word-spacing:0.378000px;}
.ws91{word-spacing:0.420000px;}
.ws11d{word-spacing:0.432000px;}
.ws2f{word-spacing:0.480000px;}
.ws5f{word-spacing:0.540000px;}
.ws17{word-spacing:0.594000px;}
.ws8d{word-spacing:0.600000px;}
.ws76{word-spacing:0.648000px;}
.ws39{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.wsa0{word-spacing:0.720000px;}
.ws55{word-spacing:0.780000px;}
.wsb4{word-spacing:0.840000px;}
.wsc3{word-spacing:0.900000px;}
.ws22{word-spacing:0.918000px;}
.ws52{word-spacing:0.960000px;}
.ws5c{word-spacing:1.020000px;}
.ws11c{word-spacing:1.080000px;}
.ws11a{word-spacing:1.140000px;}
.ws104{word-spacing:1.200000px;}
.ws80{word-spacing:1.260000px;}
.ws134{word-spacing:1.296000px;}
.ws5e{word-spacing:1.320000px;}
.ws78{word-spacing:1.380000px;}
.ws131{word-spacing:1.404000px;}
.ws4e{word-spacing:1.500000px;}
.ws77{word-spacing:1.512000px;}
.wsc8{word-spacing:1.620000px;}
.ws1c{word-spacing:1.728000px;}
.ws121{word-spacing:1.740000px;}
.ws60{word-spacing:1.800000px;}
.ws12c{word-spacing:1.836000px;}
.ws9c{word-spacing:1.920000px;}
.wsee{word-spacing:1.980000px;}
.ws13a{word-spacing:1.998000px;}
.ws8b{word-spacing:2.040000px;}
.ws124{word-spacing:2.100000px;}
.ws5a{word-spacing:2.106000px;}
.ws5b{word-spacing:2.160000px;}
.ws30{word-spacing:2.220000px;}
.ws126{word-spacing:2.280000px;}
.ws2a{word-spacing:2.340000px;}
.ws1e{word-spacing:2.400000px;}
.ws136{word-spacing:2.484000px;}
.ws4a{word-spacing:2.580000px;}
.ws45{word-spacing:2.760000px;}
.ws98{word-spacing:2.820000px;}
.ws38{word-spacing:3.000000px;}
.ws3c{word-spacing:3.060000px;}
.wsf9{word-spacing:3.180000px;}
.ws19{word-spacing:3.240000px;}
.ws18{word-spacing:3.294000px;}
.ws48{word-spacing:3.300000px;}
.ws7e{word-spacing:3.360000px;}
.wsda{word-spacing:3.420000px;}
.wsf5{word-spacing:3.480000px;}
.ws12{word-spacing:3.510000px;}
.wsaf{word-spacing:3.600000px;}
.ws118{word-spacing:3.720000px;}
.ws1a{word-spacing:3.780000px;}
.ws36{word-spacing:3.840000px;}
.ws7f{word-spacing:3.900000px;}
.ws37{word-spacing:4.020000px;}
.ws8c{word-spacing:4.080000px;}
.ws21{word-spacing:4.140000px;}
.ws53{word-spacing:4.260000px;}
.ws122{word-spacing:4.320000px;}
.wsd9{word-spacing:4.380000px;}
.ws11b{word-spacing:4.440000px;}
.ws14{word-spacing:4.482000px;}
.ws1f{word-spacing:4.500000px;}
.ws9a{word-spacing:4.560000px;}
.wsd7{word-spacing:4.620000px;}
.ws1d{word-spacing:4.680000px;}
.ws13b{word-spacing:4.698000px;}
.ws117{word-spacing:4.800000px;}
.ws15{word-spacing:4.860000px;}
.wsb5{word-spacing:4.920000px;}
.ws2c{word-spacing:4.980000px;}
.wsfb{word-spacing:5.040000px;}
.wsff{word-spacing:5.100000px;}
.ws94{word-spacing:5.184000px;}
.wsd8{word-spacing:5.220000px;}
.ws93{word-spacing:5.238000px;}
.ws4d{word-spacing:5.340000px;}
.wsed{word-spacing:5.460000px;}
.wsc5{word-spacing:5.520000px;}
.wsb2{word-spacing:5.700000px;}
.ws20{word-spacing:5.820000px;}
.ws34{word-spacing:5.880000px;}
.ws133{word-spacing:5.940000px;}
.ws132{word-spacing:5.994000px;}
.ws89{word-spacing:6.120000px;}
.ws8a{word-spacing:6.180000px;}
.ws96{word-spacing:6.240000px;}
.ws8e{word-spacing:6.360000px;}
.ws12b{word-spacing:6.372000px;}
.ws8f{word-spacing:6.420000px;}
.ws51{word-spacing:6.660000px;}
.ws139{word-spacing:6.696000px;}
.ws4b{word-spacing:6.720000px;}
.ws4f{word-spacing:6.780000px;}
.ws7c{word-spacing:6.960000px;}
.wsfc{word-spacing:7.080000px;}
.ws4c{word-spacing:7.140000px;}
.ws31{word-spacing:7.200000px;}
.ws92{word-spacing:7.320000px;}
.wsf3{word-spacing:7.380000px;}
.ws127{word-spacing:7.500000px;}
.ws113{word-spacing:7.620000px;}
.ws54{word-spacing:7.740000px;}
.ws29{word-spacing:7.800000px;}
.ws47{word-spacing:7.860000px;}
.ws28{word-spacing:8.280000px;}
.ws5d{word-spacing:8.700000px;}
.ws33{word-spacing:8.760000px;}
.ws49{word-spacing:8.820000px;}
.wse9{word-spacing:8.940000px;}
.ws12e{word-spacing:9.234000px;}
.ws12d{word-spacing:9.342000px;}
.wsf4{word-spacing:9.480000px;}
.ws120{word-spacing:9.780000px;}
.ws3d{word-spacing:9.960000px;}
.wsfe{word-spacing:10.800000px;}
.wsfd{word-spacing:10.920000px;}
.ws103{word-spacing:11.520000px;}
.ws35{word-spacing:12.000000px;}
.ws43{word-spacing:12.120000px;}
.ws42{word-spacing:12.180000px;}
.ws44{word-spacing:12.420000px;}
.ws88{word-spacing:12.540000px;}
.wsc4{word-spacing:13.860000px;}
.ws10f{word-spacing:20.665200px;}
.ws90{word-spacing:23.820000px;}
.wsdb{word-spacing:24.120000px;}
.ws1{word-spacing:33.651135px;}
.ws10d{word-spacing:41.718600px;}
.ws10b{word-spacing:46.885200px;}
.ws81{word-spacing:63.113400px;}
.wsb8{word-spacing:66.213000px;}
.ws110{word-spacing:78.654600px;}
.ws111{word-spacing:86.400600px;}
.ws10c{word-spacing:93.958800px;}
.ws112{word-spacing:114.549000px;}
.ws62{word-spacing:119.843400px;}
.wse2{word-spacing:157.536600px;}
.wse1{word-spacing:157.560000px;}
.wsde{word-spacing:157.584000px;}
.ws83{word-spacing:161.470800px;}
.ws82{word-spacing:161.518800px;}
.wsbd{word-spacing:164.862000px;}
.wsbe{word-spacing:164.874000px;}
.wsbf{word-spacing:164.910600px;}
.ws85{word-spacing:165.637200px;}
.wsc0{word-spacing:178.338600px;}
.ws72{word-spacing:184.143000px;}
.ws6f{word-spacing:184.191000px;}
.ws6a{word-spacing:185.637216px;}
.wsbc{word-spacing:195.858000px;}
.wsc1{word-spacing:195.894600px;}
.ws6e{word-spacing:201.867000px;}
.ws69{word-spacing:207.216168px;}
.ws67{word-spacing:210.672000px;}
.wse6{word-spacing:220.032600px;}
.wse5{word-spacing:224.127600px;}
.ws73{word-spacing:238.095000px;}
.wsd2{word-spacing:249.000600px;}
.ws6b{word-spacing:249.610968px;}
.wsdf{word-spacing:250.957200px;}
.ws86{word-spacing:251.830200px;}
.wse3{word-spacing:255.123600px;}
.ws70{word-spacing:255.819000px;}
.wsba{word-spacing:266.346600px;}
.ws6c{word-spacing:269.074200px;}
.wse0{word-spacing:282.096600px;}
.ws63{word-spacing:284.479200px;}
.wscd{word-spacing:285.426600px;}
.wscf{word-spacing:285.684000px;}
.wsbb{word-spacing:288.762600px;}
.wsce{word-spacing:291.737400px;}
.wsd3{word-spacing:302.109600px;}
.ws66{word-spacing:302.571000px;}
.wse4{word-spacing:318.090000px;}
.ws84{word-spacing:342.261600px;}
.ws6d{word-spacing:343.787400px;}
.wsd5{word-spacing:346.368000px;}
.wsd4{word-spacing:346.404600px;}
.ws71{word-spacing:348.300000px;}
.wsd0{word-spacing:350.197200px;}
.wsd1{word-spacing:356.893200px;}
.wsb9{word-spacing:366.185400px;}
.ws10a{word-spacing:376.439400px;}
.wsa5{word-spacing:377.878416px;}
.ws64{word-spacing:422.509800px;}
.wsa7{word-spacing:467.774400px;}
.wsa4{word-spacing:473.083800px;}
.wsa6{word-spacing:475.438800px;}
.wsa9{word-spacing:518.083200px;}
.wsaa{word-spacing:524.924400px;}
.wsa3{word-spacing:542.938800px;}
.wsa8{word-spacing:572.080800px;}
.wsab{word-spacing:572.153400px;}
.wsa1{word-spacing:627.897600px;}
.wsa2{word-spacing:653.940600px;}
.wscc{word-spacing:1027.582800px;}
._6{margin-left:-9.843000px;}
._3{margin-left:-8.309400px;}
._4{margin-left:-6.528000px;}
._5{margin-left:-5.305800px;}
._9{margin-left:-3.609600px;}
._7{margin-left:-2.509200px;}
._0{margin-left:-1.377000px;}
._1{width:1.052400px;}
._2{width:2.805000px;}
._a{width:4.080000px;}
._b{width:5.094000px;}
._c{width:6.594000px;}
._e{width:7.857000px;}
._f{width:8.974200px;}
._4f{width:11.586000px;}
._d{width:12.776400px;}
._ad{width:15.557400px;}
._50{width:23.076600px;}
._77{width:24.623400px;}
._8{width:36.624000px;}
._ac{width:43.971000px;}
._99{width:58.450800px;}
._27{width:61.240800px;}
._98{width:63.372000px;}
._1d{width:77.953200px;}
._97{width:88.353000px;}
._aa{width:98.868600px;}
._7a{width:100.896000px;}
._28{width:124.176000px;}
._a9{width:128.473200px;}
._71{width:132.339600px;}
._35{width:133.384200px;}
._8b{width:136.755600px;}
._7b{width:142.804800px;}
._36{width:147.169200px;}
._12{width:149.589000px;}
._6a{width:166.250400px;}
._81{width:168.502200px;}
._a5{width:169.749600px;}
._3a{width:173.386200px;}
._29{width:177.264600px;}
._74{width:179.273400px;}
._a8{width:183.511800px;}
._23{width:189.573000px;}
._13{width:191.683200px;}
._49{width:200.350800px;}
._66{width:204.604200px;}
._73{width:207.075000px;}
._a4{width:209.904600px;}
._67{width:211.093200px;}
._18{width:213.771000px;}
._5d{width:216.187200px;}
._21{width:218.032200px;}
._37{width:225.555000px;}
._15{width:227.019000px;}
._51{width:229.059600px;}
._9b{width:231.865200px;}
._19{width:232.891200px;}
._24{width:234.911400px;}
._a6{width:236.256600px;}
._6b{width:238.682400px;}
._89{width:241.239000px;}
._31{width:242.398200px;}
._46{width:244.405200px;}
._76{width:250.936200px;}
._1b{width:253.130400px;}
._a3{width:258.476400px;}
._4a{width:259.714200px;}
._a7{width:260.809800px;}
._40{width:263.734200px;}
._11{width:264.870000px;}
._32{width:267.723000px;}
._2f{width:269.925000px;}
._8f{width:271.310400px;}
._2e{width:273.844800px;}
._4c{width:277.798200px;}
._83{width:279.263688px;}
._2a{width:287.499000px;}
._1e{width:290.817000px;}
._3b{width:291.985200px;}
._a0{width:293.910000px;}
._2b{width:296.949000px;}
._34{width:301.608000px;}
._7e{width:304.320000px;}
._6e{width:305.811600px;}
._5b{width:309.566400px;}
._22{width:310.729800px;}
._25{width:312.868800px;}
._63{width:316.330200px;}
._38{width:318.202200px;}
._2d{width:324.693000px;}
._9a{width:326.448600px;}
._2c{width:327.849000px;}
._9e{width:330.070800px;}
._33{width:336.819000px;}
._4d{width:338.437200px;}
._5e{width:339.949200px;}
._6f{width:341.152800px;}
._20{width:343.863600px;}
._4e{width:349.536600px;}
._9f{width:351.026400px;}
._82{width:353.245200px;}
._87{width:354.507000px;}
._64{width:356.356200px;}
._30{width:358.318200px;}
._17{width:365.842200px;}
._70{width:367.899000px;}
._72{width:369.375000px;}
._3e{width:375.840600px;}
._10{width:377.658600px;}
._6d{width:378.963600px;}
._61{width:382.324800px;}
._9c{width:387.589200px;}
._62{width:389.906400px;}
._9d{width:392.926800px;}
._a1{width:399.013200px;}
._a2{width:403.801800px;}
._84{width:405.024000px;}
._75{width:406.504800px;}
._14{width:411.591600px;}
._41{width:417.877200px;}
._6c{width:420.566400px;}
._65{width:423.418800px;}
._59{width:429.322800px;}
._26{width:430.364400px;}
._16{width:439.424400px;}
._43{width:443.086800px;}
._60{width:444.674400px;}
._96{width:451.879200px;}
._42{width:453.218400px;}
._52{width:459.563400px;}
._54{width:464.400000px;}
._1c{width:465.537000px;}
._1a{width:466.694400px;}
._69{width:470.031000px;}
._56{width:473.807400px;}
._45{width:479.941200px;}
._47{width:481.429200px;}
._7f{width:482.745600px;}
._55{width:485.823600px;}
._3c{width:489.781200px;}
._3f{width:491.029200px;}
._44{width:501.205200px;}
._53{width:503.096400px;}
._48{width:505.993800px;}
._5c{width:507.630600px;}
._5a{width:508.972200px;}
._95{width:521.101200px;}
._1f{width:526.881000px;}
._3d{width:532.597200px;}
._93{width:536.697600px;}
._79{width:539.220000px;}
._4b{width:562.501200px;}
._39{width:582.085200px;}
._85{width:589.309200px;}
._58{width:604.500600px;}
._5f{width:607.335000px;}
._78{width:608.441400px;}
._57{width:672.081600px;}
._8c{width:782.349600px;}
._88{width:794.657400px;}
._ab{width:807.058800px;}
._94{width:847.471200px;}
._90{width:863.830200px;}
._91{width:888.474600px;}
._8e{width:929.766000px;}
._8d{width:952.342200px;}
._92{width:963.402600px;}
._7d{width:970.915200px;}
._86{width:989.110200px;}
._7c{width:1016.663400px;}
._8a{width:1035.437400px;}
._80{width:1071.766800px;}
._68{width:1140.299400px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.984000px;}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.036150px;}
.y6c{bottom:113.078700px;}
.y9c{bottom:113.078850px;}
.y10{bottom:116.543850px;}
.y2a{bottom:117.212550px;}
.y140{bottom:118.379550px;}
.yf{bottom:130.943850px;}
.y13f{bottom:133.379550px;}
.y6b{bottom:134.078700px;}
.y9b{bottom:134.078850px;}
.y11b{bottom:138.179550px;}
.y29{bottom:138.212550px;}
.ye{bottom:145.343850px;}
.y6a{bottom:155.078700px;}
.y9a{bottom:155.078850px;}
.y13e{bottom:155.985750px;}
.y28{bottom:159.212550px;}
.yd{bottom:159.743850px;}
.y147{bottom:160.529400px;}
.y11a{bottom:160.785900px;}
.y69{bottom:176.078700px;}
.y99{bottom:176.078850px;}
.yd4{bottom:178.182450px;}
.y13c{bottom:178.592100px;}
.y27{bottom:180.212550px;}
.y119{bottom:183.392100px;}
.y13b{bottom:193.592100px;}
.y13d{bottom:194.012100px;}
.y68{bottom:197.078700px;}
.y98{bottom:197.078850px;}
.yd3{bottom:197.982450px;}
.y3b{bottom:198.060900px;}
.y26{bottom:201.212550px;}
.y118{bottom:205.998450px;}
.y129{bottom:211.440900px;}
.y3a{bottom:216.060900px;}
.y139{bottom:216.198450px;}
.ya0{bottom:218.078700px;}
.y97{bottom:218.078850px;}
.y25{bottom:222.212550px;}
.y117{bottom:228.604800px;}
.y138{bottom:231.198450px;}
.y67{bottom:231.513450px;}
.y13a{bottom:231.618450px;}
.y39{bottom:234.060900px;}
.y9f{bottom:239.078700px;}
.y96{bottom:239.078850px;}
.y24{bottom:243.212550px;}
.y146{bottom:244.529400px;}
.y116{bottom:251.211000px;}
.y38{bottom:252.060900px;}
.y137{bottom:253.804650px;}
.ybb{bottom:260.078700px;}
.y95{bottom:260.078850px;}
.y66{bottom:263.811000px;}
.y23{bottom:264.212550px;}
.y37{bottom:270.060900px;}
.y115{bottom:273.817350px;}
.y135{bottom:276.411000px;}
.yba{bottom:281.078700px;}
.y94{bottom:281.078850px;}
.y22{bottom:285.212550px;}
.y36{bottom:288.060900px;}
.y9e{bottom:288.353100px;}
.y134{bottom:291.411000px;}
.y136{bottom:291.831000px;}
.y114{bottom:296.423700px;}
.yb9{bottom:302.078700px;}
.y93{bottom:302.078850px;}
.y35{bottom:306.060900px;}
.y21{bottom:306.212550px;}
.y145{bottom:307.529400px;}
.y9d{bottom:308.153100px;}
.y132{bottom:314.017350px;}
.y113{bottom:319.029900px;}
.y65{bottom:323.078700px;}
.y92{bottom:323.078850px;}
.y34{bottom:324.060900px;}
.y131{bottom:329.017350px;}
.y133{bottom:329.437350px;}
.y112{bottom:341.636250px;}
.y33{bottom:342.060900px;}
.y64{bottom:344.078700px;}
.y91{bottom:344.078850px;}
.y20{bottom:347.204400px;}
.y130{bottom:351.623550px;}
.y111{bottom:364.242600px;}
.y63{bottom:365.078700px;}
.y90{bottom:365.078850px;}
.y144{bottom:370.937100px;}
.y12e{bottom:374.229900px;}
.y32{bottom:377.068800px;}
.y62{bottom:386.078700px;}
.y8f{bottom:386.078850px;}
.y110{bottom:386.848800px;}
.y12d{bottom:389.229900px;}
.y12f{bottom:389.649900px;}
.yd6{bottom:393.539550px;}
.y31{bottom:395.068800px;}
.y143{bottom:400.441050px;}
.y61{bottom:407.078700px;}
.y8e{bottom:407.078850px;}
.y10f{bottom:409.455150px;}
.y12c{bottom:411.836250px;}
.y30{bottom:413.068800px;}
.yd5{bottom:413.339700px;}
.y1f{bottom:419.227950px;}
.y60{bottom:428.078700px;}
.y8d{bottom:428.078850px;}
.y10e{bottom:432.061500px;}
.y12b{bottom:442.318050px;}
.y2f{bottom:448.076700px;}
.y5f{bottom:449.078700px;}
.y8c{bottom:449.078850px;}
.y10d{bottom:454.667700px;}
.y1e{bottom:460.287900px;}
.y124{bottom:460.828950px;}
.y2e{bottom:466.076700px;}
.y5e{bottom:470.078700px;}
.y8b{bottom:470.078850px;}
.y10c{bottom:477.274050px;}
.y1d{bottom:480.087900px;}
.y123{bottom:480.628950px;}
.y2d{bottom:484.076700px;}
.y5d{bottom:491.078700px;}
.y8a{bottom:491.078850px;}
.y10b{bottom:499.880250px;}
.y1c{bottom:499.887900px;}
.y2c{bottom:502.076700px;}
.y128{bottom:505.441050px;}
.y5c{bottom:512.078700px;}
.y89{bottom:512.078850px;}
.y1b{bottom:519.687900px;}
.y2b{bottom:520.076700px;}
.y10a{bottom:520.360650px;}
.y5b{bottom:533.078700px;}
.y88{bottom:533.078850px;}
.y1a{bottom:539.487900px;}
.y109{bottom:540.840900px;}
.yd9{bottom:548.437650px;}
.y5a{bottom:554.078700px;}
.y87{bottom:554.078850px;}
.y105{bottom:558.788400px;}
.y19{bottom:559.287900px;}
.y122{bottom:560.914350px;}
.yd8{bottom:568.237650px;}
.y108{bottom:571.322850px;}
.y59{bottom:575.078700px;}
.y86{bottom:575.078850px;}
.yd2{bottom:575.914350px;}
.y18{bottom:579.087900px;}
.y104{bottom:581.394750px;}
.y121{bottom:583.520700px;}
.yd7{bottom:588.037650px;}
.y142{bottom:589.441050px;}
.y107{bottom:591.122850px;}
.y58{bottom:596.078700px;}
.y85{bottom:596.078850px;}
.yd1{bottom:598.520700px;}
.y17{bottom:598.887900px;}
.y103{bottom:604.000950px;}
.y120{bottom:606.127050px;}
.y125{bottom:609.979650px;}
.yb8{bottom:616.539600px;}
.y57{bottom:617.078700px;}
.y84{bottom:617.078850px;}
.y16{bottom:618.687900px;}
.yd0{bottom:621.127050px;}
.y102{bottom:626.607300px;}
.y11f{bottom:628.733250px;}
.y14e{bottom:638.078700px;}
.y83{bottom:638.078850px;}
.y15{bottom:638.487750px;}
.yb7{bottom:639.145950px;}
.ycf{bottom:643.733250px;}
.y101{bottom:649.213650px;}
.y11e{bottom:651.339600px;}
.yed{bottom:652.267950px;}
.y56{bottom:652.440900px;}
.y14{bottom:658.287900px;}
.y14d{bottom:659.078700px;}
.y82{bottom:659.078850px;}
.yb6{bottom:661.752300px;}
.yce{bottom:666.339600px;}
.y100{bottom:671.819850px;}
.y11d{bottom:673.945800px;}
.yec{bottom:674.874150px;}
.y13{bottom:678.087750px;}
.y14c{bottom:680.078700px;}
.y81{bottom:680.078850px;}
.yb5{bottom:684.358500px;}
.ycd{bottom:688.945800px;}
.yff{bottom:694.426200px;}
.y11c{bottom:696.552150px;}
.yeb{bottom:697.480500px;}
.y55{bottom:701.078700px;}
.y80{bottom:701.078850px;}
.yb4{bottom:706.964850px;}
.y12{bottom:709.185300px;}
.ycc{bottom:711.552150px;}
.yfe{bottom:717.032550px;}
.yea{bottom:720.086850px;}
.y54{bottom:722.078700px;}
.y7f{bottom:722.078850px;}
.yb3{bottom:729.571200px;}
.ycb{bottom:734.158500px;}
.y12a{bottom:736.441050px;}
.yfd{bottom:739.638750px;}
.ye9{bottom:742.693200px;}
.y53{bottom:743.078700px;}
.y7e{bottom:743.078850px;}
.yb2{bottom:752.177400px;}
.yca{bottom:756.764850px;}
.yfc{bottom:762.245100px;}
.y52{bottom:764.078700px;}
.y7d{bottom:764.078850px;}
.ye8{bottom:765.299400px;}
.yb1{bottom:774.783750px;}
.yc9{bottom:779.371050px;}
.yfb{bottom:784.851450px;}
.y51{bottom:785.078700px;}
.y7c{bottom:785.078850px;}
.ye7{bottom:787.905750px;}
.yc{bottom:788.466750px;}
.yb0{bottom:797.390100px;}
.yc8{bottom:801.977400px;}
.y50{bottom:806.078700px;}
.y7b{bottom:806.078850px;}
.yb{bottom:806.466750px;}
.yfa{bottom:807.457650px;}
.ye6{bottom:810.512100px;}
.yaf{bottom:812.390100px;}
.ya{bottom:824.466750px;}
.yc7{bottom:824.583600px;}
.y4f{bottom:827.078700px;}
.y7a{bottom:827.078850px;}
.yf9{bottom:830.064000px;}
.ye5{bottom:833.118300px;}
.yae{bottom:834.996300px;}
.y9{bottom:842.466750px;}
.yc6{bottom:847.189950px;}
.y4e{bottom:848.078700px;}
.y79{bottom:848.078850px;}
.ye4{bottom:848.118300px;}
.yf8{bottom:852.670200px;}
.yad{bottom:857.602650px;}
.y8{bottom:860.466750px;}
.y14b{bottom:862.440900px;}
.y4d{bottom:869.078700px;}
.y78{bottom:869.078850px;}
.yc5{bottom:869.796300px;}
.ye3{bottom:870.724650px;}
.yf7{bottom:875.276550px;}
.y7{bottom:878.466750px;}
.yac{bottom:880.209000px;}
.y4c{bottom:890.078700px;}
.y77{bottom:890.078850px;}
.yc4{bottom:892.402650px;}
.ye2{bottom:893.331000px;}
.yab{bottom:895.209000px;}
.yf6{bottom:897.882900px;}
.y141{bottom:904.441050px;}
.y4b{bottom:911.078700px;}
.y76{bottom:911.078850px;}
.y6{bottom:913.474800px;}
.yc3{bottom:915.008850px;}
.ye1{bottom:915.937200px;}
.yaa{bottom:917.815200px;}
.yf5{bottom:920.489100px;}
.ye0{bottom:930.937200px;}
.y4a{bottom:932.078700px;}
.y75{bottom:932.078850px;}
.y14a{bottom:937.529250px;}
.yc2{bottom:937.615200px;}
.ya9{bottom:940.421550px;}
.yf4{bottom:943.095450px;}
.y5{bottom:950.282550px;}
.y49{bottom:953.078700px;}
.y74{bottom:953.078850px;}
.ydf{bottom:953.543550px;}
.yc1{bottom:960.221400px;}
.ya8{bottom:963.027900px;}
.yf3{bottom:965.701800px;}
.y48{bottom:974.078700px;}
.y73{bottom:974.078850px;}
.yde{bottom:976.149750px;}
.yc0{bottom:982.827750px;}
.y4{bottom:983.282550px;}
.ya7{bottom:985.634100px;}
.yf2{bottom:988.308150px;}
.y47{bottom:995.078700px;}
.y72{bottom:995.078850px;}
.ydd{bottom:998.756100px;}
.ybf{bottom:1005.434100px;}
.ya6{bottom:1008.240450px;}
.yf1{bottom:1010.914350px;}
.y46{bottom:1016.078700px;}
.y71{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ydc{bottom:1021.362450px;}
.y149{bottom:1021.529250px;}
.ybe{bottom:1028.040300px;}
.ya5{bottom:1028.720700px;}
.yf0{bottom:1033.520700px;}
.y45{bottom:1037.078700px;}
.y70{bottom:1037.078850px;}
.ydb{bottom:1044.268650px;}
.ybd{bottom:1048.520700px;}
.ya4{bottom:1049.201100px;}
.y2{bottom:1049.282550px;}
.yef{bottom:1054.001100px;}
.y44{bottom:1058.078700px;}
.y6f{bottom:1058.078850px;}
.yee{bottom:1061.501100px;}
.yda{bottom:1066.875000px;}
.ybc{bottom:1069.001100px;}
.y43{bottom:1079.078700px;}
.y106{bottom:1079.078850px;}
.ya3{bottom:1079.682900px;}
.y127{bottom:1092.029250px;}
.ya2{bottom:1099.482900px;}
.y42{bottom:1100.078700px;}
.y6e{bottom:1100.078850px;}
.y11{bottom:1109.815500px;}
.ya1{bottom:1119.282900px;}
.y41{bottom:1121.078700px;}
.y6d{bottom:1121.078850px;}
.y126{bottom:1124.326800px;}
.y148{bottom:1125.451800px;}
.y3d{bottom:1155.615300px;}
.y3c{bottom:1175.115300px;}
.y40{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h12{height:38.226562px;}
.h10{height:38.273438px;}
.h14{height:38.507812px;}
.h5{height:38.531250px;}
.h13{height:39.000000px;}
.h17{height:39.562500px;}
.h18{height:41.243100px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.ha{height:43.321289px;}
.h9{height:43.875000px;}
.h8{height:47.343750px;}
.hd{height:48.134766px;}
.hc{height:48.750000px;}
.h11{height:49.453125px;}
.h19{height:50.176758px;}
.h16{height:52.078125px;}
.h4{height:52.948242px;}
.hb{height:56.812500px;}
.h15{height:68.226562px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x1f{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x4{left:300.189000px;}
.x10{left:304.440900px;}
.x5{left:317.196900px;}
.x24{left:359.193150px;}
.x3{left:396.050700px;}
.x1e{left:415.381200px;}
.x22{left:459.051300px;}
.xf{left:473.566800px;}
.x12{left:475.564950px;}
.x1c{left:478.589250px;}
.xd{left:480.384450px;}
.x1d{left:482.957400px;}
.x23{left:488.770200px;}
.x11{left:494.338200px;}
.x13{left:500.378400px;}
.x15{left:501.864000px;}
.xe{left:511.547550px;}
.x20{left:519.123600px;}
.x16{left:521.225250px;}
.x21{left:523.491750px;}
.x19{left:529.879200px;}
.x14{left:531.541500px;}
.x17{left:532.621650px;}
.x1b{left:541.275750px;}
.x18{left:545.685150px;}
.x27{left:638.633250px;}
.x25{left:646.098150px;}
.xa{left:652.471650px;}
.x28{left:662.325600px;}
.x26{left:674.732850px;}
.x9{left:683.836950px;}
.x1a{left:717.442950px;}
.x1{left:807.210300px;}
@media print{
.v6{vertical-align:-14.208000pt;}
.v7{vertical-align:-1.493333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.493867pt;}
.v4{vertical-align:14.208000pt;}
.v3{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:26.666667pt;}
.ls27{letter-spacing:-3.520000pt;}
.ls2d{letter-spacing:-2.986667pt;}
.ls26{letter-spacing:-2.666667pt;}
.ls1d{letter-spacing:-2.560000pt;}
.ls3{letter-spacing:-1.178667pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls2a{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.853333pt;}
.ls6{letter-spacing:-0.816000pt;}
.ls23{letter-spacing:-0.746667pt;}
.lsc{letter-spacing:-0.684053pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.559680pt;}
.ls2e{letter-spacing:-0.554667pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.432000pt;}
.ls21{letter-spacing:-0.404213pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.279840pt;}
.ls30{letter-spacing:-0.251856pt;}
.lsf{letter-spacing:-0.223872pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.124373pt;}
.ls16{letter-spacing:-0.106667pt;}
.ls25{letter-spacing:-0.093280pt;}
.ls17{letter-spacing:-0.062187pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.002133pt;}
.ls29{letter-spacing:0.004800pt;}
.ls28{letter-spacing:0.008000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1a{letter-spacing:0.018133pt;}
.ls15{letter-spacing:0.018667pt;}
.ls1{letter-spacing:0.022933pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.248747pt;}
.ls19{letter-spacing:0.419733pt;}
.ls1b{letter-spacing:0.420267pt;}
.ls18{letter-spacing:0.426667pt;}
.lsb{letter-spacing:1.884267pt;}
.ls8{letter-spacing:10.838400pt;}
.ls9{letter-spacing:11.106133pt;}
.lse{letter-spacing:215.795072pt;}
.ws0{word-spacing:-21.216000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws106{word-spacing:-15.808000pt;}
.ws11f{word-spacing:-14.608000pt;}
.wsf7{word-spacing:-14.490667pt;}
.wsb6{word-spacing:-13.706667pt;}
.wsca{word-spacing:-13.653333pt;}
.wsb7{word-spacing:-13.493333pt;}
.ws5{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.226667pt;}
.ws3e{word-spacing:-13.173333pt;}
.ws8{word-spacing:-13.066667pt;}
.ws105{word-spacing:-12.906667pt;}
.ws25{word-spacing:-12.693333pt;}
.ws107{word-spacing:-12.106667pt;}
.ws59{word-spacing:-12.053333pt;}
.ws57{word-spacing:-11.952000pt;}
.ws129{word-spacing:-11.904000pt;}
.ws40{word-spacing:-11.893333pt;}
.ws6{word-spacing:-11.760000pt;}
.ws108{word-spacing:-11.376000pt;}
.wsf6{word-spacing:-10.970667pt;}
.wsd{word-spacing:-10.800000pt;}
.ws68{word-spacing:-10.581333pt;}
.ws9{word-spacing:-10.464000pt;}
.ws109{word-spacing:-10.453333pt;}
.wsb{word-spacing:-9.984000pt;}
.ws3{word-spacing:-9.685333pt;}
.wsa{word-spacing:-9.648000pt;}
.ws23{word-spacing:-9.600000pt;}
.wse{word-spacing:-9.301333pt;}
.ws2{word-spacing:-8.482261pt;}
.ws4{word-spacing:-8.371200pt;}
.wscb{word-spacing:-7.978667pt;}
.wsc9{word-spacing:-7.959893pt;}
.ws3f{word-spacing:-7.711147pt;}
.wsac{word-spacing:-7.648960pt;}
.wsf1{word-spacing:-7.617867pt;}
.wsf0{word-spacing:-7.586773pt;}
.ws10e{word-spacing:-7.466667pt;}
.ws75{word-spacing:-7.431307pt;}
.wseb{word-spacing:-7.306933pt;}
.ws74{word-spacing:-7.151467pt;}
.ws58{word-spacing:-7.027093pt;}
.ws61{word-spacing:-6.940032pt;}
.ws137{word-spacing:-6.688176pt;}
.ws65{word-spacing:-6.168917pt;}
.ws123{word-spacing:-3.413333pt;}
.wsae{word-spacing:-2.933333pt;}
.wsd6{word-spacing:-2.666667pt;}
.ws7a{word-spacing:-2.506667pt;}
.ws100{word-spacing:-2.453333pt;}
.ws56{word-spacing:-2.346667pt;}
.ws101{word-spacing:-2.240000pt;}
.ws102{word-spacing:-2.186667pt;}
.wsec{word-spacing:-2.133333pt;}
.ws125{word-spacing:-2.080000pt;}
.ws3a{word-spacing:-2.026667pt;}
.wsea{word-spacing:-2.016000pt;}
.wsf8{word-spacing:-1.973333pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws116{word-spacing:-1.856000pt;}
.ws13{word-spacing:-1.824000pt;}
.ws2b{word-spacing:-1.760000pt;}
.ws11e{word-spacing:-1.728000pt;}
.ws87{word-spacing:-1.632000pt;}
.wsc6{word-spacing:-1.600000pt;}
.ws9b{word-spacing:-1.546667pt;}
.ws138{word-spacing:-1.488000pt;}
.ws115{word-spacing:-1.440000pt;}
.ws12f{word-spacing:-1.344000pt;}
.ws12a{word-spacing:-1.296000pt;}
.ws114{word-spacing:-1.280000pt;}
.ws9d{word-spacing:-1.173333pt;}
.ws46{word-spacing:-1.120000pt;}
.wsad{word-spacing:-1.056000pt;}
.ws128{word-spacing:-1.013333pt;}
.ws7b{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.912000pt;}
.ws2e{word-spacing:-0.853333pt;}
.wsef{word-spacing:-0.816000pt;}
.ws27{word-spacing:-0.810667pt;}
.wsb0{word-spacing:-0.800000pt;}
.ws97{word-spacing:-0.746667pt;}
.ws9f{word-spacing:-0.720000pt;}
.wsf2{word-spacing:-0.693333pt;}
.ws9e{word-spacing:-0.672000pt;}
.ws3b{word-spacing:-0.640000pt;}
.ws7d{word-spacing:-0.586667pt;}
.ws119{word-spacing:-0.533333pt;}
.wsdd{word-spacing:-0.528000pt;}
.ws41{word-spacing:-0.480000pt;}
.wsc7{word-spacing:-0.426667pt;}
.wsdc{word-spacing:-0.373333pt;}
.ws32{word-spacing:-0.266667pt;}
.wse8{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.wsb1{word-spacing:-0.160000pt;}
.ws79{word-spacing:-0.106667pt;}
.wsc{word-spacing:-0.048000pt;}
.ws24{word-spacing:-0.042667pt;}
.wsf{word-spacing:0.000000pt;}
.wsfa{word-spacing:0.053333pt;}
.ws95{word-spacing:0.096000pt;}
.wsb3{word-spacing:0.106667pt;}
.ws135{word-spacing:0.144000pt;}
.wsc2{word-spacing:0.160000pt;}
.ws99{word-spacing:0.213333pt;}
.ws50{word-spacing:0.266667pt;}
.ws130{word-spacing:0.288000pt;}
.wse7{word-spacing:0.320000pt;}
.ws16{word-spacing:0.336000pt;}
.ws91{word-spacing:0.373333pt;}
.ws11d{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.426667pt;}
.ws5f{word-spacing:0.480000pt;}
.ws17{word-spacing:0.528000pt;}
.ws8d{word-spacing:0.533333pt;}
.ws76{word-spacing:0.576000pt;}
.ws39{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.wsa0{word-spacing:0.640000pt;}
.ws55{word-spacing:0.693333pt;}
.wsb4{word-spacing:0.746667pt;}
.wsc3{word-spacing:0.800000pt;}
.ws22{word-spacing:0.816000pt;}
.ws52{word-spacing:0.853333pt;}
.ws5c{word-spacing:0.906667pt;}
.ws11c{word-spacing:0.960000pt;}
.ws11a{word-spacing:1.013333pt;}
.ws104{word-spacing:1.066667pt;}
.ws80{word-spacing:1.120000pt;}
.ws134{word-spacing:1.152000pt;}
.ws5e{word-spacing:1.173333pt;}
.ws78{word-spacing:1.226667pt;}
.ws131{word-spacing:1.248000pt;}
.ws4e{word-spacing:1.333333pt;}
.ws77{word-spacing:1.344000pt;}
.wsc8{word-spacing:1.440000pt;}
.ws1c{word-spacing:1.536000pt;}
.ws121{word-spacing:1.546667pt;}
.ws60{word-spacing:1.600000pt;}
.ws12c{word-spacing:1.632000pt;}
.ws9c{word-spacing:1.706667pt;}
.wsee{word-spacing:1.760000pt;}
.ws13a{word-spacing:1.776000pt;}
.ws8b{word-spacing:1.813333pt;}
.ws124{word-spacing:1.866667pt;}
.ws5a{word-spacing:1.872000pt;}
.ws5b{word-spacing:1.920000pt;}
.ws30{word-spacing:1.973333pt;}
.ws126{word-spacing:2.026667pt;}
.ws2a{word-spacing:2.080000pt;}
.ws1e{word-spacing:2.133333pt;}
.ws136{word-spacing:2.208000pt;}
.ws4a{word-spacing:2.293333pt;}
.ws45{word-spacing:2.453333pt;}
.ws98{word-spacing:2.506667pt;}
.ws38{word-spacing:2.666667pt;}
.ws3c{word-spacing:2.720000pt;}
.wsf9{word-spacing:2.826667pt;}
.ws19{word-spacing:2.880000pt;}
.ws18{word-spacing:2.928000pt;}
.ws48{word-spacing:2.933333pt;}
.ws7e{word-spacing:2.986667pt;}
.wsda{word-spacing:3.040000pt;}
.wsf5{word-spacing:3.093333pt;}
.ws12{word-spacing:3.120000pt;}
.wsaf{word-spacing:3.200000pt;}
.ws118{word-spacing:3.306667pt;}
.ws1a{word-spacing:3.360000pt;}
.ws36{word-spacing:3.413333pt;}
.ws7f{word-spacing:3.466667pt;}
.ws37{word-spacing:3.573333pt;}
.ws8c{word-spacing:3.626667pt;}
.ws21{word-spacing:3.680000pt;}
.ws53{word-spacing:3.786667pt;}
.ws122{word-spacing:3.840000pt;}
.wsd9{word-spacing:3.893333pt;}
.ws11b{word-spacing:3.946667pt;}
.ws14{word-spacing:3.984000pt;}
.ws1f{word-spacing:4.000000pt;}
.ws9a{word-spacing:4.053333pt;}
.wsd7{word-spacing:4.106667pt;}
.ws1d{word-spacing:4.160000pt;}
.ws13b{word-spacing:4.176000pt;}
.ws117{word-spacing:4.266667pt;}
.ws15{word-spacing:4.320000pt;}
.wsb5{word-spacing:4.373333pt;}
.ws2c{word-spacing:4.426667pt;}
.wsfb{word-spacing:4.480000pt;}
.wsff{word-spacing:4.533333pt;}
.ws94{word-spacing:4.608000pt;}
.wsd8{word-spacing:4.640000pt;}
.ws93{word-spacing:4.656000pt;}
.ws4d{word-spacing:4.746667pt;}
.wsed{word-spacing:4.853333pt;}
.wsc5{word-spacing:4.906667pt;}
.wsb2{word-spacing:5.066667pt;}
.ws20{word-spacing:5.173333pt;}
.ws34{word-spacing:5.226667pt;}
.ws133{word-spacing:5.280000pt;}
.ws132{word-spacing:5.328000pt;}
.ws89{word-spacing:5.440000pt;}
.ws8a{word-spacing:5.493333pt;}
.ws96{word-spacing:5.546667pt;}
.ws8e{word-spacing:5.653333pt;}
.ws12b{word-spacing:5.664000pt;}
.ws8f{word-spacing:5.706667pt;}
.ws51{word-spacing:5.920000pt;}
.ws139{word-spacing:5.952000pt;}
.ws4b{word-spacing:5.973333pt;}
.ws4f{word-spacing:6.026667pt;}
.ws7c{word-spacing:6.186667pt;}
.wsfc{word-spacing:6.293333pt;}
.ws4c{word-spacing:6.346667pt;}
.ws31{word-spacing:6.400000pt;}
.ws92{word-spacing:6.506667pt;}
.wsf3{word-spacing:6.560000pt;}
.ws127{word-spacing:6.666667pt;}
.ws113{word-spacing:6.773333pt;}
.ws54{word-spacing:6.880000pt;}
.ws29{word-spacing:6.933333pt;}
.ws47{word-spacing:6.986667pt;}
.ws28{word-spacing:7.360000pt;}
.ws5d{word-spacing:7.733333pt;}
.ws33{word-spacing:7.786667pt;}
.ws49{word-spacing:7.840000pt;}
.wse9{word-spacing:7.946667pt;}
.ws12e{word-spacing:8.208000pt;}
.ws12d{word-spacing:8.304000pt;}
.wsf4{word-spacing:8.426667pt;}
.ws120{word-spacing:8.693333pt;}
.ws3d{word-spacing:8.853333pt;}
.wsfe{word-spacing:9.600000pt;}
.wsfd{word-spacing:9.706667pt;}
.ws103{word-spacing:10.240000pt;}
.ws35{word-spacing:10.666667pt;}
.ws43{word-spacing:10.773333pt;}
.ws42{word-spacing:10.826667pt;}
.ws44{word-spacing:11.040000pt;}
.ws88{word-spacing:11.146667pt;}
.wsc4{word-spacing:12.320000pt;}
.ws10f{word-spacing:18.369067pt;}
.ws90{word-spacing:21.173333pt;}
.wsdb{word-spacing:21.440000pt;}
.ws1{word-spacing:29.912120pt;}
.ws10d{word-spacing:37.083200pt;}
.ws10b{word-spacing:41.675733pt;}
.ws81{word-spacing:56.100800pt;}
.wsb8{word-spacing:58.856000pt;}
.ws110{word-spacing:69.915200pt;}
.ws111{word-spacing:76.800533pt;}
.ws10c{word-spacing:83.518933pt;}
.ws112{word-spacing:101.821333pt;}
.ws62{word-spacing:106.527467pt;}
.wse2{word-spacing:140.032533pt;}
.wse1{word-spacing:140.053333pt;}
.wsde{word-spacing:140.074667pt;}
.ws83{word-spacing:143.529600pt;}
.ws82{word-spacing:143.572267pt;}
.wsbd{word-spacing:146.544000pt;}
.wsbe{word-spacing:146.554667pt;}
.wsbf{word-spacing:146.587200pt;}
.ws85{word-spacing:147.233067pt;}
.wsc0{word-spacing:158.523200pt;}
.ws72{word-spacing:163.682667pt;}
.ws6f{word-spacing:163.725333pt;}
.ws6a{word-spacing:165.010859pt;}
.wsbc{word-spacing:174.096000pt;}
.wsc1{word-spacing:174.128533pt;}
.ws6e{word-spacing:179.437333pt;}
.ws69{word-spacing:184.192149pt;}
.ws67{word-spacing:187.264000pt;}
.wse6{word-spacing:195.584533pt;}
.wse5{word-spacing:199.224533pt;}
.ws73{word-spacing:211.640000pt;}
.wsd2{word-spacing:221.333867pt;}
.ws6b{word-spacing:221.876416pt;}
.wsdf{word-spacing:223.073067pt;}
.ws86{word-spacing:223.849067pt;}
.wse3{word-spacing:226.776533pt;}
.ws70{word-spacing:227.394667pt;}
.wsba{word-spacing:236.752533pt;}
.ws6c{word-spacing:239.177067pt;}
.wse0{word-spacing:250.752533pt;}
.ws63{word-spacing:252.870400pt;}
.wscd{word-spacing:253.712533pt;}
.wscf{word-spacing:253.941333pt;}
.wsbb{word-spacing:256.677867pt;}
.wsce{word-spacing:259.322133pt;}
.wsd3{word-spacing:268.541867pt;}
.ws66{word-spacing:268.952000pt;}
.wse4{word-spacing:282.746667pt;}
.ws84{word-spacing:304.232533pt;}
.ws6d{word-spacing:305.588800pt;}
.wsd5{word-spacing:307.882667pt;}
.wsd4{word-spacing:307.915200pt;}
.ws71{word-spacing:309.600000pt;}
.wsd0{word-spacing:311.286400pt;}
.wsd1{word-spacing:317.238400pt;}
.wsb9{word-spacing:325.498133pt;}
.ws10a{word-spacing:334.612800pt;}
.wsa5{word-spacing:335.891925pt;}
.ws64{word-spacing:375.564267pt;}
.wsa7{word-spacing:415.799467pt;}
.wsa4{word-spacing:420.518933pt;}
.wsa6{word-spacing:422.612267pt;}
.wsa9{word-spacing:460.518400pt;}
.wsaa{word-spacing:466.599467pt;}
.wsa3{word-spacing:482.612267pt;}
.wsa8{word-spacing:508.516267pt;}
.wsab{word-spacing:508.580800pt;}
.wsa1{word-spacing:558.131200pt;}
.wsa2{word-spacing:581.280533pt;}
.wscc{word-spacing:913.406933pt;}
._6{margin-left:-8.749333pt;}
._3{margin-left:-7.386133pt;}
._4{margin-left:-5.802667pt;}
._5{margin-left:-4.716267pt;}
._9{margin-left:-3.208533pt;}
._7{margin-left:-2.230400pt;}
._0{margin-left:-1.224000pt;}
._1{width:0.935467pt;}
._2{width:2.493333pt;}
._a{width:3.626667pt;}
._b{width:4.528000pt;}
._c{width:5.861333pt;}
._e{width:6.984000pt;}
._f{width:7.977067pt;}
._4f{width:10.298667pt;}
._d{width:11.356800pt;}
._ad{width:13.828800pt;}
._50{width:20.512533pt;}
._77{width:21.887467pt;}
._8{width:32.554667pt;}
._ac{width:39.085333pt;}
._99{width:51.956267pt;}
._27{width:54.436267pt;}
._98{width:56.330667pt;}
._1d{width:69.291733pt;}
._97{width:78.536000pt;}
._aa{width:87.883200pt;}
._7a{width:89.685333pt;}
._28{width:110.378667pt;}
._a9{width:114.198400pt;}
._71{width:117.635200pt;}
._35{width:118.563733pt;}
._8b{width:121.560533pt;}
._7b{width:126.937600pt;}
._36{width:130.817067pt;}
._12{width:132.968000pt;}
._6a{width:147.778133pt;}
._81{width:149.779733pt;}
._a5{width:150.888533pt;}
._3a{width:154.121067pt;}
._29{width:157.568533pt;}
._74{width:159.354133pt;}
._a8{width:163.121600pt;}
._23{width:168.509333pt;}
._13{width:170.385067pt;}
._49{width:178.089600pt;}
._66{width:181.870400pt;}
._73{width:184.066667pt;}
._a4{width:186.581867pt;}
._67{width:187.638400pt;}
._18{width:190.018667pt;}
._5d{width:192.166400pt;}
._21{width:193.806400pt;}
._37{width:200.493333pt;}
._15{width:201.794667pt;}
._51{width:203.608533pt;}
._9b{width:206.102400pt;}
._19{width:207.014400pt;}
._24{width:208.810133pt;}
._a6{width:210.005867pt;}
._6b{width:212.162133pt;}
._89{width:214.434667pt;}
._31{width:215.465067pt;}
._46{width:217.249067pt;}
._76{width:223.054400pt;}
._1b{width:225.004800pt;}
._a3{width:229.756800pt;}
._4a{width:230.857067pt;}
._a7{width:231.830933pt;}
._40{width:234.430400pt;}
._11{width:235.440000pt;}
._32{width:237.976000pt;}
._2f{width:239.933333pt;}
._8f{width:241.164800pt;}
._2e{width:243.417600pt;}
._4c{width:246.931733pt;}
._83{width:248.234389pt;}
._2a{width:255.554667pt;}
._1e{width:258.504000pt;}
._3b{width:259.542400pt;}
._a0{width:261.253333pt;}
._2b{width:263.954667pt;}
._34{width:268.096000pt;}
._7e{width:270.506667pt;}
._6e{width:271.832533pt;}
._5b{width:275.170133pt;}
._22{width:276.204267pt;}
._25{width:278.105600pt;}
._63{width:281.182400pt;}
._38{width:282.846400pt;}
._2d{width:288.616000pt;}
._9a{width:290.176533pt;}
._2c{width:291.421333pt;}
._9e{width:293.396267pt;}
._33{width:299.394667pt;}
._4d{width:300.833067pt;}
._5e{width:302.177067pt;}
._6f{width:303.246933pt;}
._20{width:305.656533pt;}
._4e{width:310.699200pt;}
._9f{width:312.023467pt;}
._82{width:313.995733pt;}
._87{width:315.117333pt;}
._64{width:316.761067pt;}
._30{width:318.505067pt;}
._17{width:325.193067pt;}
._70{width:327.021333pt;}
._72{width:328.333333pt;}
._3e{width:334.080533pt;}
._10{width:335.696533pt;}
._6d{width:336.856533pt;}
._61{width:339.844267pt;}
._9c{width:344.523733pt;}
._62{width:346.583467pt;}
._9d{width:349.268267pt;}
._a1{width:354.678400pt;}
._a2{width:358.934933pt;}
._84{width:360.021333pt;}
._75{width:361.337600pt;}
._14{width:365.859200pt;}
._41{width:371.446400pt;}
._6c{width:373.836800pt;}
._65{width:376.372267pt;}
._59{width:381.620267pt;}
._26{width:382.546133pt;}
._16{width:390.599467pt;}
._43{width:393.854933pt;}
._60{width:395.266133pt;}
._96{width:401.670400pt;}
._42{width:402.860800pt;}
._52{width:408.500800pt;}
._54{width:412.800000pt;}
._1c{width:413.810667pt;}
._1a{width:414.839467pt;}
._69{width:417.805333pt;}
._56{width:421.162133pt;}
._45{width:426.614400pt;}
._47{width:427.937067pt;}
._7f{width:429.107200pt;}
._55{width:431.843200pt;}
._3c{width:435.361067pt;}
._3f{width:436.470400pt;}
._44{width:445.515733pt;}
._53{width:447.196800pt;}
._48{width:449.772267pt;}
._5c{width:451.227200pt;}
._5a{width:452.419733pt;}
._95{width:463.201067pt;}
._1f{width:468.338667pt;}
._3d{width:473.419733pt;}
._93{width:477.064533pt;}
._79{width:479.306667pt;}
._4b{width:500.001067pt;}
._39{width:517.409067pt;}
._85{width:523.830400pt;}
._58{width:537.333867pt;}
._5f{width:539.853333pt;}
._78{width:540.836800pt;}
._57{width:597.405867pt;}
._8c{width:695.421867pt;}
._88{width:706.362133pt;}
._ab{width:717.385600pt;}
._94{width:753.307733pt;}
._90{width:767.849067pt;}
._91{width:789.755200pt;}
._8e{width:826.458667pt;}
._8d{width:846.526400pt;}
._92{width:856.357867pt;}
._7d{width:863.035733pt;}
._86{width:879.209067pt;}
._7c{width:903.700800pt;}
._8a{width:920.388800pt;}
._80{width:952.681600pt;}
._68{width:1013.599467pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.698800pt;}
.y6c{bottom:100.514400pt;}
.y9c{bottom:100.514533pt;}
.y10{bottom:103.594533pt;}
.y2a{bottom:104.188933pt;}
.y140{bottom:105.226267pt;}
.yf{bottom:116.394533pt;}
.y13f{bottom:118.559600pt;}
.y6b{bottom:119.181067pt;}
.y9b{bottom:119.181200pt;}
.y11b{bottom:122.826267pt;}
.y29{bottom:122.855600pt;}
.ye{bottom:129.194533pt;}
.y6a{bottom:137.847733pt;}
.y9a{bottom:137.847867pt;}
.y13e{bottom:138.654000pt;}
.y28{bottom:141.522267pt;}
.yd{bottom:141.994533pt;}
.y147{bottom:142.692800pt;}
.y11a{bottom:142.920800pt;}
.y69{bottom:156.514400pt;}
.y99{bottom:156.514533pt;}
.yd4{bottom:158.384400pt;}
.y13c{bottom:158.748533pt;}
.y27{bottom:160.188933pt;}
.y119{bottom:163.015200pt;}
.y13b{bottom:172.081867pt;}
.y13d{bottom:172.455200pt;}
.y68{bottom:175.181067pt;}
.y98{bottom:175.181200pt;}
.yd3{bottom:175.984400pt;}
.y3b{bottom:176.054133pt;}
.y26{bottom:178.855600pt;}
.y118{bottom:183.109733pt;}
.y129{bottom:187.947467pt;}
.y3a{bottom:192.054133pt;}
.y139{bottom:192.176400pt;}
.ya0{bottom:193.847733pt;}
.y97{bottom:193.847867pt;}
.y25{bottom:197.522267pt;}
.y117{bottom:203.204267pt;}
.y138{bottom:205.509733pt;}
.y67{bottom:205.789733pt;}
.y13a{bottom:205.883067pt;}
.y39{bottom:208.054133pt;}
.y9f{bottom:212.514400pt;}
.y96{bottom:212.514533pt;}
.y24{bottom:216.188933pt;}
.y146{bottom:217.359467pt;}
.y116{bottom:223.298667pt;}
.y38{bottom:224.054133pt;}
.y137{bottom:225.604133pt;}
.ybb{bottom:231.181067pt;}
.y95{bottom:231.181200pt;}
.y66{bottom:234.498667pt;}
.y23{bottom:234.855600pt;}
.y37{bottom:240.054133pt;}
.y115{bottom:243.393200pt;}
.y135{bottom:245.698667pt;}
.yba{bottom:249.847733pt;}
.y94{bottom:249.847867pt;}
.y22{bottom:253.522267pt;}
.y36{bottom:256.054133pt;}
.y9e{bottom:256.313867pt;}
.y134{bottom:259.032000pt;}
.y136{bottom:259.405333pt;}
.y114{bottom:263.487733pt;}
.yb9{bottom:268.514400pt;}
.y93{bottom:268.514533pt;}
.y35{bottom:272.054133pt;}
.y21{bottom:272.188933pt;}
.y145{bottom:273.359467pt;}
.y9d{bottom:273.913867pt;}
.y132{bottom:279.126533pt;}
.y113{bottom:283.582133pt;}
.y65{bottom:287.181067pt;}
.y92{bottom:287.181200pt;}
.y34{bottom:288.054133pt;}
.y131{bottom:292.459867pt;}
.y133{bottom:292.833200pt;}
.y112{bottom:303.676667pt;}
.y33{bottom:304.054133pt;}
.y64{bottom:305.847733pt;}
.y91{bottom:305.847867pt;}
.y20{bottom:308.626133pt;}
.y130{bottom:312.554267pt;}
.y111{bottom:323.771200pt;}
.y63{bottom:324.514400pt;}
.y90{bottom:324.514533pt;}
.y144{bottom:329.721867pt;}
.y12e{bottom:332.648800pt;}
.y32{bottom:335.172267pt;}
.y62{bottom:343.181067pt;}
.y8f{bottom:343.181200pt;}
.y110{bottom:343.865600pt;}
.y12d{bottom:345.982133pt;}
.y12f{bottom:346.355467pt;}
.yd6{bottom:349.812933pt;}
.y31{bottom:351.172267pt;}
.y143{bottom:355.947600pt;}
.y61{bottom:361.847733pt;}
.y8e{bottom:361.847867pt;}
.y10f{bottom:363.960133pt;}
.y12c{bottom:366.076667pt;}
.y30{bottom:367.172267pt;}
.yd5{bottom:367.413067pt;}
.y1f{bottom:372.647067pt;}
.y60{bottom:380.514400pt;}
.y8d{bottom:380.514533pt;}
.y10e{bottom:384.054667pt;}
.y12b{bottom:393.171600pt;}
.y2f{bottom:398.290400pt;}
.y5f{bottom:399.181067pt;}
.y8c{bottom:399.181200pt;}
.y10d{bottom:404.149067pt;}
.y1e{bottom:409.144800pt;}
.y124{bottom:409.625733pt;}
.y2e{bottom:414.290400pt;}
.y5e{bottom:417.847733pt;}
.y8b{bottom:417.847867pt;}
.y10c{bottom:424.243600pt;}
.y1d{bottom:426.744800pt;}
.y123{bottom:427.225733pt;}
.y2d{bottom:430.290400pt;}
.y5d{bottom:436.514400pt;}
.y8a{bottom:436.514533pt;}
.y10b{bottom:444.338000pt;}
.y1c{bottom:444.344800pt;}
.y2c{bottom:446.290400pt;}
.y128{bottom:449.280933pt;}
.y5c{bottom:455.181067pt;}
.y89{bottom:455.181200pt;}
.y1b{bottom:461.944800pt;}
.y2b{bottom:462.290400pt;}
.y10a{bottom:462.542800pt;}
.y5b{bottom:473.847733pt;}
.y88{bottom:473.847867pt;}
.y1a{bottom:479.544800pt;}
.y109{bottom:480.747467pt;}
.yd9{bottom:487.500133pt;}
.y5a{bottom:492.514400pt;}
.y87{bottom:492.514533pt;}
.y105{bottom:496.700800pt;}
.y19{bottom:497.144800pt;}
.y122{bottom:498.590533pt;}
.yd8{bottom:505.100133pt;}
.y108{bottom:507.842533pt;}
.y59{bottom:511.181067pt;}
.y86{bottom:511.181200pt;}
.yd2{bottom:511.923867pt;}
.y18{bottom:514.744800pt;}
.y104{bottom:516.795333pt;}
.y121{bottom:518.685067pt;}
.yd7{bottom:522.700133pt;}
.y142{bottom:523.947600pt;}
.y107{bottom:525.442533pt;}
.y58{bottom:529.847733pt;}
.y85{bottom:529.847867pt;}
.yd1{bottom:532.018400pt;}
.y17{bottom:532.344800pt;}
.y103{bottom:536.889733pt;}
.y120{bottom:538.779600pt;}
.y125{bottom:542.204133pt;}
.yb8{bottom:548.035200pt;}
.y57{bottom:548.514400pt;}
.y84{bottom:548.514533pt;}
.y16{bottom:549.944800pt;}
.yd0{bottom:552.112933pt;}
.y102{bottom:556.984267pt;}
.y11f{bottom:558.874000pt;}
.y14e{bottom:567.181067pt;}
.y83{bottom:567.181200pt;}
.y15{bottom:567.544667pt;}
.yb7{bottom:568.129733pt;}
.ycf{bottom:572.207333pt;}
.y101{bottom:577.078800pt;}
.y11e{bottom:578.968533pt;}
.yed{bottom:579.793733pt;}
.y56{bottom:579.947467pt;}
.y14{bottom:585.144800pt;}
.y14d{bottom:585.847733pt;}
.y82{bottom:585.847867pt;}
.yb6{bottom:588.224267pt;}
.yce{bottom:592.301867pt;}
.y100{bottom:597.173200pt;}
.y11d{bottom:599.062933pt;}
.yec{bottom:599.888133pt;}
.y13{bottom:602.744667pt;}
.y14c{bottom:604.514400pt;}
.y81{bottom:604.514533pt;}
.yb5{bottom:608.318667pt;}
.ycd{bottom:612.396267pt;}
.yff{bottom:617.267733pt;}
.y11c{bottom:619.157467pt;}
.yeb{bottom:619.982667pt;}
.y55{bottom:623.181067pt;}
.y80{bottom:623.181200pt;}
.yb4{bottom:628.413200pt;}
.y12{bottom:630.386933pt;}
.ycc{bottom:632.490800pt;}
.yfe{bottom:637.362267pt;}
.yea{bottom:640.077200pt;}
.y54{bottom:641.847733pt;}
.y7f{bottom:641.847867pt;}
.yb3{bottom:648.507733pt;}
.ycb{bottom:652.585333pt;}
.y12a{bottom:654.614267pt;}
.yfd{bottom:657.456667pt;}
.ye9{bottom:660.171733pt;}
.y53{bottom:660.514400pt;}
.y7e{bottom:660.514533pt;}
.yb2{bottom:668.602133pt;}
.yca{bottom:672.679867pt;}
.yfc{bottom:677.551200pt;}
.y52{bottom:679.181067pt;}
.y7d{bottom:679.181200pt;}
.ye8{bottom:680.266133pt;}
.yb1{bottom:688.696667pt;}
.yc9{bottom:692.774267pt;}
.yfb{bottom:697.645733pt;}
.y51{bottom:697.847733pt;}
.y7c{bottom:697.847867pt;}
.ye7{bottom:700.360667pt;}
.yc{bottom:700.859333pt;}
.yb0{bottom:708.791200pt;}
.yc8{bottom:712.868800pt;}
.y50{bottom:716.514400pt;}
.y7b{bottom:716.514533pt;}
.yb{bottom:716.859333pt;}
.yfa{bottom:717.740133pt;}
.ye6{bottom:720.455200pt;}
.yaf{bottom:722.124533pt;}
.ya{bottom:732.859333pt;}
.yc7{bottom:732.963200pt;}
.y4f{bottom:735.181067pt;}
.y7a{bottom:735.181200pt;}
.yf9{bottom:737.834667pt;}
.ye5{bottom:740.549600pt;}
.yae{bottom:742.218933pt;}
.y9{bottom:748.859333pt;}
.yc6{bottom:753.057733pt;}
.y4e{bottom:753.847733pt;}
.y79{bottom:753.847867pt;}
.ye4{bottom:753.882933pt;}
.yf8{bottom:757.929067pt;}
.yad{bottom:762.313467pt;}
.y8{bottom:764.859333pt;}
.y14b{bottom:766.614133pt;}
.y4d{bottom:772.514400pt;}
.y78{bottom:772.514533pt;}
.yc5{bottom:773.152267pt;}
.ye3{bottom:773.977467pt;}
.yf7{bottom:778.023600pt;}
.y7{bottom:780.859333pt;}
.yac{bottom:782.408000pt;}
.y4c{bottom:791.181067pt;}
.y77{bottom:791.181200pt;}
.yc4{bottom:793.246800pt;}
.ye2{bottom:794.072000pt;}
.yab{bottom:795.741333pt;}
.yf6{bottom:798.118133pt;}
.y141{bottom:803.947600pt;}
.y4b{bottom:809.847733pt;}
.y76{bottom:809.847867pt;}
.y6{bottom:811.977600pt;}
.yc3{bottom:813.341200pt;}
.ye1{bottom:814.166400pt;}
.yaa{bottom:815.835733pt;}
.yf5{bottom:818.212533pt;}
.ye0{bottom:827.499733pt;}
.y4a{bottom:828.514400pt;}
.y75{bottom:828.514533pt;}
.y14a{bottom:833.359333pt;}
.yc2{bottom:833.435733pt;}
.ya9{bottom:835.930267pt;}
.yf4{bottom:838.307067pt;}
.y5{bottom:844.695600pt;}
.y49{bottom:847.181067pt;}
.y74{bottom:847.181200pt;}
.ydf{bottom:847.594267pt;}
.yc1{bottom:853.530133pt;}
.ya8{bottom:856.024800pt;}
.yf3{bottom:858.401600pt;}
.y48{bottom:865.847733pt;}
.y73{bottom:865.847867pt;}
.yde{bottom:867.688667pt;}
.yc0{bottom:873.624667pt;}
.y4{bottom:874.028933pt;}
.ya7{bottom:876.119200pt;}
.yf2{bottom:878.496133pt;}
.y47{bottom:884.514400pt;}
.y72{bottom:884.514533pt;}
.ydd{bottom:887.783200pt;}
.ybf{bottom:893.719200pt;}
.ya6{bottom:896.213733pt;}
.yf1{bottom:898.590533pt;}
.y46{bottom:903.181067pt;}
.y71{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ydc{bottom:907.877733pt;}
.y149{bottom:908.026000pt;}
.ybe{bottom:913.813600pt;}
.ya5{bottom:914.418400pt;}
.yf0{bottom:918.685067pt;}
.y45{bottom:921.847733pt;}
.y70{bottom:921.847867pt;}
.ydb{bottom:928.238800pt;}
.ybd{bottom:932.018400pt;}
.ya4{bottom:932.623200pt;}
.y2{bottom:932.695600pt;}
.yef{bottom:936.889867pt;}
.y44{bottom:940.514400pt;}
.y6f{bottom:940.514533pt;}
.yee{bottom:943.556533pt;}
.yda{bottom:948.333333pt;}
.ybc{bottom:950.223200pt;}
.y43{bottom:959.181067pt;}
.y106{bottom:959.181200pt;}
.ya3{bottom:959.718133pt;}
.y127{bottom:970.692667pt;}
.ya2{bottom:977.318133pt;}
.y42{bottom:977.847733pt;}
.y6e{bottom:977.847867pt;}
.y11{bottom:986.502667pt;}
.ya1{bottom:994.918133pt;}
.y41{bottom:996.514400pt;}
.y6d{bottom:996.514533pt;}
.y126{bottom:999.401600pt;}
.y148{bottom:1000.401600pt;}
.y3d{bottom:1027.213600pt;}
.y3c{bottom:1044.546933pt;}
.y40{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h12{height:33.979167pt;}
.h10{height:34.020833pt;}
.h14{height:34.229167pt;}
.h5{height:34.250000pt;}
.h13{height:34.666667pt;}
.h17{height:35.166667pt;}
.h18{height:36.660533pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.ha{height:38.507812pt;}
.h9{height:39.000000pt;}
.h8{height:42.083333pt;}
.hd{height:42.786458pt;}
.hc{height:43.333333pt;}
.h11{height:43.958333pt;}
.h19{height:44.601562pt;}
.h16{height:46.291667pt;}
.h4{height:47.065104pt;}
.hb{height:50.500000pt;}
.h15{height:60.645833pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x1f{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x4{left:266.834667pt;}
.x10{left:270.614133pt;}
.x5{left:281.952800pt;}
.x24{left:319.282800pt;}
.x3{left:352.045067pt;}
.x1e{left:369.227733pt;}
.x22{left:408.045600pt;}
.xf{left:420.948267pt;}
.x12{left:422.724400pt;}
.x1c{left:425.412667pt;}
.xd{left:427.008400pt;}
.x1d{left:429.295467pt;}
.x23{left:434.462400pt;}
.x11{left:439.411733pt;}
.x13{left:444.780800pt;}
.x15{left:446.101333pt;}
.xe{left:454.708933pt;}
.x20{left:461.443200pt;}
.x16{left:463.311333pt;}
.x21{left:465.326000pt;}
.x19{left:471.003733pt;}
.x14{left:472.481333pt;}
.x17{left:473.441467pt;}
.x1b{left:481.134000pt;}
.x18{left:485.053467pt;}
.x27{left:567.674000pt;}
.x25{left:574.309467pt;}
.xa{left:579.974800pt;}
.x28{left:588.733867pt;}
.x26{left:599.762533pt;}
.x9{left:607.855067pt;}
.x1a{left:637.727067pt;}
.x1{left:717.520267pt;}
}




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