
    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_63430ee09d695b11ca04cc33.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_86cdbe6e9a41100563edbf9f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f0706f6597ee4d45ca500229.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_ced66e368a2f294bc8f80083.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4e3721113eafe283c210bb42.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_e098b007579657727d580a33.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_5b5ba2535f9932435e620cdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_2176a55481e311dfd622b9d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_6c9b8e47fd108d65c846b7cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_7f0da574e6dd106bb9d13bd5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v5{vertical-align:22.594800px;}
.v4{vertical-align:28.221000px;}
.v1{vertical-align:30.381600px;}
.ls5a{letter-spacing:-1.554000px;}
.ls4{letter-spacing:-0.780000px;}
.ls46{letter-spacing:-0.300000px;}
.ls4e{letter-spacing:-0.240000px;}
.ls45{letter-spacing:-0.180000px;}
.ls77{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.ls78{letter-spacing:-0.096000px;}
.ls30{letter-spacing:-0.060000px;}
.ls76{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005076px;}
.ls0{letter-spacing:0.005676px;}
.ls3e{letter-spacing:0.022200px;}
.ls53{letter-spacing:0.048000px;}
.ls3c{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.096000px;}
.ls28{letter-spacing:0.120000px;}
.ls57{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.180000px;}
.ls64{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.240000px;}
.ls59{letter-spacing:0.288000px;}
.ls37{letter-spacing:0.300000px;}
.ls52{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls73{letter-spacing:0.384000px;}
.ls3b{letter-spacing:0.420000px;}
.ls72{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.464400px;}
.lsa{letter-spacing:0.480000px;}
.ls71{letter-spacing:0.528000px;}
.ls13{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.600000px;}
.ls3a{letter-spacing:0.628800px;}
.lsd{letter-spacing:0.660000px;}
.ls6a{letter-spacing:0.672000px;}
.ls19{letter-spacing:0.720000px;}
.ls68{letter-spacing:0.768000px;}
.ls24{letter-spacing:0.780000px;}
.lsf{letter-spacing:0.840000px;}
.ls6c{letter-spacing:0.864000px;}
.ls38{letter-spacing:0.900000px;}
.ls66{letter-spacing:0.912000px;}
.ls33{letter-spacing:0.960000px;}
.ls2e{letter-spacing:1.020000px;}
.ls27{letter-spacing:1.080000px;}
.ls69{letter-spacing:1.104000px;}
.ls8{letter-spacing:1.140000px;}
.ls2c{letter-spacing:1.200000px;}
.ls1d{letter-spacing:1.260000px;}
.ls74{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.320000px;}
.ls6d{letter-spacing:1.344000px;}
.ls26{letter-spacing:1.380000px;}
.ls6b{letter-spacing:1.392000px;}
.ls4a{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.500000px;}
.ls29{letter-spacing:1.560000px;}
.ls11{letter-spacing:1.620000px;}
.ls20{letter-spacing:1.680000px;}
.ls10{letter-spacing:1.740000px;}
.ls75{letter-spacing:1.776000px;}
.ls32{letter-spacing:1.800000px;}
.ls16{letter-spacing:1.860000px;}
.ls25{letter-spacing:1.920000px;}
.ls6f{letter-spacing:1.968000px;}
.lsb{letter-spacing:1.980000px;}
.ls1c{letter-spacing:2.040000px;}
.ls2d{letter-spacing:2.100000px;}
.ls1f{letter-spacing:2.160000px;}
.ls5b{letter-spacing:2.220000px;}
.ls1b{letter-spacing:2.280000px;}
.lsc{letter-spacing:2.340000px;}
.ls36{letter-spacing:2.400000px;}
.ls70{letter-spacing:2.448000px;}
.ls21{letter-spacing:2.460000px;}
.ls23{letter-spacing:2.520000px;}
.ls15{letter-spacing:2.580000px;}
.ls12{letter-spacing:2.640000px;}
.ls2f{letter-spacing:2.700000px;}
.ls14{letter-spacing:2.760000px;}
.ls3f{letter-spacing:2.820000px;}
.ls4b{letter-spacing:2.880000px;}
.ls67{letter-spacing:2.928000px;}
.ls55{letter-spacing:2.940000px;}
.ls6e{letter-spacing:2.976000px;}
.ls1e{letter-spacing:3.000000px;}
.ls43{letter-spacing:3.060000px;}
.ls2b{letter-spacing:3.120000px;}
.ls42{letter-spacing:3.180000px;}
.ls6{letter-spacing:3.240000px;}
.ls54{letter-spacing:3.300000px;}
.ls4c{letter-spacing:3.360000px;}
.ls47{letter-spacing:3.420000px;}
.ls50{letter-spacing:3.480000px;}
.ls48{letter-spacing:3.540000px;}
.ls18{letter-spacing:3.600000px;}
.ls51{letter-spacing:3.720000px;}
.ls62{letter-spacing:3.780000px;}
.ls2a{letter-spacing:3.840000px;}
.ls39{letter-spacing:3.900000px;}
.ls61{letter-spacing:4.020000px;}
.ls65{letter-spacing:4.176000px;}
.ls41{letter-spacing:4.200000px;}
.ls40{letter-spacing:4.260000px;}
.ls31{letter-spacing:4.380000px;}
.ls5c{letter-spacing:4.440000px;}
.ls17{letter-spacing:4.740000px;}
.ls49{letter-spacing:4.920000px;}
.ls44{letter-spacing:5.160000px;}
.ls5d{letter-spacing:5.940000px;}
.ls5f{letter-spacing:6.120000px;}
.ls35{letter-spacing:6.300000px;}
.ls4f{letter-spacing:6.420000px;}
.ls60{letter-spacing:6.780000px;}
.ls63{letter-spacing:7.560000px;}
.ls5e{letter-spacing:8.340000px;}
.ls58{letter-spacing:119.952000px;}
.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;}
}
.ws5c{word-spacing:-20.160000px;}
.ws1{word-spacing:-17.514000px;}
.ws57{word-spacing:-16.920000px;}
.ws3{word-spacing:-16.680000px;}
.ws4{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.344000px;}
.ws62{word-spacing:-12.768000px;}
.ws63{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.510000px;}
.ws59{word-spacing:-12.000000px;}
.ws64{word-spacing:-11.952000px;}
.ws2{word-spacing:-10.210662px;}
.ws58{word-spacing:-6.996000px;}
.ws7{word-spacing:-2.886000px;}
.ws66{word-spacing:-2.640000px;}
.ws10{word-spacing:-2.220000px;}
.ws79{word-spacing:-1.680000px;}
.ws25{word-spacing:-1.500000px;}
.ws69{word-spacing:-1.440000px;}
.ws74{word-spacing:-1.344000px;}
.ws2e{word-spacing:-1.200000px;}
.ws8{word-spacing:-1.134000px;}
.ws12{word-spacing:-1.080000px;}
.ws5b{word-spacing:-0.900000px;}
.ws6e{word-spacing:-0.864000px;}
.ws7b{word-spacing:-0.528000px;}
.ws18{word-spacing:-0.480000px;}
.ws7c{word-spacing:-0.432000px;}
.ws2c{word-spacing:-0.420000px;}
.ws17{word-spacing:-0.360000px;}
.ws38{word-spacing:-0.300000px;}
.ws23{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.180000px;}
.ws24{word-spacing:-0.120000px;}
.ws42{word-spacing:-0.096000px;}
.ws1d{word-spacing:-0.060000px;}
.ws43{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws3a{word-spacing:0.048000px;}
.ws28{word-spacing:0.060000px;}
.ws6d{word-spacing:0.096000px;}
.ws9{word-spacing:0.120000px;}
.ws1a{word-spacing:0.180000px;}
.ws3d{word-spacing:0.192000px;}
.ws29{word-spacing:0.240000px;}
.ws76{word-spacing:0.288000px;}
.ws2b{word-spacing:0.360000px;}
.ws27{word-spacing:0.420000px;}
.ws71{word-spacing:0.480000px;}
.ws3b{word-spacing:0.528000px;}
.ws40{word-spacing:0.600000px;}
.ws39{word-spacing:0.660000px;}
.ws70{word-spacing:0.672000px;}
.ws16{word-spacing:0.720000px;}
.wsf{word-spacing:0.780000px;}
.ws6b{word-spacing:0.816000px;}
.ws72{word-spacing:0.864000px;}
.ws4c{word-spacing:1.008000px;}
.ws3f{word-spacing:1.080000px;}
.wse{word-spacing:1.140000px;}
.ws5f{word-spacing:1.200000px;}
.ws31{word-spacing:1.248000px;}
.ws3e{word-spacing:1.320000px;}
.ws56{word-spacing:1.554000px;}
.ws21{word-spacing:1.560000px;}
.ws6c{word-spacing:1.584000px;}
.ws7a{word-spacing:1.632000px;}
.ws13{word-spacing:1.680000px;}
.ws2f{word-spacing:1.920000px;}
.ws2d{word-spacing:1.980000px;}
.ws34{word-spacing:2.160000px;}
.ws20{word-spacing:2.220000px;}
.ws32{word-spacing:2.352000px;}
.ws41{word-spacing:2.400000px;}
.ws73{word-spacing:2.448000px;}
.ws75{word-spacing:2.496000px;}
.ws5e{word-spacing:2.520000px;}
.ws1c{word-spacing:2.580000px;}
.ws61{word-spacing:2.640000px;}
.ws77{word-spacing:2.832000px;}
.ws22{word-spacing:2.940000px;}
.ws35{word-spacing:3.000000px;}
.ws78{word-spacing:3.024000px;}
.ws6f{word-spacing:3.072000px;}
.ws6a{word-spacing:3.120000px;}
.ws1f{word-spacing:3.180000px;}
.ws44{word-spacing:3.240000px;}
.wsd{word-spacing:3.360000px;}
.ws4d{word-spacing:3.408000px;}
.ws30{word-spacing:3.420000px;}
.ws68{word-spacing:3.504000px;}
.ws3c{word-spacing:3.600000px;}
.ws7d{word-spacing:3.648000px;}
.ws2a{word-spacing:3.720000px;}
.ws5d{word-spacing:3.780000px;}
.ws4b{word-spacing:3.840000px;}
.ws46{word-spacing:3.936000px;}
.ws33{word-spacing:3.984000px;}
.ws45{word-spacing:4.020000px;}
.wsc{word-spacing:4.200000px;}
.ws15{word-spacing:4.320000px;}
.ws19{word-spacing:4.380000px;}
.ws11{word-spacing:4.500000px;}
.ws26{word-spacing:4.560000px;}
.ws37{word-spacing:4.620000px;}
.ws1b{word-spacing:4.680000px;}
.ws36{word-spacing:4.740000px;}
.ws14{word-spacing:4.800000px;}
.ws67{word-spacing:4.860000px;}
.wsb{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.ws65{word-spacing:5.460000px;}
.ws60{word-spacing:5.520000px;}
.ws47{word-spacing:22.764000px;}
.ws48{word-spacing:32.718000px;}
.ws52{word-spacing:37.128000px;}
.ws55{word-spacing:58.002000px;}
.ws53{word-spacing:68.502000px;}
.ws4e{word-spacing:78.246000px;}
.ws50{word-spacing:86.394000px;}
.ws4f{word-spacing:103.488000px;}
.ws54{word-spacing:111.468000px;}
.ws51{word-spacing:118.776000px;}
.ws4a{word-spacing:119.952000px;}
.ws49{word-spacing:120.750000px;}
.ws5a{word-spacing:329.184000px;}
._a{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._3{margin-left:-9.368400px;}
._8{margin-left:-6.930000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-4.089000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.212600px;}
._4{width:1.569000px;}
._7{width:3.096000px;}
._6{width:4.380000px;}
._9{width:6.180000px;}
._b{width:7.212600px;}
._27{width:24.318000px;}
._1d{width:27.426000px;}
._2e{width:41.244000px;}
._3f{width:53.928000px;}
._1b{width:58.884000px;}
._32{width:62.832000px;}
._3e{width:68.922000px;}
._1e{width:73.290000px;}
._40{width:81.438000px;}
._38{width:85.512000px;}
._28{width:86.772000px;}
._25{width:88.326000px;}
._3a{width:90.804000px;}
._2d{width:96.096000px;}
._31{width:97.230000px;}
._35{width:103.362000px;}
._44{width:108.276000px;}
._43{width:110.292000px;}
._22{width:113.988000px;}
._45{width:117.054000px;}
._21{width:119.700000px;}
._2c{width:123.186000px;}
._42{width:124.276800px;}
._26{width:125.454000px;}
._23{width:127.260000px;}
._24{width:130.200000px;}
._2f{width:132.006000px;}
._39{width:133.035000px;}
._2a{width:135.282000px;}
._37{width:138.432000px;}
._1f{width:139.818000px;}
._41{width:140.994000px;}
._48{width:143.514000px;}
._2b{width:147.588000px;}
._3b{width:149.898000px;}
._30{width:152.040000px;}
._33{width:153.384000px;}
._58{width:158.304000px;}
._4c{width:160.518000px;}
._5a{width:162.096000px;}
._51{width:163.752000px;}
._3d{width:168.294000px;}
._46{width:169.428000px;}
._1a{width:172.452000px;}
._29{width:176.484000px;}
._53{width:188.778000px;}
._36{width:195.552000px;}
._5d{width:197.388000px;}
._5e{width:199.776000px;}
._59{width:200.778000px;}
._4b{width:204.048000px;}
._4d{width:209.856000px;}
._54{width:211.674000px;}
._5b{width:213.360000px;}
._34{width:218.568000px;}
._55{width:220.134000px;}
._4e{width:221.856000px;}
._56{width:224.016000px;}
._4f{width:230.268000px;}
._5f{width:234.834600px;}
._47{width:241.080000px;}
._20{width:242.634000px;}
._5c{width:244.032000px;}
._3c{width:248.514000px;}
._49{width:255.408000px;}
._52{width:264.810000px;}
._57{width:268.032000px;}
._50{width:283.824000px;}
._60{width:290.160000px;}
._e{width:323.190000px;}
._1c{width:340.032000px;}
._61{width:375.216000px;}
._19{width:391.008000px;}
._18{width:403.008000px;}
._14{width:415.008000px;}
._f{width:421.824000px;}
._16{width:427.008000px;}
._11{width:445.008000px;}
._13{width:475.008000px;}
._d{width:492.096000px;}
._17{width:651.360000px;}
._10{width:657.120000px;}
._12{width:755.760000px;}
._15{width:783.744000px;}
._4a{width:1011.984000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs5{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2c{bottom:47.777250px;}
.y10e{bottom:82.893750px;}
.ye2{bottom:83.011650px;}
.y19b{bottom:83.481900px;}
.y101{bottom:83.614350px;}
.ya9{bottom:83.770350px;}
.y61{bottom:83.772600px;}
.y1ba{bottom:83.785350px;}
.y72{bottom:83.912100px;}
.ycc{bottom:83.920350px;}
.y4{bottom:88.026750px;}
.y130{bottom:91.532400px;}
.y10d{bottom:98.637750px;}
.ye1{bottom:98.755650px;}
.y100{bottom:99.358350px;}
.y1b9{bottom:101.380350px;}
.ya8{bottom:101.770350px;}
.y60{bottom:101.772600px;}
.ycb{bottom:101.920350px;}
.y71{bottom:101.922600px;}
.y3{bottom:103.023000px;}
.y12f{bottom:104.132400px;}
.y19a{bottom:108.993900px;}
.y10c{bottom:114.381750px;}
.ye0{bottom:114.499650px;}
.yff{bottom:115.102350px;}
.y12e{bottom:116.732400px;}
.ya7{bottom:119.770350px;}
.y5f{bottom:119.772600px;}
.yca{bottom:119.920350px;}
.y70{bottom:119.922600px;}
.y199{bottom:125.241900px;}
.y12d{bottom:129.332400px;}
.y10b{bottom:130.125750px;}
.ydf{bottom:130.243650px;}
.yfe{bottom:130.846350px;}
.y1e5{bottom:131.121900px;}
.ya6{bottom:137.770350px;}
.y5e{bottom:137.772600px;}
.y1b8{bottom:137.785350px;}
.yc9{bottom:137.920350px;}
.y6f{bottom:137.922600px;}
.y222{bottom:140.263500px;}
.y198{bottom:141.489900px;}
.y10a{bottom:145.869750px;}
.y1e4{bottom:146.121900px;}
.yfd{bottom:146.590350px;}
.y12c{bottom:146.636400px;}
.y172{bottom:149.218950px;}
.y221{bottom:155.263500px;}
.y1b7{bottom:155.380350px;}
.ya5{bottom:155.770350px;}
.y5d{bottom:155.772600px;}
.yc8{bottom:155.920350px;}
.y6e{bottom:155.922600px;}
.y197{bottom:157.737900px;}
.y12b{bottom:159.236400px;}
.y1e3{bottom:161.121900px;}
.yfc{bottom:162.334350px;}
.y171{bottom:164.962950px;}
.y220{bottom:170.263500px;}
.ya4{bottom:173.770350px;}
.y5c{bottom:173.772600px;}
.yc7{bottom:173.920350px;}
.y6d{bottom:173.922600px;}
.y196{bottom:173.985900px;}
.y1e2{bottom:176.121900px;}
.y12a{bottom:176.540400px;}
.yfb{bottom:178.078350px;}
.y170{bottom:180.706950px;}
.y21f{bottom:185.263500px;}
.y195{bottom:190.233900px;}
.y1e1{bottom:191.121900px;}
.ya3{bottom:191.770350px;}
.y5b{bottom:191.772600px;}
.y1b6{bottom:191.785350px;}
.yc6{bottom:191.920350px;}
.y6c{bottom:191.922600px;}
.y16f{bottom:196.450950px;}
.y21e{bottom:200.263500px;}
.y129{bottom:204.050400px;}
.y1e0{bottom:206.121900px;}
.y194{bottom:206.481900px;}
.ya2{bottom:209.770350px;}
.y5a{bottom:209.772600px;}
.y1b5{bottom:209.785350px;}
.yc5{bottom:209.920350px;}
.y6b{bottom:209.922600px;}
.y16e{bottom:212.194950px;}
.y21d{bottom:215.263500px;}
.y128{bottom:216.650400px;}
.y1df{bottom:221.121900px;}
.y193{bottom:222.729900px;}
.ya1{bottom:227.770350px;}
.y59{bottom:227.772600px;}
.y1b4{bottom:227.785350px;}
.yc4{bottom:227.920350px;}
.y6a{bottom:227.922600px;}
.y127{bottom:229.250400px;}
.y21c{bottom:230.263500px;}
.y1de{bottom:236.121900px;}
.y16d{bottom:237.444450px;}
.y192{bottom:238.977900px;}
.y126{bottom:241.850400px;}
.y21b{bottom:245.263500px;}
.ya0{bottom:245.770350px;}
.y58{bottom:245.772600px;}
.y1b3{bottom:245.785350px;}
.yc3{bottom:245.920350px;}
.y69{bottom:245.922600px;}
.y1dd{bottom:251.121900px;}
.y29{bottom:252.064200px;}
.y16c{bottom:254.748450px;}
.y191{bottom:255.225900px;}
.y125{bottom:256.760400px;}
.y21a{bottom:260.263500px;}
.y9f{bottom:263.770350px;}
.y57{bottom:263.772600px;}
.y1b2{bottom:263.785350px;}
.yc2{bottom:263.920350px;}
.y68{bottom:263.922600px;}
.y1dc{bottom:266.121900px;}
.y16b{bottom:267.348450px;}
.y124{bottom:269.360400px;}
.y190{bottom:271.473900px;}
.y219{bottom:275.263500px;}
.y28{bottom:279.409200px;}
.y16a{bottom:279.948450px;}
.y1db{bottom:281.121900px;}
.y1b1{bottom:281.380350px;}
.y9e{bottom:281.770350px;}
.y56{bottom:281.772600px;}
.yc1{bottom:281.920350px;}
.y67{bottom:281.922600px;}
.y123{bottom:281.960400px;}
.y18f{bottom:287.721900px;}
.y218{bottom:290.263500px;}
.y169{bottom:292.548450px;}
.y1da{bottom:296.121900px;}
.y27{bottom:297.409200px;}
.y9d{bottom:299.770350px;}
.y55{bottom:299.772600px;}
.yc0{bottom:299.920350px;}
.y18e{bottom:304.013400px;}
.y168{bottom:305.148450px;}
.y217{bottom:305.263500px;}
.y1d9{bottom:311.121900px;}
.y122{bottom:313.105050px;}
.y26{bottom:315.409200px;}
.y66{bottom:317.517600px;}
.y167{bottom:317.748450px;}
.y9c{bottom:317.770350px;}
.y54{bottom:317.772600px;}
.y1b0{bottom:317.785350px;}
.ybf{bottom:317.920350px;}
.y18d{bottom:320.261400px;}
.y216{bottom:320.263500px;}
.y1d8{bottom:326.121900px;}
.y166{bottom:330.348450px;}
.y121{bottom:332.605050px;}
.y25{bottom:333.409200px;}
.y215{bottom:335.263500px;}
.y9b{bottom:335.770350px;}
.y53{bottom:335.772600px;}
.y1af{bottom:335.785350px;}
.ybe{bottom:335.920350px;}
.y18c{bottom:336.509400px;}
.y1d7{bottom:341.121900px;}
.y165{bottom:347.652450px;}
.y214{bottom:350.263500px;}
.y24{bottom:351.409200px;}
.y120{bottom:352.105050px;}
.y18b{bottom:352.757400px;}
.y9a{bottom:353.770350px;}
.y52{bottom:353.772600px;}
.y1ae{bottom:353.785350px;}
.ybd{bottom:353.920350px;}
.y1d6{bottom:356.121900px;}
.y164{bottom:360.252450px;}
.y213{bottom:365.263500px;}
.y18a{bottom:369.005400px;}
.y23{bottom:369.409200px;}
.y1d5{bottom:371.121900px;}
.y11f{bottom:371.605050px;}
.y99{bottom:371.770350px;}
.y51{bottom:371.772600px;}
.y1ad{bottom:371.785350px;}
.ybc{bottom:371.920350px;}
.y163{bottom:372.852450px;}
.y212{bottom:380.263500px;}
.y189{bottom:385.253400px;}
.y162{bottom:385.452450px;}
.y1d4{bottom:386.121900px;}
.y22{bottom:387.409200px;}
.y1ac{bottom:389.380350px;}
.y98{bottom:389.770350px;}
.y50{bottom:389.772600px;}
.ybb{bottom:389.920350px;}
.y11e{bottom:391.105050px;}
.y211{bottom:395.263500px;}
.y161{bottom:398.052450px;}
.y1d3{bottom:401.121900px;}
.y188{bottom:401.501400px;}
.y21{bottom:405.409200px;}
.y97{bottom:407.770350px;}
.y4f{bottom:407.772600px;}
.yba{bottom:407.920350px;}
.y210{bottom:410.263500px;}
.y11d{bottom:410.605050px;}
.y160{bottom:410.652450px;}
.y1d2{bottom:416.121900px;}
.y187{bottom:417.749400px;}
.y15f{bottom:423.252450px;}
.y20{bottom:423.409200px;}
.y20f{bottom:425.263500px;}
.y96{bottom:425.770350px;}
.y4e{bottom:425.772600px;}
.y1ab{bottom:425.785350px;}
.yb9{bottom:425.920350px;}
.y1d1{bottom:431.121900px;}
.y186{bottom:433.997400px;}
.y20e{bottom:440.263500px;}
.y15e{bottom:440.556450px;}
.y1f{bottom:441.409200px;}
.y95{bottom:443.770350px;}
.y4d{bottom:443.772600px;}
.y1aa{bottom:443.785350px;}
.yb8{bottom:443.920350px;}
.y1d0{bottom:446.121900px;}
.y185{bottom:450.245400px;}
.y20d{bottom:455.263500px;}
.y15d{bottom:457.853700px;}
.y1e{bottom:459.409200px;}
.y1cf{bottom:461.121900px;}
.y94{bottom:461.770350px;}
.y4c{bottom:461.772600px;}
.yb7{bottom:461.920350px;}
.y11c{bottom:466.221750px;}
.y184{bottom:466.493400px;}
.y20c{bottom:470.263500px;}
.y15c{bottom:470.453700px;}
.y1ce{bottom:476.121900px;}
.y1d{bottom:477.409200px;}
.y1a9{bottom:479.380350px;}
.y93{bottom:479.770350px;}
.y4b{bottom:479.772600px;}
.yb6{bottom:479.920350px;}
.y11b{bottom:482.469750px;}
.y183{bottom:482.993400px;}
.y15b{bottom:483.053700px;}
.y20b{bottom:485.263500px;}
.y1cd{bottom:491.121900px;}
.y1c{bottom:495.409200px;}
.y15a{bottom:495.653700px;}
.y92{bottom:497.770350px;}
.y4a{bottom:497.772600px;}
.yb5{bottom:497.920350px;}
.y11a{bottom:498.717750px;}
.y182{bottom:499.493400px;}
.y20a{bottom:500.263500px;}
.y1cc{bottom:506.121900px;}
.y159{bottom:508.253700px;}
.y1b{bottom:513.409200px;}
.y119{bottom:514.965750px;}
.y209{bottom:515.263500px;}
.yde{bottom:515.515350px;}
.y1a8{bottom:515.635350px;}
.y91{bottom:515.770350px;}
.y49{bottom:515.772600px;}
.yb4{bottom:515.920350px;}
.y1cb{bottom:521.121900px;}
.y158{bottom:525.557700px;}
.y181{bottom:528.497400px;}
.y208{bottom:530.263500px;}
.y118{bottom:531.213750px;}
.y1a{bottom:531.409200px;}
.y1a7{bottom:533.635350px;}
.y90{bottom:533.770350px;}
.y48{bottom:533.772600px;}
.yb3{bottom:533.920350px;}
.y1ca{bottom:536.121900px;}
.y157{bottom:538.157700px;}
.y180{bottom:544.997400px;}
.y17e{bottom:545.001300px;}
.y207{bottom:545.263500px;}
.y19{bottom:549.409200px;}
.y1c9{bottom:551.121900px;}
.ydd{bottom:551.380350px;}
.y1a6{bottom:551.635350px;}
.y8f{bottom:551.770350px;}
.y47{bottom:551.772600px;}
.yb2{bottom:551.920350px;}
.y156{bottom:555.461700px;}
.y206{bottom:560.263500px;}
.y17f{bottom:561.497400px;}
.y17d{bottom:561.501300px;}
.y117{bottom:562.725750px;}
.y1c8{bottom:566.121900px;}
.y18{bottom:567.409200px;}
.y155{bottom:568.061700px;}
.y1a5{bottom:569.635350px;}
.y8e{bottom:569.770350px;}
.y46{bottom:569.772600px;}
.yb1{bottom:569.920350px;}
.y109{bottom:569.935350px;}
.y205{bottom:575.263500px;}
.y154{bottom:580.661700px;}
.y1c7{bottom:581.121900px;}
.y17{bottom:585.409200px;}
.y1a4{bottom:587.635350px;}
.y8d{bottom:587.770350px;}
.y45{bottom:587.772600px;}
.yb0{bottom:587.920350px;}
.y108{bottom:587.935350px;}
.y204{bottom:590.263500px;}
.y17c{bottom:590.505300px;}
.y1c6{bottom:596.121900px;}
.y116{bottom:597.620850px;}
.y153{bottom:597.965700px;}
.y203{bottom:605.263500px;}
.y103{bottom:605.515350px;}
.y1a3{bottom:605.635350px;}
.y8c{bottom:605.770350px;}
.y44{bottom:605.772600px;}
.yaf{bottom:605.920350px;}
.y107{bottom:605.935350px;}
.y152{bottom:610.565700px;}
.y1c5{bottom:611.121900px;}
.y115{bottom:617.120850px;}
.y202{bottom:620.263500px;}
.y17b{bottom:622.900350px;}
.y1a2{bottom:623.635350px;}
.y8b{bottom:623.770350px;}
.y43{bottom:623.772600px;}
.yae{bottom:623.920350px;}
.y106{bottom:623.935350px;}
.y1c4{bottom:626.121900px;}
.y151{bottom:627.869700px;}
.y16{bottom:630.567300px;}
.y201{bottom:635.263500px;}
.y114{bottom:636.620850px;}
.y150{bottom:640.469700px;}
.y1c3{bottom:641.121900px;}
.y1a1{bottom:641.635350px;}
.y8a{bottom:641.770350px;}
.y42{bottom:641.772600px;}
.yfa{bottom:641.785350px;}
.yad{bottom:641.920350px;}
.y105{bottom:641.935350px;}
.y17a{bottom:642.400350px;}
.y15{bottom:643.018050px;}
.y200{bottom:650.263500px;}
.y113{bottom:656.120850px;}
.y1c2{bottom:656.121900px;}
.y14f{bottom:657.773700px;}
.y1a0{bottom:659.635350px;}
.y89{bottom:659.770350px;}
.y41{bottom:659.772600px;}
.yf9{bottom:659.785350px;}
.yac{bottom:659.920350px;}
.y179{bottom:661.900350px;}
.y1ff{bottom:665.263500px;}
.y1c1{bottom:671.121900px;}
.y14{bottom:674.733600px;}
.y14e{bottom:675.077700px;}
.y112{bottom:675.620850px;}
.y104{bottom:677.530350px;}
.y19f{bottom:677.635350px;}
.y88{bottom:677.770350px;}
.y40{bottom:677.772600px;}
.yf8{bottom:677.785350px;}
.yab{bottom:677.920350px;}
.y1fe{bottom:680.263500px;}
.y1c0{bottom:686.121900px;}
.y14d{bottom:687.677700px;}
.y13{bottom:693.658800px;}
.y111{bottom:695.120850px;}
.y1fd{bottom:695.263500px;}
.y19e{bottom:695.635350px;}
.y87{bottom:695.770350px;}
.y3f{bottom:695.772600px;}
.yf7{bottom:695.785350px;}
.ydc{bottom:695.920350px;}
.y1bf{bottom:701.121900px;}
.y12{bottom:701.733600px;}
.y14c{bottom:704.981700px;}
.y1fc{bottom:710.265900px;}
.yaa{bottom:713.515350px;}
.y178{bottom:713.635350px;}
.y86{bottom:713.770350px;}
.y3e{bottom:713.772600px;}
.yf6{bottom:713.785350px;}
.ydb{bottom:713.920350px;}
.y110{bottom:714.620850px;}
.y1be{bottom:716.121900px;}
.y14b{bottom:717.581700px;}
.y11{bottom:720.658800px;}
.y1fb{bottom:725.265900px;}
.y10{bottom:728.733600px;}
.y14a{bottom:730.181700px;}
.y19d{bottom:731.230350px;}
.y177{bottom:731.635350px;}
.y85{bottom:731.770350px;}
.y3d{bottom:731.772600px;}
.yf5{bottom:731.785350px;}
.yda{bottom:731.920350px;}
.y1fa{bottom:740.265900px;}
.y149{bottom:742.781700px;}
.yf{bottom:747.658800px;}
.y1bd{bottom:749.230350px;}
.y176{bottom:749.635350px;}
.y84{bottom:749.770350px;}
.y3c{bottom:749.772600px;}
.yf4{bottom:749.785350px;}
.yd9{bottom:749.920350px;}
.y1f9{bottom:755.265900px;}
.y148{bottom:755.381700px;}
.y137{bottom:758.933250px;}
.ye{bottom:761.158800px;}
.y175{bottom:767.635350px;}
.y83{bottom:767.770350px;}
.y3b{bottom:767.772600px;}
.yf3{bottom:767.785350px;}
.yd8{bottom:767.920350px;}
.yd{bottom:769.233600px;}
.y1f8{bottom:770.265900px;}
.y147{bottom:772.678050px;}
.y136{bottom:774.677250px;}
.yc{bottom:782.733600px;}
.y1f7{bottom:785.265900px;}
.y146{bottom:785.278050px;}
.y174{bottom:785.635350px;}
.y82{bottom:785.770350px;}
.y3a{bottom:785.772600px;}
.yf2{bottom:785.785350px;}
.yd7{bottom:785.920350px;}
.y135{bottom:790.421250px;}
.y1f6{bottom:800.265900px;}
.yb{bottom:801.658950px;}
.y145{bottom:802.582050px;}
.y81{bottom:803.770350px;}
.y39{bottom:803.772600px;}
.yf1{bottom:803.785350px;}
.yd6{bottom:803.920350px;}
.y134{bottom:806.165250px;}
.y1f5{bottom:815.265900px;}
.y144{bottom:819.886050px;}
.y173{bottom:821.230350px;}
.y80{bottom:821.770350px;}
.y38{bottom:821.772600px;}
.yf0{bottom:821.785350px;}
.y133{bottom:821.909250px;}
.yd5{bottom:821.920350px;}
.y1f4{bottom:830.265900px;}
.ya{bottom:830.386200px;}
.y143{bottom:837.190050px;}
.y132{bottom:837.653250px;}
.y7f{bottom:839.770350px;}
.y37{bottom:839.772600px;}
.yef{bottom:839.785350px;}
.yd4{bottom:839.920350px;}
.y1f3{bottom:845.265900px;}
.y9{bottom:851.380950px;}
.y131{bottom:853.397250px;}
.y142{bottom:854.494050px;}
.y7e{bottom:857.770350px;}
.y36{bottom:857.772600px;}
.yee{bottom:857.785350px;}
.yd3{bottom:857.920350px;}
.y1f2{bottom:860.265900px;}
.y141{bottom:867.094050px;}
.y1f1{bottom:875.265900px;}
.y65{bottom:875.367600px;}
.y7d{bottom:875.770350px;}
.y35{bottom:875.772600px;}
.yed{bottom:875.785350px;}
.yd2{bottom:875.920350px;}
.y140{bottom:884.398050px;}
.y1f0{bottom:890.265900px;}
.y7c{bottom:893.770350px;}
.y34{bottom:893.772600px;}
.yec{bottom:893.785350px;}
.yd1{bottom:893.920350px;}
.y8{bottom:897.543600px;}
.y13f{bottom:901.702050px;}
.y1ef{bottom:905.265900px;}
.y64{bottom:911.232600px;}
.y1bc{bottom:911.365350px;}
.y7b{bottom:911.770350px;}
.y33{bottom:911.772600px;}
.yeb{bottom:911.785350px;}
.yd0{bottom:911.920350px;}
.y1ee{bottom:920.265900px;}
.y13e{bottom:928.834050px;}
.y7a{bottom:929.770350px;}
.y32{bottom:929.772600px;}
.yea{bottom:929.785350px;}
.ycf{bottom:929.920350px;}
.y7{bottom:934.004400px;}
.y1ed{bottom:935.265900px;}
.y13d{bottom:941.434050px;}
.y79{bottom:947.770350px;}
.y31{bottom:947.772600px;}
.ye9{bottom:947.785350px;}
.yce{bottom:947.920350px;}
.y1ec{bottom:950.265900px;}
.y13c{bottom:954.034050px;}
.y1eb{bottom:965.265900px;}
.y78{bottom:965.770350px;}
.y30{bottom:965.772600px;}
.ye8{bottom:965.785350px;}
.y13b{bottom:966.634050px;}
.y6{bottom:970.465200px;}
.y1ea{bottom:980.265900px;}
.y13a{bottom:981.544050px;}
.y1bb{bottom:983.365350px;}
.ycd{bottom:983.515350px;}
.y77{bottom:983.770350px;}
.y2f{bottom:983.772600px;}
.ye7{bottom:983.785350px;}
.y139{bottom:994.144050px;}
.y1e9{bottom:995.265900px;}
.y76{bottom:1001.770350px;}
.y2e{bottom:1001.772600px;}
.ye6{bottom:1001.785350px;}
.y138{bottom:1006.744050px;}
.y5{bottom:1006.926000px;}
.y1e8{bottom:1010.265900px;}
.y75{bottom:1019.770350px;}
.y63{bottom:1019.772600px;}
.ye5{bottom:1019.785350px;}
.y1e7{bottom:1025.265900px;}
.y2d{bottom:1037.367600px;}
.y74{bottom:1037.770350px;}
.y62{bottom:1037.772600px;}
.ye4{bottom:1037.785350px;}
.y1e6{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y73{bottom:1132.418700px;}
.y223{bottom:1132.423500px;}
.ye3{bottom:1132.435650px;}
.y10f{bottom:1132.437750px;}
.y102{bottom:1132.450350px;}
.y19c{bottom:1132.461900px;}
.y2b{bottom:1136.089500px;}
.y2a{bottom:1150.492500px;}
.h9{height:19.125417px;}
.ha{height:28.412109px;}
.h14{height:29.182617px;}
.h16{height:29.209617px;}
.h15{height:29.213217px;}
.h2{height:30.597656px;}
.h4{height:32.783203px;}
.h5{height:32.805176px;}
.h13{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h10{height:41.689453px;}
.h17{height:42.038761px;}
.h18{height:42.054361px;}
.hd{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.h11{height:52.525951px;}
.h12{height:52.567951px;}
.h3{height:56.786133px;}
.h8{height:57.100316px;}
.h7{height:57.121316px;}
.h6{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x14{left:78.661350px;}
.x2c{left:79.926900px;}
.x2b{left:92.180400px;}
.x75{left:94.714350px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x7a{left:102.047400px;}
.x77{left:103.338750px;}
.x15{left:105.011400px;}
.x4{left:106.299300px;}
.x59{left:108.573300px;}
.x9{left:110.558550px;}
.x47{left:113.450850px;}
.x4b{left:114.600600px;}
.x76{left:119.394750px;}
.x50{left:122.759100px;}
.x3{left:125.428050px;}
.xf{left:131.815350px;}
.x16{left:155.694900px;}
.x32{left:176.965350px;}
.x8{left:190.553550px;}
.x6a{left:194.866350px;}
.x2f{left:195.909900px;}
.x17{left:202.461900px;}
.x31{left:204.803400px;}
.x30{left:208.299900px;}
.x57{left:216.271800px;}
.x2d{left:217.781400px;}
.x58{left:219.043800px;}
.x55{left:222.141300px;}
.x33{left:223.732350px;}
.x4c{left:225.774600px;}
.x52{left:227.748600px;}
.x4e{left:229.565100px;}
.x54{left:230.804100px;}
.x53{left:231.843600px;}
.x48{left:233.539350px;}
.x4a{left:234.557850px;}
.x56{left:238.300800px;}
.x51{left:240.495600px;}
.x4d{left:243.131100px;}
.x4f{left:244.590600px;}
.x6c{left:271.774350px;}
.x5c{left:278.202000px;}
.x5b{left:286.110000px;}
.x6b{left:289.270350px;}
.x18{left:302.358900px;}
.x19{left:304.395900px;}
.x2e{left:318.297900px;}
.x34{left:323.629350px;}
.x35{left:325.666350px;}
.x49{left:339.599850px;}
.x5f{left:341.649150px;}
.x6e{left:346.642350px;}
.x5d{left:350.636700px;}
.x5e{left:353.048700px;}
.x1d{left:356.307900px;}
.x6d{left:365.806350px;}
.x39{left:377.578350px;}
.x1e{left:401.090400px;}
.x1a{left:422.111400px;}
.x62{left:432.772500px;}
.x1f{left:437.693400px;}
.x60{left:441.765150px;}
.x36{left:443.381850px;}
.x70{left:444.610350px;}
.x61{left:450.849150px;}
.x6{left:455.041500px;}
.xa{left:457.088550px;}
.x3a{left:458.963850px;}
.x6f{left:463.606350px;}
.x22{left:475.556400px;}
.x10{left:478.346400px;}
.x20{left:479.346900px;}
.x21{left:481.961400px;}
.x23{left:484.586400px;}
.xc{left:491.108550px;}
.x3d{left:496.826850px;}
.x3b{left:500.617350px;}
.x3c{left:503.231850px;}
.x3e{left:505.856850px;}
.x11{left:512.366400px;}
.x25{left:522.323400px;}
.xb{left:525.278550px;}
.x24{left:527.856900px;}
.x64{left:536.231700px;}
.x72{left:542.242350px;}
.x41{left:543.593850px;}
.x63{left:545.224500px;}
.x40{left:547.373850px;}
.x3f{left:549.127350px;}
.x71{left:561.406350px;}
.x26{left:569.289900px;}
.x5a{left:579.425400px;}
.x42{left:590.560350px;}
.x13{left:591.650400px;}
.x27{left:611.142900px;}
.x67{left:626.183100px;}
.x43{left:632.413350px;}
.x65{left:635.183700px;}
.x66{left:637.943700px;}
.x28{left:649.614900px;}
.x73{left:650.698350px;}
.x29{left:653.982900px;}
.xe{left:663.492300px;}
.x44{left:670.885350px;}
.x45{left:675.253350px;}
.x1b{left:691.908900px;}
.x2{left:693.365400px;}
.x2a{left:695.835900px;}
.x37{left:713.179350px;}
.x46{left:717.106350px;}
.x69{left:720.142350px;}
.x78{left:721.926750px;}
.x68{left:727.223100px;}
.xd{left:728.391600px;}
.x74{left:739.990350px;}
.x79{left:743.868150px;}
.x12{left:749.651400px;}
.x1c{left:752.493900px;}
.x38{left:773.764350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v5{vertical-align:20.084267pt;}
.v4{vertical-align:25.085333pt;}
.v1{vertical-align:27.005867pt;}
.ls5a{letter-spacing:-1.381333pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls46{letter-spacing:-0.266667pt;}
.ls4e{letter-spacing:-0.213333pt;}
.ls45{letter-spacing:-0.160000pt;}
.ls77{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls78{letter-spacing:-0.085333pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls76{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.004512pt;}
.ls0{letter-spacing:0.005045pt;}
.ls3e{letter-spacing:0.019733pt;}
.ls53{letter-spacing:0.042667pt;}
.ls3c{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.085333pt;}
.ls28{letter-spacing:0.106667pt;}
.ls57{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls64{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls59{letter-spacing:0.256000pt;}
.ls37{letter-spacing:0.266667pt;}
.ls52{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls73{letter-spacing:0.341333pt;}
.ls3b{letter-spacing:0.373333pt;}
.ls72{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.412800pt;}
.lsa{letter-spacing:0.426667pt;}
.ls71{letter-spacing:0.469333pt;}
.ls13{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls3a{letter-spacing:0.558933pt;}
.lsd{letter-spacing:0.586667pt;}
.ls6a{letter-spacing:0.597333pt;}
.ls19{letter-spacing:0.640000pt;}
.ls68{letter-spacing:0.682667pt;}
.ls24{letter-spacing:0.693333pt;}
.lsf{letter-spacing:0.746667pt;}
.ls6c{letter-spacing:0.768000pt;}
.ls38{letter-spacing:0.800000pt;}
.ls66{letter-spacing:0.810667pt;}
.ls33{letter-spacing:0.853333pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls69{letter-spacing:0.981333pt;}
.ls8{letter-spacing:1.013333pt;}
.ls2c{letter-spacing:1.066667pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls74{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.173333pt;}
.ls6d{letter-spacing:1.194667pt;}
.ls26{letter-spacing:1.226667pt;}
.ls6b{letter-spacing:1.237333pt;}
.ls4a{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.333333pt;}
.ls29{letter-spacing:1.386667pt;}
.ls11{letter-spacing:1.440000pt;}
.ls20{letter-spacing:1.493333pt;}
.ls10{letter-spacing:1.546667pt;}
.ls75{letter-spacing:1.578667pt;}
.ls32{letter-spacing:1.600000pt;}
.ls16{letter-spacing:1.653333pt;}
.ls25{letter-spacing:1.706667pt;}
.ls6f{letter-spacing:1.749333pt;}
.lsb{letter-spacing:1.760000pt;}
.ls1c{letter-spacing:1.813333pt;}
.ls2d{letter-spacing:1.866667pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls5b{letter-spacing:1.973333pt;}
.ls1b{letter-spacing:2.026667pt;}
.lsc{letter-spacing:2.080000pt;}
.ls36{letter-spacing:2.133333pt;}
.ls70{letter-spacing:2.176000pt;}
.ls21{letter-spacing:2.186667pt;}
.ls23{letter-spacing:2.240000pt;}
.ls15{letter-spacing:2.293333pt;}
.ls12{letter-spacing:2.346667pt;}
.ls2f{letter-spacing:2.400000pt;}
.ls14{letter-spacing:2.453333pt;}
.ls3f{letter-spacing:2.506667pt;}
.ls4b{letter-spacing:2.560000pt;}
.ls67{letter-spacing:2.602667pt;}
.ls55{letter-spacing:2.613333pt;}
.ls6e{letter-spacing:2.645333pt;}
.ls1e{letter-spacing:2.666667pt;}
.ls43{letter-spacing:2.720000pt;}
.ls2b{letter-spacing:2.773333pt;}
.ls42{letter-spacing:2.826667pt;}
.ls6{letter-spacing:2.880000pt;}
.ls54{letter-spacing:2.933333pt;}
.ls4c{letter-spacing:2.986667pt;}
.ls47{letter-spacing:3.040000pt;}
.ls50{letter-spacing:3.093333pt;}
.ls48{letter-spacing:3.146667pt;}
.ls18{letter-spacing:3.200000pt;}
.ls51{letter-spacing:3.306667pt;}
.ls62{letter-spacing:3.360000pt;}
.ls2a{letter-spacing:3.413333pt;}
.ls39{letter-spacing:3.466667pt;}
.ls61{letter-spacing:3.573333pt;}
.ls65{letter-spacing:3.712000pt;}
.ls41{letter-spacing:3.733333pt;}
.ls40{letter-spacing:3.786667pt;}
.ls31{letter-spacing:3.893333pt;}
.ls5c{letter-spacing:3.946667pt;}
.ls17{letter-spacing:4.213333pt;}
.ls49{letter-spacing:4.373333pt;}
.ls44{letter-spacing:4.586667pt;}
.ls5d{letter-spacing:5.280000pt;}
.ls5f{letter-spacing:5.440000pt;}
.ls35{letter-spacing:5.600000pt;}
.ls4f{letter-spacing:5.706667pt;}
.ls60{letter-spacing:6.026667pt;}
.ls63{letter-spacing:6.720000pt;}
.ls5e{letter-spacing:7.413333pt;}
.ls58{letter-spacing:106.624000pt;}
.ws5c{word-spacing:-17.920000pt;}
.ws1{word-spacing:-15.568000pt;}
.ws57{word-spacing:-15.040000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws5{word-spacing:-11.861333pt;}
.ws62{word-spacing:-11.349333pt;}
.ws63{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.120000pt;}
.ws59{word-spacing:-10.666667pt;}
.ws64{word-spacing:-10.624000pt;}
.ws2{word-spacing:-9.076144pt;}
.ws58{word-spacing:-6.218667pt;}
.ws7{word-spacing:-2.565333pt;}
.ws66{word-spacing:-2.346667pt;}
.ws10{word-spacing:-1.973333pt;}
.ws79{word-spacing:-1.493333pt;}
.ws25{word-spacing:-1.333333pt;}
.ws69{word-spacing:-1.280000pt;}
.ws74{word-spacing:-1.194667pt;}
.ws2e{word-spacing:-1.066667pt;}
.ws8{word-spacing:-1.008000pt;}
.ws12{word-spacing:-0.960000pt;}
.ws5b{word-spacing:-0.800000pt;}
.ws6e{word-spacing:-0.768000pt;}
.ws7b{word-spacing:-0.469333pt;}
.ws18{word-spacing:-0.426667pt;}
.ws7c{word-spacing:-0.384000pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws17{word-spacing:-0.320000pt;}
.ws38{word-spacing:-0.266667pt;}
.ws23{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws24{word-spacing:-0.106667pt;}
.ws42{word-spacing:-0.085333pt;}
.ws1d{word-spacing:-0.053333pt;}
.ws43{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.042667pt;}
.ws28{word-spacing:0.053333pt;}
.ws6d{word-spacing:0.085333pt;}
.ws9{word-spacing:0.106667pt;}
.ws1a{word-spacing:0.160000pt;}
.ws3d{word-spacing:0.170667pt;}
.ws29{word-spacing:0.213333pt;}
.ws76{word-spacing:0.256000pt;}
.ws2b{word-spacing:0.320000pt;}
.ws27{word-spacing:0.373333pt;}
.ws71{word-spacing:0.426667pt;}
.ws3b{word-spacing:0.469333pt;}
.ws40{word-spacing:0.533333pt;}
.ws39{word-spacing:0.586667pt;}
.ws70{word-spacing:0.597333pt;}
.ws16{word-spacing:0.640000pt;}
.wsf{word-spacing:0.693333pt;}
.ws6b{word-spacing:0.725333pt;}
.ws72{word-spacing:0.768000pt;}
.ws4c{word-spacing:0.896000pt;}
.ws3f{word-spacing:0.960000pt;}
.wse{word-spacing:1.013333pt;}
.ws5f{word-spacing:1.066667pt;}
.ws31{word-spacing:1.109333pt;}
.ws3e{word-spacing:1.173333pt;}
.ws56{word-spacing:1.381333pt;}
.ws21{word-spacing:1.386667pt;}
.ws6c{word-spacing:1.408000pt;}
.ws7a{word-spacing:1.450667pt;}
.ws13{word-spacing:1.493333pt;}
.ws2f{word-spacing:1.706667pt;}
.ws2d{word-spacing:1.760000pt;}
.ws34{word-spacing:1.920000pt;}
.ws20{word-spacing:1.973333pt;}
.ws32{word-spacing:2.090667pt;}
.ws41{word-spacing:2.133333pt;}
.ws73{word-spacing:2.176000pt;}
.ws75{word-spacing:2.218667pt;}
.ws5e{word-spacing:2.240000pt;}
.ws1c{word-spacing:2.293333pt;}
.ws61{word-spacing:2.346667pt;}
.ws77{word-spacing:2.517333pt;}
.ws22{word-spacing:2.613333pt;}
.ws35{word-spacing:2.666667pt;}
.ws78{word-spacing:2.688000pt;}
.ws6f{word-spacing:2.730667pt;}
.ws6a{word-spacing:2.773333pt;}
.ws1f{word-spacing:2.826667pt;}
.ws44{word-spacing:2.880000pt;}
.wsd{word-spacing:2.986667pt;}
.ws4d{word-spacing:3.029333pt;}
.ws30{word-spacing:3.040000pt;}
.ws68{word-spacing:3.114667pt;}
.ws3c{word-spacing:3.200000pt;}
.ws7d{word-spacing:3.242667pt;}
.ws2a{word-spacing:3.306667pt;}
.ws5d{word-spacing:3.360000pt;}
.ws4b{word-spacing:3.413333pt;}
.ws46{word-spacing:3.498667pt;}
.ws33{word-spacing:3.541333pt;}
.ws45{word-spacing:3.573333pt;}
.wsc{word-spacing:3.733333pt;}
.ws15{word-spacing:3.840000pt;}
.ws19{word-spacing:3.893333pt;}
.ws11{word-spacing:4.000000pt;}
.ws26{word-spacing:4.053333pt;}
.ws37{word-spacing:4.106667pt;}
.ws1b{word-spacing:4.160000pt;}
.ws36{word-spacing:4.213333pt;}
.ws14{word-spacing:4.266667pt;}
.ws67{word-spacing:4.320000pt;}
.wsb{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.ws65{word-spacing:4.853333pt;}
.ws60{word-spacing:4.906667pt;}
.ws47{word-spacing:20.234667pt;}
.ws48{word-spacing:29.082667pt;}
.ws52{word-spacing:33.002667pt;}
.ws55{word-spacing:51.557333pt;}
.ws53{word-spacing:60.890667pt;}
.ws4e{word-spacing:69.552000pt;}
.ws50{word-spacing:76.794667pt;}
.ws4f{word-spacing:91.989333pt;}
.ws54{word-spacing:99.082667pt;}
.ws51{word-spacing:105.578667pt;}
.ws4a{word-spacing:106.624000pt;}
.ws49{word-spacing:107.333333pt;}
.ws5a{word-spacing:292.608000pt;}
._a{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._3{margin-left:-8.327467pt;}
._8{margin-left:-6.160000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.634667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.077867pt;}
._4{width:1.394667pt;}
._7{width:2.752000pt;}
._6{width:3.893333pt;}
._9{width:5.493333pt;}
._b{width:6.411200pt;}
._27{width:21.616000pt;}
._1d{width:24.378667pt;}
._2e{width:36.661333pt;}
._3f{width:47.936000pt;}
._1b{width:52.341333pt;}
._32{width:55.850667pt;}
._3e{width:61.264000pt;}
._1e{width:65.146667pt;}
._40{width:72.389333pt;}
._38{width:76.010667pt;}
._28{width:77.130667pt;}
._25{width:78.512000pt;}
._3a{width:80.714667pt;}
._2d{width:85.418667pt;}
._31{width:86.426667pt;}
._35{width:91.877333pt;}
._44{width:96.245333pt;}
._43{width:98.037333pt;}
._22{width:101.322667pt;}
._45{width:104.048000pt;}
._21{width:106.400000pt;}
._2c{width:109.498667pt;}
._42{width:110.468267pt;}
._26{width:111.514667pt;}
._23{width:113.120000pt;}
._24{width:115.733333pt;}
._2f{width:117.338667pt;}
._39{width:118.253333pt;}
._2a{width:120.250667pt;}
._37{width:123.050667pt;}
._1f{width:124.282667pt;}
._41{width:125.328000pt;}
._48{width:127.568000pt;}
._2b{width:131.189333pt;}
._3b{width:133.242667pt;}
._30{width:135.146667pt;}
._33{width:136.341333pt;}
._58{width:140.714667pt;}
._4c{width:142.682667pt;}
._5a{width:144.085333pt;}
._51{width:145.557333pt;}
._3d{width:149.594667pt;}
._46{width:150.602667pt;}
._1a{width:153.290667pt;}
._29{width:156.874667pt;}
._53{width:167.802667pt;}
._36{width:173.824000pt;}
._5d{width:175.456000pt;}
._5e{width:177.578667pt;}
._59{width:178.469333pt;}
._4b{width:181.376000pt;}
._4d{width:186.538667pt;}
._54{width:188.154667pt;}
._5b{width:189.653333pt;}
._34{width:194.282667pt;}
._55{width:195.674667pt;}
._4e{width:197.205333pt;}
._56{width:199.125333pt;}
._4f{width:204.682667pt;}
._5f{width:208.741867pt;}
._47{width:214.293333pt;}
._20{width:215.674667pt;}
._5c{width:216.917333pt;}
._3c{width:220.901333pt;}
._49{width:227.029333pt;}
._52{width:235.386667pt;}
._57{width:238.250667pt;}
._50{width:252.288000pt;}
._60{width:257.920000pt;}
._e{width:287.280000pt;}
._1c{width:302.250667pt;}
._61{width:333.525333pt;}
._19{width:347.562667pt;}
._18{width:358.229333pt;}
._14{width:368.896000pt;}
._f{width:374.954667pt;}
._16{width:379.562667pt;}
._11{width:395.562667pt;}
._13{width:422.229333pt;}
._d{width:437.418667pt;}
._17{width:578.986667pt;}
._10{width:584.106667pt;}
._12{width:671.786667pt;}
._15{width:696.661333pt;}
._4a{width:899.541333pt;}
.fs6{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs5{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2c{bottom:42.468667pt;}
.y10e{bottom:73.683333pt;}
.ye2{bottom:73.788133pt;}
.y19b{bottom:74.206133pt;}
.y101{bottom:74.323867pt;}
.ya9{bottom:74.462533pt;}
.y61{bottom:74.464533pt;}
.y1ba{bottom:74.475867pt;}
.y72{bottom:74.588533pt;}
.ycc{bottom:74.595867pt;}
.y4{bottom:78.246000pt;}
.y130{bottom:81.362133pt;}
.y10d{bottom:87.678000pt;}
.ye1{bottom:87.782800pt;}
.y100{bottom:88.318533pt;}
.y1b9{bottom:90.115867pt;}
.ya8{bottom:90.462533pt;}
.y60{bottom:90.464533pt;}
.ycb{bottom:90.595867pt;}
.y71{bottom:90.597867pt;}
.y3{bottom:91.576000pt;}
.y12f{bottom:92.562133pt;}
.y19a{bottom:96.883467pt;}
.y10c{bottom:101.672667pt;}
.ye0{bottom:101.777467pt;}
.yff{bottom:102.313200pt;}
.y12e{bottom:103.762133pt;}
.ya7{bottom:106.462533pt;}
.y5f{bottom:106.464533pt;}
.yca{bottom:106.595867pt;}
.y70{bottom:106.597867pt;}
.y199{bottom:111.326133pt;}
.y12d{bottom:114.962133pt;}
.y10b{bottom:115.667333pt;}
.ydf{bottom:115.772133pt;}
.yfe{bottom:116.307867pt;}
.y1e5{bottom:116.552800pt;}
.ya6{bottom:122.462533pt;}
.y5e{bottom:122.464533pt;}
.y1b8{bottom:122.475867pt;}
.yc9{bottom:122.595867pt;}
.y6f{bottom:122.597867pt;}
.y222{bottom:124.678667pt;}
.y198{bottom:125.768800pt;}
.y10a{bottom:129.662000pt;}
.y1e4{bottom:129.886133pt;}
.yfd{bottom:130.302533pt;}
.y12c{bottom:130.343467pt;}
.y172{bottom:132.639067pt;}
.y221{bottom:138.012000pt;}
.y1b7{bottom:138.115867pt;}
.ya5{bottom:138.462533pt;}
.y5d{bottom:138.464533pt;}
.yc8{bottom:138.595867pt;}
.y6e{bottom:138.597867pt;}
.y197{bottom:140.211467pt;}
.y12b{bottom:141.543467pt;}
.y1e3{bottom:143.219467pt;}
.yfc{bottom:144.297200pt;}
.y171{bottom:146.633733pt;}
.y220{bottom:151.345333pt;}
.ya4{bottom:154.462533pt;}
.y5c{bottom:154.464533pt;}
.yc7{bottom:154.595867pt;}
.y6d{bottom:154.597867pt;}
.y196{bottom:154.654133pt;}
.y1e2{bottom:156.552800pt;}
.y12a{bottom:156.924800pt;}
.yfb{bottom:158.291867pt;}
.y170{bottom:160.628400pt;}
.y21f{bottom:164.678667pt;}
.y195{bottom:169.096800pt;}
.y1e1{bottom:169.886133pt;}
.ya3{bottom:170.462533pt;}
.y5b{bottom:170.464533pt;}
.y1b6{bottom:170.475867pt;}
.yc6{bottom:170.595867pt;}
.y6c{bottom:170.597867pt;}
.y16f{bottom:174.623067pt;}
.y21e{bottom:178.012000pt;}
.y129{bottom:181.378133pt;}
.y1e0{bottom:183.219467pt;}
.y194{bottom:183.539467pt;}
.ya2{bottom:186.462533pt;}
.y5a{bottom:186.464533pt;}
.y1b5{bottom:186.475867pt;}
.yc5{bottom:186.595867pt;}
.y6b{bottom:186.597867pt;}
.y16e{bottom:188.617733pt;}
.y21d{bottom:191.345333pt;}
.y128{bottom:192.578133pt;}
.y1df{bottom:196.552800pt;}
.y193{bottom:197.982133pt;}
.ya1{bottom:202.462533pt;}
.y59{bottom:202.464533pt;}
.y1b4{bottom:202.475867pt;}
.yc4{bottom:202.595867pt;}
.y6a{bottom:202.597867pt;}
.y127{bottom:203.778133pt;}
.y21c{bottom:204.678667pt;}
.y1de{bottom:209.886133pt;}
.y16d{bottom:211.061733pt;}
.y192{bottom:212.424800pt;}
.y126{bottom:214.978133pt;}
.y21b{bottom:218.012000pt;}
.ya0{bottom:218.462533pt;}
.y58{bottom:218.464533pt;}
.y1b3{bottom:218.475867pt;}
.yc3{bottom:218.595867pt;}
.y69{bottom:218.597867pt;}
.y1dd{bottom:223.219467pt;}
.y29{bottom:224.057067pt;}
.y16c{bottom:226.443067pt;}
.y191{bottom:226.867467pt;}
.y125{bottom:228.231467pt;}
.y21a{bottom:231.345333pt;}
.y9f{bottom:234.462533pt;}
.y57{bottom:234.464533pt;}
.y1b2{bottom:234.475867pt;}
.yc2{bottom:234.595867pt;}
.y68{bottom:234.597867pt;}
.y1dc{bottom:236.552800pt;}
.y16b{bottom:237.643067pt;}
.y124{bottom:239.431467pt;}
.y190{bottom:241.310133pt;}
.y219{bottom:244.678667pt;}
.y28{bottom:248.363733pt;}
.y16a{bottom:248.843067pt;}
.y1db{bottom:249.886133pt;}
.y1b1{bottom:250.115867pt;}
.y9e{bottom:250.462533pt;}
.y56{bottom:250.464533pt;}
.yc1{bottom:250.595867pt;}
.y67{bottom:250.597867pt;}
.y123{bottom:250.631467pt;}
.y18f{bottom:255.752800pt;}
.y218{bottom:258.012000pt;}
.y169{bottom:260.043067pt;}
.y1da{bottom:263.219467pt;}
.y27{bottom:264.363733pt;}
.y9d{bottom:266.462533pt;}
.y55{bottom:266.464533pt;}
.yc0{bottom:266.595867pt;}
.y18e{bottom:270.234133pt;}
.y168{bottom:271.243067pt;}
.y217{bottom:271.345333pt;}
.y1d9{bottom:276.552800pt;}
.y122{bottom:278.315600pt;}
.y26{bottom:280.363733pt;}
.y66{bottom:282.237867pt;}
.y167{bottom:282.443067pt;}
.y9c{bottom:282.462533pt;}
.y54{bottom:282.464533pt;}
.y1b0{bottom:282.475867pt;}
.ybf{bottom:282.595867pt;}
.y18d{bottom:284.676800pt;}
.y216{bottom:284.678667pt;}
.y1d8{bottom:289.886133pt;}
.y166{bottom:293.643067pt;}
.y121{bottom:295.648933pt;}
.y25{bottom:296.363733pt;}
.y215{bottom:298.012000pt;}
.y9b{bottom:298.462533pt;}
.y53{bottom:298.464533pt;}
.y1af{bottom:298.475867pt;}
.ybe{bottom:298.595867pt;}
.y18c{bottom:299.119467pt;}
.y1d7{bottom:303.219467pt;}
.y165{bottom:309.024400pt;}
.y214{bottom:311.345333pt;}
.y24{bottom:312.363733pt;}
.y120{bottom:312.982267pt;}
.y18b{bottom:313.562133pt;}
.y9a{bottom:314.462533pt;}
.y52{bottom:314.464533pt;}
.y1ae{bottom:314.475867pt;}
.ybd{bottom:314.595867pt;}
.y1d6{bottom:316.552800pt;}
.y164{bottom:320.224400pt;}
.y213{bottom:324.678667pt;}
.y18a{bottom:328.004800pt;}
.y23{bottom:328.363733pt;}
.y1d5{bottom:329.886133pt;}
.y11f{bottom:330.315600pt;}
.y99{bottom:330.462533pt;}
.y51{bottom:330.464533pt;}
.y1ad{bottom:330.475867pt;}
.ybc{bottom:330.595867pt;}
.y163{bottom:331.424400pt;}
.y212{bottom:338.012000pt;}
.y189{bottom:342.447467pt;}
.y162{bottom:342.624400pt;}
.y1d4{bottom:343.219467pt;}
.y22{bottom:344.363733pt;}
.y1ac{bottom:346.115867pt;}
.y98{bottom:346.462533pt;}
.y50{bottom:346.464533pt;}
.ybb{bottom:346.595867pt;}
.y11e{bottom:347.648933pt;}
.y211{bottom:351.345333pt;}
.y161{bottom:353.824400pt;}
.y1d3{bottom:356.552800pt;}
.y188{bottom:356.890133pt;}
.y21{bottom:360.363733pt;}
.y97{bottom:362.462533pt;}
.y4f{bottom:362.464533pt;}
.yba{bottom:362.595867pt;}
.y210{bottom:364.678667pt;}
.y11d{bottom:364.982267pt;}
.y160{bottom:365.024400pt;}
.y1d2{bottom:369.886133pt;}
.y187{bottom:371.332800pt;}
.y15f{bottom:376.224400pt;}
.y20{bottom:376.363733pt;}
.y20f{bottom:378.012000pt;}
.y96{bottom:378.462533pt;}
.y4e{bottom:378.464533pt;}
.y1ab{bottom:378.475867pt;}
.yb9{bottom:378.595867pt;}
.y1d1{bottom:383.219467pt;}
.y186{bottom:385.775467pt;}
.y20e{bottom:391.345333pt;}
.y15e{bottom:391.605733pt;}
.y1f{bottom:392.363733pt;}
.y95{bottom:394.462533pt;}
.y4d{bottom:394.464533pt;}
.y1aa{bottom:394.475867pt;}
.yb8{bottom:394.595867pt;}
.y1d0{bottom:396.552800pt;}
.y185{bottom:400.218133pt;}
.y20d{bottom:404.678667pt;}
.y15d{bottom:406.981067pt;}
.y1e{bottom:408.363733pt;}
.y1cf{bottom:409.886133pt;}
.y94{bottom:410.462533pt;}
.y4c{bottom:410.464533pt;}
.yb7{bottom:410.595867pt;}
.y11c{bottom:414.419333pt;}
.y184{bottom:414.660800pt;}
.y20c{bottom:418.012000pt;}
.y15c{bottom:418.181067pt;}
.y1ce{bottom:423.219467pt;}
.y1d{bottom:424.363733pt;}
.y1a9{bottom:426.115867pt;}
.y93{bottom:426.462533pt;}
.y4b{bottom:426.464533pt;}
.yb6{bottom:426.595867pt;}
.y11b{bottom:428.862000pt;}
.y183{bottom:429.327467pt;}
.y15b{bottom:429.381067pt;}
.y20b{bottom:431.345333pt;}
.y1cd{bottom:436.552800pt;}
.y1c{bottom:440.363733pt;}
.y15a{bottom:440.581067pt;}
.y92{bottom:442.462533pt;}
.y4a{bottom:442.464533pt;}
.yb5{bottom:442.595867pt;}
.y11a{bottom:443.304667pt;}
.y182{bottom:443.994133pt;}
.y20a{bottom:444.678667pt;}
.y1cc{bottom:449.886133pt;}
.y159{bottom:451.781067pt;}
.y1b{bottom:456.363733pt;}
.y119{bottom:457.747333pt;}
.y209{bottom:458.012000pt;}
.yde{bottom:458.235867pt;}
.y1a8{bottom:458.342533pt;}
.y91{bottom:458.462533pt;}
.y49{bottom:458.464533pt;}
.yb4{bottom:458.595867pt;}
.y1cb{bottom:463.219467pt;}
.y158{bottom:467.162400pt;}
.y181{bottom:469.775467pt;}
.y208{bottom:471.345333pt;}
.y118{bottom:472.190000pt;}
.y1a{bottom:472.363733pt;}
.y1a7{bottom:474.342533pt;}
.y90{bottom:474.462533pt;}
.y48{bottom:474.464533pt;}
.yb3{bottom:474.595867pt;}
.y1ca{bottom:476.552800pt;}
.y157{bottom:478.362400pt;}
.y180{bottom:484.442133pt;}
.y17e{bottom:484.445600pt;}
.y207{bottom:484.678667pt;}
.y19{bottom:488.363733pt;}
.y1c9{bottom:489.886133pt;}
.ydd{bottom:490.115867pt;}
.y1a6{bottom:490.342533pt;}
.y8f{bottom:490.462533pt;}
.y47{bottom:490.464533pt;}
.yb2{bottom:490.595867pt;}
.y156{bottom:493.743733pt;}
.y206{bottom:498.012000pt;}
.y17f{bottom:499.108800pt;}
.y17d{bottom:499.112267pt;}
.y117{bottom:500.200667pt;}
.y1c8{bottom:503.219467pt;}
.y18{bottom:504.363733pt;}
.y155{bottom:504.943733pt;}
.y1a5{bottom:506.342533pt;}
.y8e{bottom:506.462533pt;}
.y46{bottom:506.464533pt;}
.yb1{bottom:506.595867pt;}
.y109{bottom:506.609200pt;}
.y205{bottom:511.345333pt;}
.y154{bottom:516.143733pt;}
.y1c7{bottom:516.552800pt;}
.y17{bottom:520.363733pt;}
.y1a4{bottom:522.342533pt;}
.y8d{bottom:522.462533pt;}
.y45{bottom:522.464533pt;}
.yb0{bottom:522.595867pt;}
.y108{bottom:522.609200pt;}
.y204{bottom:524.678667pt;}
.y17c{bottom:524.893600pt;}
.y1c6{bottom:529.886133pt;}
.y116{bottom:531.218533pt;}
.y153{bottom:531.525067pt;}
.y203{bottom:538.012000pt;}
.y103{bottom:538.235867pt;}
.y1a3{bottom:538.342533pt;}
.y8c{bottom:538.462533pt;}
.y44{bottom:538.464533pt;}
.yaf{bottom:538.595867pt;}
.y107{bottom:538.609200pt;}
.y152{bottom:542.725067pt;}
.y1c5{bottom:543.219467pt;}
.y115{bottom:548.551867pt;}
.y202{bottom:551.345333pt;}
.y17b{bottom:553.689200pt;}
.y1a2{bottom:554.342533pt;}
.y8b{bottom:554.462533pt;}
.y43{bottom:554.464533pt;}
.yae{bottom:554.595867pt;}
.y106{bottom:554.609200pt;}
.y1c4{bottom:556.552800pt;}
.y151{bottom:558.106400pt;}
.y16{bottom:560.504267pt;}
.y201{bottom:564.678667pt;}
.y114{bottom:565.885200pt;}
.y150{bottom:569.306400pt;}
.y1c3{bottom:569.886133pt;}
.y1a1{bottom:570.342533pt;}
.y8a{bottom:570.462533pt;}
.y42{bottom:570.464533pt;}
.yfa{bottom:570.475867pt;}
.yad{bottom:570.595867pt;}
.y105{bottom:570.609200pt;}
.y17a{bottom:571.022533pt;}
.y15{bottom:571.571600pt;}
.y200{bottom:578.012000pt;}
.y113{bottom:583.218533pt;}
.y1c2{bottom:583.219467pt;}
.y14f{bottom:584.687733pt;}
.y1a0{bottom:586.342533pt;}
.y89{bottom:586.462533pt;}
.y41{bottom:586.464533pt;}
.yf9{bottom:586.475867pt;}
.yac{bottom:586.595867pt;}
.y179{bottom:588.355867pt;}
.y1ff{bottom:591.345333pt;}
.y1c1{bottom:596.552800pt;}
.y14{bottom:599.763200pt;}
.y14e{bottom:600.069067pt;}
.y112{bottom:600.551867pt;}
.y104{bottom:602.249200pt;}
.y19f{bottom:602.342533pt;}
.y88{bottom:602.462533pt;}
.y40{bottom:602.464533pt;}
.yf8{bottom:602.475867pt;}
.yab{bottom:602.595867pt;}
.y1fe{bottom:604.678667pt;}
.y1c0{bottom:609.886133pt;}
.y14d{bottom:611.269067pt;}
.y13{bottom:616.585600pt;}
.y111{bottom:617.885200pt;}
.y1fd{bottom:618.012000pt;}
.y19e{bottom:618.342533pt;}
.y87{bottom:618.462533pt;}
.y3f{bottom:618.464533pt;}
.yf7{bottom:618.475867pt;}
.ydc{bottom:618.595867pt;}
.y1bf{bottom:623.219467pt;}
.y12{bottom:623.763200pt;}
.y14c{bottom:626.650400pt;}
.y1fc{bottom:631.347467pt;}
.yaa{bottom:634.235867pt;}
.y178{bottom:634.342533pt;}
.y86{bottom:634.462533pt;}
.y3e{bottom:634.464533pt;}
.yf6{bottom:634.475867pt;}
.ydb{bottom:634.595867pt;}
.y110{bottom:635.218533pt;}
.y1be{bottom:636.552800pt;}
.y14b{bottom:637.850400pt;}
.y11{bottom:640.585600pt;}
.y1fb{bottom:644.680800pt;}
.y10{bottom:647.763200pt;}
.y14a{bottom:649.050400pt;}
.y19d{bottom:649.982533pt;}
.y177{bottom:650.342533pt;}
.y85{bottom:650.462533pt;}
.y3d{bottom:650.464533pt;}
.yf5{bottom:650.475867pt;}
.yda{bottom:650.595867pt;}
.y1fa{bottom:658.014133pt;}
.y149{bottom:660.250400pt;}
.yf{bottom:664.585600pt;}
.y1bd{bottom:665.982533pt;}
.y176{bottom:666.342533pt;}
.y84{bottom:666.462533pt;}
.y3c{bottom:666.464533pt;}
.yf4{bottom:666.475867pt;}
.yd9{bottom:666.595867pt;}
.y1f9{bottom:671.347467pt;}
.y148{bottom:671.450400pt;}
.y137{bottom:674.607333pt;}
.ye{bottom:676.585600pt;}
.y175{bottom:682.342533pt;}
.y83{bottom:682.462533pt;}
.y3b{bottom:682.464533pt;}
.yf3{bottom:682.475867pt;}
.yd8{bottom:682.595867pt;}
.yd{bottom:683.763200pt;}
.y1f8{bottom:684.680800pt;}
.y147{bottom:686.824933pt;}
.y136{bottom:688.602000pt;}
.yc{bottom:695.763200pt;}
.y1f7{bottom:698.014133pt;}
.y146{bottom:698.024933pt;}
.y174{bottom:698.342533pt;}
.y82{bottom:698.462533pt;}
.y3a{bottom:698.464533pt;}
.yf2{bottom:698.475867pt;}
.yd7{bottom:698.595867pt;}
.y135{bottom:702.596667pt;}
.y1f6{bottom:711.347467pt;}
.yb{bottom:712.585733pt;}
.y145{bottom:713.406267pt;}
.y81{bottom:714.462533pt;}
.y39{bottom:714.464533pt;}
.yf1{bottom:714.475867pt;}
.yd6{bottom:714.595867pt;}
.y134{bottom:716.591333pt;}
.y1f5{bottom:724.680800pt;}
.y144{bottom:728.787600pt;}
.y173{bottom:729.982533pt;}
.y80{bottom:730.462533pt;}
.y38{bottom:730.464533pt;}
.yf0{bottom:730.475867pt;}
.y133{bottom:730.586000pt;}
.yd5{bottom:730.595867pt;}
.y1f4{bottom:738.014133pt;}
.ya{bottom:738.121067pt;}
.y143{bottom:744.168933pt;}
.y132{bottom:744.580667pt;}
.y7f{bottom:746.462533pt;}
.y37{bottom:746.464533pt;}
.yef{bottom:746.475867pt;}
.yd4{bottom:746.595867pt;}
.y1f3{bottom:751.347467pt;}
.y9{bottom:756.783067pt;}
.y131{bottom:758.575333pt;}
.y142{bottom:759.550267pt;}
.y7e{bottom:762.462533pt;}
.y36{bottom:762.464533pt;}
.yee{bottom:762.475867pt;}
.yd3{bottom:762.595867pt;}
.y1f2{bottom:764.680800pt;}
.y141{bottom:770.750267pt;}
.y1f1{bottom:778.014133pt;}
.y65{bottom:778.104533pt;}
.y7d{bottom:778.462533pt;}
.y35{bottom:778.464533pt;}
.yed{bottom:778.475867pt;}
.yd2{bottom:778.595867pt;}
.y140{bottom:786.131600pt;}
.y1f0{bottom:791.347467pt;}
.y7c{bottom:794.462533pt;}
.y34{bottom:794.464533pt;}
.yec{bottom:794.475867pt;}
.yd1{bottom:794.595867pt;}
.y8{bottom:797.816533pt;}
.y13f{bottom:801.512933pt;}
.y1ef{bottom:804.680800pt;}
.y64{bottom:809.984533pt;}
.y1bc{bottom:810.102533pt;}
.y7b{bottom:810.462533pt;}
.y33{bottom:810.464533pt;}
.yeb{bottom:810.475867pt;}
.yd0{bottom:810.595867pt;}
.y1ee{bottom:818.014133pt;}
.y13e{bottom:825.630267pt;}
.y7a{bottom:826.462533pt;}
.y32{bottom:826.464533pt;}
.yea{bottom:826.475867pt;}
.ycf{bottom:826.595867pt;}
.y7{bottom:830.226133pt;}
.y1ed{bottom:831.347467pt;}
.y13d{bottom:836.830267pt;}
.y79{bottom:842.462533pt;}
.y31{bottom:842.464533pt;}
.ye9{bottom:842.475867pt;}
.yce{bottom:842.595867pt;}
.y1ec{bottom:844.680800pt;}
.y13c{bottom:848.030267pt;}
.y1eb{bottom:858.014133pt;}
.y78{bottom:858.462533pt;}
.y30{bottom:858.464533pt;}
.ye8{bottom:858.475867pt;}
.y13b{bottom:859.230267pt;}
.y6{bottom:862.635733pt;}
.y1ea{bottom:871.347467pt;}
.y13a{bottom:872.483600pt;}
.y1bb{bottom:874.102533pt;}
.ycd{bottom:874.235867pt;}
.y77{bottom:874.462533pt;}
.y2f{bottom:874.464533pt;}
.ye7{bottom:874.475867pt;}
.y139{bottom:883.683600pt;}
.y1e9{bottom:884.680800pt;}
.y76{bottom:890.462533pt;}
.y2e{bottom:890.464533pt;}
.ye6{bottom:890.475867pt;}
.y138{bottom:894.883600pt;}
.y5{bottom:895.045333pt;}
.y1e8{bottom:898.014133pt;}
.y75{bottom:906.462533pt;}
.y63{bottom:906.464533pt;}
.ye5{bottom:906.475867pt;}
.y1e7{bottom:911.347467pt;}
.y2d{bottom:922.104533pt;}
.y74{bottom:922.462533pt;}
.y62{bottom:922.464533pt;}
.ye4{bottom:922.475867pt;}
.y1e6{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y73{bottom:1006.594400pt;}
.y223{bottom:1006.598667pt;}
.ye3{bottom:1006.609467pt;}
.y10f{bottom:1006.611333pt;}
.y102{bottom:1006.622533pt;}
.y19c{bottom:1006.632800pt;}
.y2b{bottom:1009.857333pt;}
.y2a{bottom:1022.660000pt;}
.h9{height:17.000371pt;}
.ha{height:25.255208pt;}
.h14{height:25.940104pt;}
.h16{height:25.964104pt;}
.h15{height:25.967304pt;}
.h2{height:27.197917pt;}
.h4{height:29.140625pt;}
.h5{height:29.160156pt;}
.h13{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h10{height:37.057292pt;}
.h17{height:37.367788pt;}
.h18{height:37.381654pt;}
.hd{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.h11{height:46.689734pt;}
.h12{height:46.727068pt;}
.h3{height:50.476562pt;}
.h8{height:50.755837pt;}
.h7{height:50.774503pt;}
.h6{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x14{left:69.921200pt;}
.x2c{left:71.046133pt;}
.x2b{left:81.938133pt;}
.x75{left:84.190533pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x7a{left:90.708800pt;}
.x77{left:91.856667pt;}
.x15{left:93.343467pt;}
.x4{left:94.488267pt;}
.x59{left:96.509600pt;}
.x9{left:98.274267pt;}
.x47{left:100.845200pt;}
.x4b{left:101.867200pt;}
.x76{left:106.128667pt;}
.x50{left:109.119200pt;}
.x3{left:111.491600pt;}
.xf{left:117.169200pt;}
.x16{left:138.395467pt;}
.x32{left:157.302533pt;}
.x8{left:169.380933pt;}
.x6a{left:173.214533pt;}
.x2f{left:174.142133pt;}
.x17{left:179.966133pt;}
.x31{left:182.047467pt;}
.x30{left:185.155467pt;}
.x57{left:192.241600pt;}
.x2d{left:193.583467pt;}
.x58{left:194.705600pt;}
.x55{left:197.458933pt;}
.x33{left:198.873200pt;}
.x4c{left:200.688533pt;}
.x52{left:202.443200pt;}
.x4e{left:204.057867pt;}
.x54{left:205.159200pt;}
.x53{left:206.083200pt;}
.x48{left:207.590533pt;}
.x4a{left:208.495867pt;}
.x56{left:211.822933pt;}
.x51{left:213.773867pt;}
.x4d{left:216.116533pt;}
.x4f{left:217.413867pt;}
.x6c{left:241.577200pt;}
.x5c{left:247.290667pt;}
.x5b{left:254.320000pt;}
.x6b{left:257.129200pt;}
.x18{left:268.763467pt;}
.x19{left:270.574133pt;}
.x2e{left:282.931467pt;}
.x34{left:287.670533pt;}
.x35{left:289.481200pt;}
.x49{left:301.866533pt;}
.x5f{left:303.688133pt;}
.x6e{left:308.126533pt;}
.x5d{left:311.677067pt;}
.x5e{left:313.821067pt;}
.x1d{left:316.718133pt;}
.x6d{left:325.161200pt;}
.x39{left:335.625200pt;}
.x1e{left:356.524800pt;}
.x1a{left:375.210133pt;}
.x62{left:384.686667pt;}
.x1f{left:389.060800pt;}
.x60{left:392.680133pt;}
.x36{left:394.117200pt;}
.x70{left:395.209200pt;}
.x61{left:400.754800pt;}
.x6{left:404.481333pt;}
.xa{left:406.300933pt;}
.x3a{left:407.967867pt;}
.x6f{left:412.094533pt;}
.x22{left:422.716800pt;}
.x10{left:425.196800pt;}
.x20{left:426.086133pt;}
.x21{left:428.410133pt;}
.x23{left:430.743467pt;}
.xc{left:436.540933pt;}
.x3d{left:441.623867pt;}
.x3b{left:444.993200pt;}
.x3c{left:447.317200pt;}
.x3e{left:449.650533pt;}
.x11{left:455.436800pt;}
.x25{left:464.287467pt;}
.xb{left:466.914267pt;}
.x24{left:469.206133pt;}
.x64{left:476.650400pt;}
.x72{left:481.993200pt;}
.x41{left:483.194533pt;}
.x63{left:484.644000pt;}
.x40{left:486.554533pt;}
.x3f{left:488.113200pt;}
.x71{left:499.027867pt;}
.x26{left:506.035467pt;}
.x5a{left:515.044800pt;}
.x42{left:524.942533pt;}
.x13{left:525.911467pt;}
.x27{left:543.238133pt;}
.x67{left:556.607200pt;}
.x43{left:562.145200pt;}
.x65{left:564.607733pt;}
.x66{left:567.061067pt;}
.x28{left:577.435467pt;}
.x73{left:578.398533pt;}
.x29{left:581.318133pt;}
.xe{left:589.770933pt;}
.x44{left:596.342533pt;}
.x45{left:600.225200pt;}
.x1b{left:615.030133pt;}
.x2{left:616.324800pt;}
.x2a{left:618.520800pt;}
.x37{left:633.937200pt;}
.x46{left:637.427867pt;}
.x69{left:640.126533pt;}
.x78{left:641.712667pt;}
.x68{left:646.420533pt;}
.xd{left:647.459200pt;}
.x74{left:657.769200pt;}
.x79{left:661.216133pt;}
.x12{left:666.356800pt;}
.x1c{left:668.883467pt;}
.x38{left:687.790533pt;}
}




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