
    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_1ce47b0bd05913975123f3d7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4269309b36af981d6a7abb6c.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_8797585b4a4be4b2b7d51b1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_898888cb2ef2934dafea2ac5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0049ffc05a48fe988c821fbb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_73875b381c45316d17c97e2d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4b052eaa72047e5b5d03b39a.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v5{vertical-align:-16.476600px;}
.v1{vertical-align:-2.758800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.723400px;}
.v4{vertical-align:16.461000px;}
.v3{vertical-align:20.569200px;}
.ls24{letter-spacing:-0.720000px;}
.ls6b{letter-spacing:-0.240000px;}
.ls9e{letter-spacing:-0.192000px;}
.ls5c{letter-spacing:-0.120000px;}
.ls7b{letter-spacing:-0.096000px;}
.ls4b{letter-spacing:-0.060000px;}
.ls25{letter-spacing:-0.048000px;}
.ls23{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.004200px;}
.ls5f{letter-spacing:0.004800px;}
.ls7d{letter-spacing:0.005400px;}
.ls97{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.060000px;}
.ls90{letter-spacing:0.096000px;}
.ls4{letter-spacing:0.108600px;}
.ls8{letter-spacing:0.120000px;}
.ls8a{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls30{letter-spacing:0.240000px;}
.ls9c{letter-spacing:0.288000px;}
.ls58{letter-spacing:0.300000px;}
.ls31{letter-spacing:0.360000px;}
.ls8d{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.420000px;}
.ls91{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.480000px;}
.ls93{letter-spacing:0.528000px;}
.ls20{letter-spacing:0.540000px;}
.ls7e{letter-spacing:0.547800px;}
.ls7f{letter-spacing:0.548400px;}
.ls41{letter-spacing:0.574800px;}
.ls0{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.600000px;}
.ls9b{letter-spacing:0.624000px;}
.ls35{letter-spacing:0.627600px;}
.ls38{letter-spacing:0.660000px;}
.ls87{letter-spacing:0.672000px;}
.ls2{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.780000px;}
.ls88{letter-spacing:0.816000px;}
.lsf{letter-spacing:0.840000px;}
.ls85{letter-spacing:0.864000px;}
.ls40{letter-spacing:0.894000px;}
.lsb{letter-spacing:0.900000px;}
.ls1{letter-spacing:0.912000px;}
.ls2f{letter-spacing:0.960000px;}
.ls9d{letter-spacing:1.008000px;}
.ls1f{letter-spacing:1.020000px;}
.ls70{letter-spacing:1.056000px;}
.ls5b{letter-spacing:1.056600px;}
.ls83{letter-spacing:1.080000px;}
.ls95{letter-spacing:1.104000px;}
.ls37{letter-spacing:1.140000px;}
.ls89{letter-spacing:1.152000px;}
.ls47{letter-spacing:1.159200px;}
.ls19{letter-spacing:1.200000px;}
.ls8b{letter-spacing:1.248000px;}
.ls22{letter-spacing:1.260000px;}
.ls46{letter-spacing:1.320000px;}
.ls4c{letter-spacing:1.332000px;}
.ls28{letter-spacing:1.380000px;}
.ls8c{letter-spacing:1.392000px;}
.ls72{letter-spacing:1.410000px;}
.ls4d{letter-spacing:1.424400px;}
.ls5a{letter-spacing:1.440000px;}
.ls8f{letter-spacing:1.488000px;}
.ls3f{letter-spacing:1.500000px;}
.ls55{letter-spacing:1.560000px;}
.ls9f{letter-spacing:1.584000px;}
.ls7{letter-spacing:1.620000px;}
.ls84{letter-spacing:1.632000px;}
.ls1d{letter-spacing:1.680000px;}
.ls92{letter-spacing:1.728000px;}
.lsc{letter-spacing:1.740000px;}
.ls4e{letter-spacing:1.800000px;}
.ls1b{letter-spacing:1.860000px;}
.ls15{letter-spacing:1.920000px;}
.ls14{letter-spacing:1.980000px;}
.ls13{letter-spacing:2.040000px;}
.ls81{letter-spacing:2.100000px;}
.ls10{letter-spacing:2.160000px;}
.ls3c{letter-spacing:2.220000px;}
.ls96{letter-spacing:2.256000px;}
.ls1e{letter-spacing:2.280000px;}
.ls86{letter-spacing:2.304000px;}
.ls3e{letter-spacing:2.340000px;}
.ls71{letter-spacing:2.352000px;}
.ls48{letter-spacing:2.400000px;}
.ls3d{letter-spacing:2.460000px;}
.ls9a{letter-spacing:2.496000px;}
.ls29{letter-spacing:2.520000px;}
.ls98{letter-spacing:2.544000px;}
.ls21{letter-spacing:2.580000px;}
.ls94{letter-spacing:2.592000px;}
.ls11{letter-spacing:2.640000px;}
.ls2d{letter-spacing:2.700000px;}
.lse{letter-spacing:2.760000px;}
.ls7c{letter-spacing:2.820000px;}
.ls6d{letter-spacing:2.880000px;}
.ls8e{letter-spacing:2.928000px;}
.ls33{letter-spacing:2.940000px;}
.ls9{letter-spacing:3.000000px;}
.ls3b{letter-spacing:3.060000px;}
.ls26{letter-spacing:3.120000px;}
.ls59{letter-spacing:3.180000px;}
.ls80{letter-spacing:3.235200px;}
.ls4f{letter-spacing:3.300000px;}
.lsa{letter-spacing:3.360000px;}
.ls1a{letter-spacing:3.420000px;}
.ls32{letter-spacing:3.480000px;}
.ls77{letter-spacing:3.540000px;}
.ls2c{letter-spacing:3.600000px;}
.ls6f{letter-spacing:3.660000px;}
.ls52{letter-spacing:3.720000px;}
.ls2a{letter-spacing:3.780000px;}
.ls45{letter-spacing:3.840000px;}
.ls79{letter-spacing:3.900000px;}
.ls6{letter-spacing:3.960000px;}
.ls2e{letter-spacing:4.080000px;}
.ls34{letter-spacing:4.140000px;}
.ls1c{letter-spacing:4.200000px;}
.ls82{letter-spacing:4.260000px;}
.ls57{letter-spacing:4.320000px;}
.ls49{letter-spacing:4.500000px;}
.ls16{letter-spacing:4.560000px;}
.ls36{letter-spacing:4.620000px;}
.ls99{letter-spacing:4.752000px;}
.ls6e{letter-spacing:4.800000px;}
.ls7a{letter-spacing:4.980000px;}
.ls17{letter-spacing:5.040000px;}
.ls27{letter-spacing:5.100000px;}
.ls6c{letter-spacing:5.160000px;}
.ls43{letter-spacing:5.400000px;}
.ls3a{letter-spacing:5.460000px;}
.ls54{letter-spacing:5.640000px;}
.ls5{letter-spacing:5.940000px;}
.ls44{letter-spacing:6.060000px;}
.ls50{letter-spacing:6.120000px;}
.ls51{letter-spacing:6.420000px;}
.ls76{letter-spacing:6.540000px;}
.ls42{letter-spacing:6.720000px;}
.ls78{letter-spacing:6.780000px;}
.ls2b{letter-spacing:7.080000px;}
.ls4a{letter-spacing:8.100000px;}
.ls73{letter-spacing:71.184000px;}
.ls5d{letter-spacing:88.176000px;}
.ls74{letter-spacing:102.450000px;}
.ls68{letter-spacing:191.861400px;}
.ls63{letter-spacing:220.489800px;}
.ls61{letter-spacing:230.256000px;}
.ls66{letter-spacing:233.837400px;}
.ls67{letter-spacing:235.618800px;}
.ls6a{letter-spacing:237.400200px;}
.ls62{letter-spacing:248.966400px;}
.ls75{letter-spacing:281.280000px;}
.ls64{letter-spacing:287.239800px;}
.ls65{letter-spacing:300.587400px;}
.ls5e{letter-spacing:315.312000px;}
.ls69{letter-spacing:692.963400px;}
.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:-20.640000px;}
.ws44{word-spacing:-16.980000px;}
.ws11{word-spacing:-16.680000px;}
.ws59{word-spacing:-14.256000px;}
.ws1{word-spacing:-14.178000px;}
.ws5a{word-spacing:-13.440000px;}
.ws32{word-spacing:-13.344000px;}
.ws12{word-spacing:-11.340000px;}
.ws13{word-spacing:-10.008000px;}
.wsc{word-spacing:-5.940000px;}
.ws46{word-spacing:-4.800000px;}
.ws58{word-spacing:-4.260000px;}
.ws3{word-spacing:-2.664000px;}
.ws60{word-spacing:-2.640000px;}
.ws5c{word-spacing:-2.400000px;}
.ws15{word-spacing:-2.220000px;}
.ws4{word-spacing:-1.680000px;}
.ws5d{word-spacing:-1.632000px;}
.ws63{word-spacing:-1.392000px;}
.ws47{word-spacing:-1.380000px;}
.ws36{word-spacing:-1.320000px;}
.ws6c{word-spacing:-1.104000px;}
.ws54{word-spacing:-1.020000px;}
.ws29{word-spacing:-0.960000px;}
.ws37{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.720000px;}
.ws2d{word-spacing:-0.660000px;}
.ws3f{word-spacing:-0.600000px;}
.ws67{word-spacing:-0.528000px;}
.ws66{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.240000px;}
.ws4d{word-spacing:-0.180000px;}
.ws51{word-spacing:-0.120000px;}
.ws26{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.048000px;}
.ws61{word-spacing:0.096000px;}
.ws28{word-spacing:0.120000px;}
.ws40{word-spacing:0.240000px;}
.ws57{word-spacing:0.300000px;}
.ws4a{word-spacing:0.420000px;}
.ws4b{word-spacing:0.540000px;}
.ws6b{word-spacing:0.624000px;}
.ws64{word-spacing:0.720000px;}
.ws4f{word-spacing:0.780000px;}
.ws5e{word-spacing:0.864000px;}
.ws49{word-spacing:0.960000px;}
.ws6d{word-spacing:1.104000px;}
.ws55{word-spacing:1.140000px;}
.ws70{word-spacing:1.584000px;}
.ws1c{word-spacing:1.620000px;}
.ws62{word-spacing:1.728000px;}
.ws38{word-spacing:1.776000px;}
.ws24{word-spacing:1.800000px;}
.ws22{word-spacing:1.860000px;}
.ws42{word-spacing:1.920000px;}
.ws1a{word-spacing:1.980000px;}
.ws6e{word-spacing:2.016000px;}
.ws48{word-spacing:2.040000px;}
.ws1d{word-spacing:2.100000px;}
.ws6a{word-spacing:2.160000px;}
.ws2f{word-spacing:2.220000px;}
.ws9{word-spacing:2.256000px;}
.ws4e{word-spacing:2.280000px;}
.ws27{word-spacing:2.460000px;}
.ws65{word-spacing:2.736000px;}
.wsa{word-spacing:2.784000px;}
.ws2c{word-spacing:2.820000px;}
.ws69{word-spacing:2.880000px;}
.ws1f{word-spacing:3.000000px;}
.ws25{word-spacing:3.120000px;}
.ws68{word-spacing:3.168000px;}
.ws23{word-spacing:3.180000px;}
.ws1b{word-spacing:3.240000px;}
.ws50{word-spacing:3.540000px;}
.ws16{word-spacing:3.600000px;}
.ws4c{word-spacing:3.660000px;}
.ws20{word-spacing:3.780000px;}
.ws6f{word-spacing:3.792000px;}
.ws21{word-spacing:3.840000px;}
.ws1e{word-spacing:3.960000px;}
.ws7{word-spacing:3.984000px;}
.ws17{word-spacing:4.020000px;}
.ws19{word-spacing:4.140000px;}
.ws5f{word-spacing:4.176000px;}
.ws56{word-spacing:4.260000px;}
.ws5b{word-spacing:4.320000px;}
.ws8{word-spacing:4.368000px;}
.ws5{word-spacing:4.416000px;}
.wse{word-spacing:4.440000px;}
.ws30{word-spacing:4.560000px;}
.ws52{word-spacing:4.920000px;}
.ws41{word-spacing:4.980000px;}
.ws18{word-spacing:5.040000px;}
.ws2e{word-spacing:5.100000px;}
.ws10{word-spacing:5.160000px;}
.ws53{word-spacing:5.220000px;}
.wsb{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.ws2b{word-spacing:6.240000px;}
.wsf{word-spacing:8.520000px;}
.ws45{word-spacing:41.856000px;}
.ws3c{word-spacing:49.920000px;}
.ws3b{word-spacing:80.400000px;}
.ws3e{word-spacing:162.384000px;}
.ws33{word-spacing:179.424000px;}
.ws3d{word-spacing:185.088000px;}
.ws31{word-spacing:207.936000px;}
.ws35{word-spacing:280.944000px;}
.ws3a{word-spacing:306.480000px;}
.ws43{word-spacing:1028.304000px;}
.ws39{word-spacing:1062.288000px;}
.ws34{word-spacing:1070.784000px;}
._a{margin-left:-2898.126000px;}
._b{margin-left:-2874.309000px;}
._7{margin-left:-7.500000px;}
._2{margin-left:-6.384000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.630000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.008000px;}
._5{width:1.728000px;}
._6{width:3.636000px;}
._88{width:4.692000px;}
._8{width:5.700000px;}
._9{width:7.747800px;}
._89{width:10.020000px;}
._50{width:19.062000px;}
._3c{width:34.800000px;}
._92{width:38.352000px;}
._61{width:40.343400px;}
._64{width:42.102000px;}
._62{width:45.072000px;}
._4d{width:46.494000px;}
._4b{width:48.144000px;}
._4c{width:49.392000px;}
._58{width:52.320000px;}
._5b{width:53.664000px;}
._8e{width:54.816000px;}
._8d{width:57.840000px;}
._3e{width:59.760000px;}
._34{width:61.488000px;}
._8b{width:63.936000px;}
._51{width:65.664000px;}
._6b{width:67.008000px;}
._8a{width:68.208000px;}
._5d{width:69.670800px;}
._94{width:71.184000px;}
._32{width:72.384000px;}
._3d{width:73.776000px;}
._25{width:74.832000px;}
._9d{width:78.447000px;}
._3f{width:81.024000px;}
._9b{width:82.464000px;}
._54{width:83.568000px;}
._9c{width:84.624000px;}
._4a{width:86.256000px;}
._2e{width:88.102800px;}
._66{width:89.808000px;}
._2d{width:92.400000px;}
._4e{width:94.368000px;}
._40{width:95.904000px;}
._56{width:96.912000px;}
._63{width:97.933800px;}
._38{width:100.992000px;}
._3a{width:105.696000px;}
._46{width:107.616000px;}
._41{width:110.304000px;}
._36{width:112.368000px;}
._26{width:114.336000px;}
._4f{width:119.040000px;}
._48{width:120.960000px;}
._91{width:122.208000px;}
._59{width:125.328000px;}
._39{width:126.480000px;}
._22{width:127.728000px;}
._93{width:129.053400px;}
._57{width:133.776000px;}
._35{width:135.392400px;}
._8f{width:139.824000px;}
._2f{width:140.976000px;}
._9f{width:142.224000px;}
._44{width:144.960000px;}
._29{width:147.696000px;}
._5f{width:148.827000px;}
._97{width:151.893000px;}
._98{width:153.264000px;}
._23{width:158.448000px;}
._52{width:159.792000px;}
._2b{width:161.040000px;}
._95{width:166.464000px;}
._90{width:169.008000px;}
._65{width:170.928000px;}
._2c{width:173.184000px;}
._31{width:174.384000px;}
._30{width:179.856000px;}
._27{width:181.056000px;}
._68{width:186.480000px;}
._28{width:193.200000px;}
._99{width:195.696000px;}
._71{width:199.728000px;}
._6a{width:202.512000px;}
._53{width:205.824000px;}
._49{width:207.769200px;}
._7d{width:209.760000px;}
._42{width:214.416000px;}
._9e{width:215.712000px;}
._10{width:216.768000px;}
._6d{width:218.544000px;}
._1f{width:220.326000px;}
._96{width:222.384000px;}
._43{width:226.038000px;}
._60{width:227.280000px;}
._3b{width:230.352000px;}
._6c{width:231.840000px;}
._37{width:233.040000px;}
._5c{width:239.904000px;}
._2a{width:240.960000px;}
._e{width:242.160000px;}
._1a{width:244.374000px;}
._33{width:249.024000px;}
._5a{width:253.152000px;}
._24{width:254.352000px;}
._20{width:255.360000px;}
._a0{width:256.729200px;}
._1e{width:258.048000px;}
._5e{width:266.448000px;}
._21{width:268.704000px;}
._8c{width:273.216000px;}
._1c{width:279.408000px;}
._19{width:282.096000px;}
._a4{width:285.936000px;}
._74{width:289.104000px;}
._a3{width:290.880000px;}
._1d{width:292.752000px;}
._67{width:298.938600px;}
._7f{width:301.920000px;}
._7c{width:303.840000px;}
._15{width:306.144000px;}
._55{width:312.447600px;}
._47{width:313.513200px;}
._13{width:314.640000px;}
._1b{width:316.752000px;}
._a2{width:317.933400px;}
._17{width:319.392000px;}
._79{width:322.512000px;}
._69{width:332.592000px;}
._81{width:335.808000px;}
._45{width:339.043200px;}
._73{width:341.184000px;}
._9a{width:345.168000px;}
._12{width:358.176000px;}
._7e{width:368.592000px;}
._18{width:388.800000px;}
._70{width:392.922000px;}
._16{width:412.752000px;}
._f{width:416.688000px;}
._84{width:422.016000px;}
._11{width:426.144000px;}
._87{width:431.184000px;}
._78{width:440.544000px;}
._83{width:443.328000px;}
._75{width:459.216000px;}
._a1{width:462.000000px;}
._86{width:475.392000px;}
._7a{width:483.312000px;}
._14{width:484.704000px;}
._85{width:488.688000px;}
._80{width:499.344000px;}
._82{width:505.920000px;}
._72{width:510.000000px;}
._7b{width:512.640000px;}
._77{width:523.296000px;}
._a5{width:533.952000px;}
._76{width:536.688000px;}
._c{width:678.384000px;}
._6e{width:763.440000px;}
._6f{width:909.408000px;}
._d{width:968.928000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y209{bottom:82.796700px;}
.y5e{bottom:83.222100px;}
.y94{bottom:83.363850px;}
.ycb{bottom:83.364000px;}
.y1de{bottom:83.393850px;}
.y2a{bottom:83.493900px;}
.y1bd{bottom:83.513850px;}
.y171{bottom:83.598900px;}
.y156{bottom:83.703750px;}
.y1ac{bottom:84.750750px;}
.y249{bottom:94.938300px;}
.y208{bottom:97.796700px;}
.y155{bottom:100.203750px;}
.y5d{bottom:101.222100px;}
.y1ab{bottom:101.250750px;}
.y93{bottom:101.363850px;}
.yca{bottom:101.364000px;}
.y1dd{bottom:101.393850px;}
.y108{bottom:101.466450px;}
.y1bc{bottom:101.513850px;}
.y170{bottom:104.218050px;}
.y248{bottom:109.938300px;}
.y207{bottom:112.796700px;}
.y154{bottom:116.703750px;}
.y107{bottom:118.566450px;}
.y5c{bottom:119.222100px;}
.y92{bottom:119.363850px;}
.yc9{bottom:119.364000px;}
.y1dc{bottom:119.393850px;}
.y1bb{bottom:119.513850px;}
.yf6{bottom:119.647500px;}
.y15{bottom:121.513200px;}
.y247{bottom:124.938300px;}
.y16f{bottom:125.613150px;}
.y1aa{bottom:126.762750px;}
.y206{bottom:127.796700px;}
.y106{bottom:135.666450px;}
.y5b{bottom:137.222100px;}
.y91{bottom:137.363850px;}
.yc8{bottom:137.364000px;}
.y1db{bottom:137.393850px;}
.y1ba{bottom:137.513850px;}
.yf5{bottom:137.667600px;}
.y246{bottom:139.938300px;}
.y16e{bottom:141.861150px;}
.y153{bottom:142.215750px;}
.y205{bottom:142.796700px;}
.y1a9{bottom:143.010750px;}
.y105{bottom:152.766450px;}
.y245{bottom:154.938300px;}
.y5a{bottom:155.222100px;}
.y90{bottom:155.363850px;}
.yc7{bottom:155.364000px;}
.y1da{bottom:155.393850px;}
.y1b9{bottom:155.513850px;}
.yf4{bottom:155.667600px;}
.y204{bottom:157.796700px;}
.y16d{bottom:158.113200px;}
.y152{bottom:158.463750px;}
.y1a8{bottom:159.258750px;}
.y104{bottom:169.866450px;}
.y244{bottom:169.938300px;}
.y203{bottom:172.796700px;}
.y59{bottom:173.222100px;}
.y8f{bottom:173.363850px;}
.yc6{bottom:173.364000px;}
.y1d9{bottom:173.393850px;}
.y1b8{bottom:173.513850px;}
.yf3{bottom:173.667600px;}
.y16c{bottom:174.381000px;}
.y151{bottom:174.711750px;}
.y1a7{bottom:175.510800px;}
.y243{bottom:184.938300px;}
.y26{bottom:185.414850px;}
.y103{bottom:186.966450px;}
.y202{bottom:187.796700px;}
.y16b{bottom:190.629000px;}
.y150{bottom:190.959750px;}
.y58{bottom:191.222100px;}
.y8e{bottom:191.363850px;}
.yc5{bottom:191.364000px;}
.y1d8{bottom:191.393850px;}
.y1b7{bottom:191.513850px;}
.yf2{bottom:191.667600px;}
.y1a6{bottom:191.774550px;}
.y242{bottom:199.938300px;}
.y201{bottom:202.796700px;}
.y25{bottom:203.414850px;}
.y102{bottom:204.066450px;}
.y16a{bottom:206.877000px;}
.y14f{bottom:207.207750px;}
.y1a5{bottom:208.022550px;}
.y57{bottom:209.222100px;}
.y8d{bottom:209.363850px;}
.yc4{bottom:209.364000px;}
.y1d7{bottom:209.393850px;}
.y1b6{bottom:209.513850px;}
.yf1{bottom:209.667600px;}
.y241{bottom:214.938300px;}
.y200{bottom:217.796700px;}
.y101{bottom:221.166450px;}
.y24{bottom:221.414850px;}
.y169{bottom:223.125000px;}
.y14e{bottom:223.455750px;}
.y1a4{bottom:224.270550px;}
.y56{bottom:227.222100px;}
.y8c{bottom:227.363850px;}
.yc3{bottom:227.364000px;}
.y1b5{bottom:227.513850px;}
.yf0{bottom:227.667600px;}
.y240{bottom:229.938300px;}
.y1ff{bottom:232.796700px;}
.y100{bottom:238.266450px;}
.y168{bottom:239.373000px;}
.y23{bottom:239.414850px;}
.y14d{bottom:239.703750px;}
.y23f{bottom:244.938300px;}
.y55{bottom:245.222100px;}
.y8b{bottom:245.363850px;}
.yc2{bottom:245.364000px;}
.y1d6{bottom:245.393850px;}
.y1b4{bottom:245.513850px;}
.yef{bottom:245.667600px;}
.y1fe{bottom:247.796700px;}
.y1a3{bottom:253.274550px;}
.yff{bottom:255.366450px;}
.y167{bottom:255.624900px;}
.y14c{bottom:255.951750px;}
.y22{bottom:257.414850px;}
.y23e{bottom:259.938300px;}
.y1fd{bottom:262.796700px;}
.y54{bottom:263.222100px;}
.y8a{bottom:263.363850px;}
.yc1{bottom:263.364000px;}
.y1d5{bottom:263.393850px;}
.y1b3{bottom:263.513850px;}
.yee{bottom:263.667600px;}
.y166{bottom:271.876950px;}
.y14b{bottom:272.199750px;}
.yfe{bottom:272.466450px;}
.y23d{bottom:274.938300px;}
.y21{bottom:275.414850px;}
.y1fc{bottom:277.796700px;}
.y53{bottom:281.222100px;}
.y89{bottom:281.363850px;}
.yc0{bottom:281.364000px;}
.y1d4{bottom:281.393850px;}
.y1b2{bottom:281.513850px;}
.yed{bottom:281.667600px;}
.y1a2{bottom:282.278550px;}
.y165{bottom:288.124950px;}
.y14a{bottom:288.447750px;}
.yfd{bottom:289.566450px;}
.y23c{bottom:289.938300px;}
.y1fb{bottom:292.796700px;}
.y20{bottom:293.414850px;}
.y52{bottom:299.222100px;}
.y88{bottom:299.363850px;}
.ybf{bottom:299.364000px;}
.y1d3{bottom:299.393850px;}
.y1b1{bottom:299.513850px;}
.yec{bottom:299.667600px;}
.y149{bottom:304.695750px;}
.y23b{bottom:304.938300px;}
.yfc{bottom:306.666450px;}
.y1fa{bottom:307.796700px;}
.y1f{bottom:311.414850px;}
.y1a1{bottom:314.618850px;}
.y163{bottom:317.132850px;}
.y162{bottom:317.136750px;}
.y51{bottom:317.222100px;}
.y87{bottom:317.363850px;}
.ybe{bottom:317.364000px;}
.y1d2{bottom:317.393850px;}
.y1b0{bottom:317.513850px;}
.y23a{bottom:319.938300px;}
.y148{bottom:320.943750px;}
.y1f9{bottom:322.796700px;}
.yfb{bottom:323.766450px;}
.y1e{bottom:329.414850px;}
.y164{bottom:333.632850px;}
.y161{bottom:333.636750px;}
.y1a0{bottom:334.118850px;}
.y239{bottom:334.938300px;}
.y50{bottom:335.222100px;}
.y86{bottom:335.363850px;}
.ybd{bottom:335.364000px;}
.y1d1{bottom:335.393850px;}
.y1af{bottom:335.513850px;}
.yeb{bottom:335.667600px;}
.y147{bottom:337.191750px;}
.y1f8{bottom:337.796700px;}
.y1d{bottom:347.414850px;}
.y238{bottom:349.938300px;}
.yfa{bottom:352.770450px;}
.y1f7{bottom:352.796700px;}
.y4f{bottom:353.222100px;}
.y85{bottom:353.363850px;}
.ybc{bottom:353.364000px;}
.y1d0{bottom:353.393850px;}
.y146{bottom:353.439750px;}
.y1ae{bottom:353.513850px;}
.y160{bottom:362.640750px;}
.y237{bottom:364.938300px;}
.y1c{bottom:365.414850px;}
.y1f6{bottom:367.796700px;}
.y145{bottom:369.687750px;}
.y4e{bottom:371.222100px;}
.y84{bottom:371.363850px;}
.ybb{bottom:371.364000px;}
.y1cf{bottom:371.393850px;}
.y1ad{bottom:371.513850px;}
.yea{bottom:371.517600px;}
.y236{bottom:379.938300px;}
.yf9{bottom:381.774450px;}
.y1f5{bottom:382.796700px;}
.y1b{bottom:383.414850px;}
.y4d{bottom:389.222100px;}
.y83{bottom:389.363850px;}
.yba{bottom:389.364000px;}
.y1ce{bottom:389.393850px;}
.y17c{bottom:389.513850px;}
.ye9{bottom:389.517600px;}
.y19f{bottom:389.528850px;}
.y235{bottom:394.938300px;}
.y15f{bottom:394.954200px;}
.y1f4{bottom:397.796700px;}
.y144{bottom:398.691750px;}
.y1a{bottom:401.414850px;}
.y4c{bottom:407.222100px;}
.y82{bottom:407.363850px;}
.yb9{bottom:407.364000px;}
.y1cd{bottom:407.393850px;}
.y17b{bottom:407.513850px;}
.ye8{bottom:407.517600px;}
.y19e{bottom:407.528850px;}
.y234{bottom:409.938300px;}
.y1f3{bottom:412.796700px;}
.yf8{bottom:414.088050px;}
.y15e{bottom:414.454200px;}
.y19{bottom:419.414850px;}
.y233{bottom:424.938300px;}
.y4b{bottom:425.222100px;}
.y81{bottom:425.363850px;}
.yb8{bottom:425.364000px;}
.y1cc{bottom:425.393850px;}
.y17a{bottom:425.513850px;}
.ye7{bottom:425.517600px;}
.y19d{bottom:425.528850px;}
.y143{bottom:427.695750px;}
.y1f2{bottom:427.796700px;}
.yf7{bottom:433.588050px;}
.y18{bottom:437.414850px;}
.y232{bottom:439.938300px;}
.y1f1{bottom:442.796700px;}
.y4a{bottom:443.228850px;}
.y80{bottom:443.363850px;}
.yb7{bottom:443.364000px;}
.y1cb{bottom:443.393850px;}
.y179{bottom:443.513850px;}
.ye6{bottom:443.517600px;}
.y19c{bottom:443.528850px;}
.y231{bottom:454.938300px;}
.y17{bottom:455.414850px;}
.y1f0{bottom:457.796700px;}
.y142{bottom:460.009350px;}
.y15d{bottom:460.371450px;}
.y49{bottom:461.228850px;}
.y7f{bottom:461.363850px;}
.yb6{bottom:461.364000px;}
.y1ca{bottom:461.393850px;}
.y173{bottom:461.513850px;}
.ye5{bottom:461.517600px;}
.y19b{bottom:461.528850px;}
.y230{bottom:469.938300px;}
.y1ef{bottom:472.796700px;}
.y27{bottom:473.414850px;}
.y15c{bottom:476.130300px;}
.y48{bottom:479.228850px;}
.y7e{bottom:479.363850px;}
.yb5{bottom:479.364000px;}
.y1c9{bottom:479.393850px;}
.y141{bottom:479.509350px;}
.y178{bottom:479.513850px;}
.ye4{bottom:479.517600px;}
.y19a{bottom:479.528850px;}
.y129{bottom:479.894250px;}
.y22f{bottom:484.938300px;}
.y1ee{bottom:487.796700px;}
.y16{bottom:491.414850px;}
.y15b{bottom:491.874300px;}
.y47{bottom:497.228850px;}
.y7d{bottom:497.363850px;}
.yb4{bottom:497.364000px;}
.y1c8{bottom:497.393850px;}
.y172{bottom:497.513850px;}
.ye3{bottom:497.517600px;}
.y22e{bottom:499.940700px;}
.y128{bottom:500.513400px;}
.y1ed{bottom:502.796700px;}
.y15a{bottom:507.618300px;}
.y22d{bottom:514.940700px;}
.y46{bottom:515.228850px;}
.y7c{bottom:515.363850px;}
.yb3{bottom:515.364000px;}
.y1c7{bottom:515.393850px;}
.y177{bottom:515.513850px;}
.ye2{bottom:515.517600px;}
.y199{bottom:515.528850px;}
.y1ec{bottom:517.796700px;}
.y127{bottom:521.905350px;}
.y140{bottom:525.815400px;}
.y22c{bottom:529.940700px;}
.y174{bottom:532.686000px;}
.y45{bottom:533.228850px;}
.y7b{bottom:533.363850px;}
.yb2{bottom:533.364000px;}
.y176{bottom:533.513850px;}
.ye1{bottom:533.517600px;}
.y126{bottom:538.405350px;}
.y22b{bottom:544.940700px;}
.y13f{bottom:546.434550px;}
.y44{bottom:551.228850px;}
.y1eb{bottom:551.232600px;}
.y7a{bottom:551.363850px;}
.yb1{bottom:551.364000px;}
.y198{bottom:551.378850px;}
.y1c6{bottom:551.393850px;}
.ye0{bottom:551.517600px;}
.y125{bottom:555.505350px;}
.y22a{bottom:559.940700px;}
.y14{bottom:567.329700px;}
.y13e{bottom:567.825750px;}
.y43{bottom:569.228850px;}
.y79{bottom:569.363850px;}
.yb0{bottom:569.364000px;}
.y197{bottom:569.378850px;}
.y175{bottom:569.513850px;}
.ydf{bottom:569.517600px;}
.y124{bottom:572.605350px;}
.y229{bottom:574.940700px;}
.y13d{bottom:584.077650px;}
.y42{bottom:587.228850px;}
.y1c5{bottom:587.243850px;}
.y78{bottom:587.363850px;}
.yaf{bottom:587.364000px;}
.y196{bottom:587.378850px;}
.yde{bottom:587.517600px;}
.y123{bottom:589.733700px;}
.y228{bottom:589.940700px;}
.y13{bottom:600.185700px;}
.y13c{bottom:600.329700px;}
.y227{bottom:604.940700px;}
.y41{bottom:605.228850px;}
.y1c4{bottom:605.243850px;}
.y77{bottom:605.363850px;}
.yae{bottom:605.364000px;}
.y1ea{bottom:605.367600px;}
.y195{bottom:605.378850px;}
.ydd{bottom:605.517600px;}
.y122{bottom:606.233700px;}
.y12{bottom:615.185700px;}
.y13b{bottom:616.581600px;}
.y226{bottom:619.940700px;}
.y40{bottom:623.228850px;}
.y1c3{bottom:623.243850px;}
.y121{bottom:623.333700px;}
.y76{bottom:623.363850px;}
.yad{bottom:623.364000px;}
.y1e9{bottom:623.367600px;}
.y194{bottom:623.378850px;}
.ydc{bottom:623.517600px;}
.y11{bottom:630.185700px;}
.y13a{bottom:632.833650px;}
.y225{bottom:634.940700px;}
.y120{bottom:639.833700px;}
.y3f{bottom:641.228850px;}
.y1c2{bottom:641.243850px;}
.y75{bottom:641.363850px;}
.yac{bottom:641.364000px;}
.y1e8{bottom:641.367600px;}
.y193{bottom:641.378850px;}
.ydb{bottom:641.517600px;}
.y10{bottom:645.194550px;}
.y139{bottom:649.085550px;}
.y224{bottom:649.940700px;}
.y11f{bottom:656.933700px;}
.y3e{bottom:659.228850px;}
.y1c1{bottom:659.243850px;}
.y74{bottom:659.363850px;}
.yab{bottom:659.364000px;}
.y1e7{bottom:659.367600px;}
.y192{bottom:659.378850px;}
.yda{bottom:659.517600px;}
.yf{bottom:660.194550px;}
.y223{bottom:664.940700px;}
.y138{bottom:665.337600px;}
.y11e{bottom:674.033700px;}
.ye{bottom:675.194550px;}
.y3d{bottom:677.228850px;}
.y1c0{bottom:677.243850px;}
.y73{bottom:677.363850px;}
.yaa{bottom:677.364000px;}
.y1e6{bottom:677.367600px;}
.y191{bottom:677.378850px;}
.yd9{bottom:677.517600px;}
.y222{bottom:679.940700px;}
.y137{bottom:681.589500px;}
.yd{bottom:690.194550px;}
.y11d{bottom:691.133700px;}
.y221{bottom:694.940700px;}
.y3c{bottom:695.228850px;}
.y1bf{bottom:695.243850px;}
.y72{bottom:695.363850px;}
.ya9{bottom:695.364000px;}
.y1e5{bottom:695.367600px;}
.y190{bottom:695.378850px;}
.yd8{bottom:695.517600px;}
.y136{bottom:697.841400px;}
.yc{bottom:705.194550px;}
.y11c{bottom:708.233700px;}
.y220{bottom:709.940700px;}
.y71{bottom:713.363850px;}
.ya8{bottom:713.364000px;}
.y1e4{bottom:713.367600px;}
.y18f{bottom:713.378850px;}
.yd7{bottom:713.517600px;}
.y135{bottom:714.093450px;}
.yb{bottom:720.194550px;}
.y21f{bottom:724.940700px;}
.y11b{bottom:725.333700px;}
.y134{bottom:730.345350px;}
.y3b{bottom:731.228850px;}
.y1be{bottom:731.243850px;}
.y70{bottom:731.363850px;}
.ya7{bottom:731.364000px;}
.y18e{bottom:731.378850px;}
.y21e{bottom:739.940700px;}
.y11a{bottom:742.433700px;}
.y133{bottom:746.597400px;}
.y6f{bottom:749.363850px;}
.ya6{bottom:749.364000px;}
.y1e3{bottom:749.367600px;}
.y18d{bottom:749.378850px;}
.yd6{bottom:749.517600px;}
.y21d{bottom:754.940700px;}
.y119{bottom:758.933700px;}
.y132{bottom:762.845400px;}
.y6e{bottom:767.363850px;}
.ya5{bottom:767.364000px;}
.y1e2{bottom:767.367600px;}
.y18c{bottom:767.378850px;}
.ya{bottom:768.938550px;}
.y21c{bottom:769.940700px;}
.y118{bottom:776.033700px;}
.y131{bottom:779.349300px;}
.y9{bottom:783.338550px;}
.y21b{bottom:784.940700px;}
.y6d{bottom:785.357100px;}
.y3a{bottom:785.363850px;}
.ya4{bottom:785.364000px;}
.yd5{bottom:785.367600px;}
.y18b{bottom:785.378850px;}
.y117{bottom:792.533700px;}
.y130{bottom:795.597300px;}
.y21a{bottom:799.940700px;}
.y6c{bottom:803.357100px;}
.y39{bottom:803.363850px;}
.ya3{bottom:803.364000px;}
.yd4{bottom:803.367600px;}
.y18a{bottom:803.378850px;}
.y116{bottom:809.633700px;}
.y8{bottom:810.494550px;}
.y219{bottom:814.940700px;}
.y6b{bottom:821.357100px;}
.y38{bottom:821.363850px;}
.ya2{bottom:821.364000px;}
.yd3{bottom:821.367600px;}
.y189{bottom:821.378850px;}
.y12e{bottom:824.605200px;}
.y115{bottom:826.133700px;}
.y218{bottom:829.940700px;}
.y6a{bottom:839.357100px;}
.y37{bottom:839.363850px;}
.ya1{bottom:839.364000px;}
.yd2{bottom:839.367600px;}
.y188{bottom:839.378850px;}
.y12f{bottom:841.105200px;}
.y12d{bottom:841.109100px;}
.y114{bottom:843.233700px;}
.y217{bottom:844.940700px;}
.y7{bottom:844.994550px;}
.y69{bottom:857.357100px;}
.y36{bottom:857.363850px;}
.ya0{bottom:857.364000px;}
.yd1{bottom:857.367600px;}
.y187{bottom:857.378850px;}
.y113{bottom:859.733700px;}
.y216{bottom:859.940700px;}
.y6{bottom:861.494550px;}
.y12c{bottom:870.113100px;}
.y215{bottom:874.940700px;}
.y159{bottom:875.228850px;}
.y68{bottom:875.357100px;}
.y35{bottom:875.363850px;}
.y9f{bottom:875.364000px;}
.y1e1{bottom:875.367600px;}
.y186{bottom:875.378850px;}
.y112{bottom:876.838350px;}
.y5{bottom:880.879800px;}
.y214{bottom:889.940700px;}
.y67{bottom:893.357100px;}
.y34{bottom:893.363850px;}
.y9e{bottom:893.364000px;}
.yd0{bottom:893.367600px;}
.y185{bottom:893.378850px;}
.y111{bottom:893.938350px;}
.y12b{bottom:902.426550px;}
.y213{bottom:904.940700px;}
.y4{bottom:908.269200px;}
.y110{bottom:911.038350px;}
.y66{bottom:911.357100px;}
.y33{bottom:911.363850px;}
.y9d{bottom:911.364000px;}
.y184{bottom:911.378850px;}
.y212{bottom:919.940700px;}
.y12a{bottom:921.926550px;}
.ycf{bottom:929.232600px;}
.y65{bottom:929.357100px;}
.y32{bottom:929.363850px;}
.y9c{bottom:929.364000px;}
.y1e0{bottom:929.367600px;}
.y183{bottom:929.378850px;}
.y211{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.y10f{bottom:940.046250px;}
.y10d{bottom:940.050150px;}
.y64{bottom:947.357100px;}
.y31{bottom:947.363850px;}
.y9b{bottom:947.364000px;}
.y1df{bottom:947.367600px;}
.y182{bottom:947.378850px;}
.y210{bottom:949.940700px;}
.y10e{bottom:956.546250px;}
.y10c{bottom:956.550150px;}
.y20f{bottom:964.940700px;}
.y63{bottom:965.357100px;}
.y30{bottom:965.363850px;}
.y9a{bottom:965.364000px;}
.y157{bottom:965.367600px;}
.y181{bottom:965.378850px;}
.y20e{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y62{bottom:983.357100px;}
.y2f{bottom:983.363850px;}
.y99{bottom:983.364000px;}
.yce{bottom:983.367600px;}
.y180{bottom:983.378850px;}
.y10b{bottom:985.554150px;}
.y20d{bottom:994.940700px;}
.y61{bottom:1001.357100px;}
.y2e{bottom:1001.363850px;}
.y98{bottom:1001.364000px;}
.ycd{bottom:1001.367600px;}
.y17f{bottom:1001.378850px;}
.y24c{bottom:1009.938300px;}
.y20c{bottom:1009.940700px;}
.y10a{bottom:1017.867600px;}
.y60{bottom:1019.357100px;}
.y2d{bottom:1019.363850px;}
.y97{bottom:1019.364000px;}
.ycc{bottom:1019.367600px;}
.y17e{bottom:1019.378850px;}
.y24b{bottom:1024.938300px;}
.y20b{bottom:1024.940700px;}
.y5f{bottom:1037.357100px;}
.y2c{bottom:1037.363850px;}
.y96{bottom:1037.364000px;}
.y109{bottom:1037.367600px;}
.y17d{bottom:1037.378850px;}
.y24a{bottom:1039.938300px;}
.y20a{bottom:1039.940700px;}
.y29{bottom:1070.769450px;}
.y95{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.y158{bottom:1086.069600px;}
.h14{height:20.995312px;}
.h2{height:30.618164px;}
.h7{height:34.968750px;}
.h8{height:34.983187px;}
.h6{height:34.992188px;}
.hc{height:37.179199px;}
.h13{height:37.453313px;}
.h15{height:37.455713px;}
.h11{height:37.456312px;}
.h12{height:37.471912px;}
.h9{height:43.681641px;}
.hb{height:43.710938px;}
.ha{height:43.740234px;}
.h10{height:43.754634px;}
.hd{height:46.813341px;}
.hf{height:46.839741px;}
.he{height:46.866741px;}
.h5{height:48.114258px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:70.582650px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x24{left:99.921300px;}
.x35{left:106.299150px;}
.xb{left:110.555400px;}
.x3{left:125.431200px;}
.x33{left:127.555350px;}
.x6{left:131.816400px;}
.xc{left:144.725400px;}
.x4{left:161.587200px;}
.x30{left:185.536200px;}
.x2b{left:198.875400px;}
.x5{left:212.876400px;}
.x2d{left:215.649450px;}
.x16{left:220.849350px;}
.x2a{left:269.757300px;}
.x17{left:332.859600px;}
.x18{left:335.511600px;}
.x25{left:350.035200px;}
.x2c{left:351.993450px;}
.x23{left:377.505300px;}
.x1a{left:418.537950px;}
.x19{left:432.865950px;}
.x2e{left:439.797750px;}
.x9{left:455.041500px;}
.xd{left:457.085100px;}
.x11{left:478.346400px;}
.x7{left:480.476400px;}
.x27{left:486.569400px;}
.xe{left:491.105100px;}
.x26{left:500.897400px;}
.x34{left:508.075350px;}
.x13{left:512.365650px;}
.x1b{left:528.157950px;}
.x2f{left:543.045750px;}
.x32{left:570.679500px;}
.x28{left:589.817400px;}
.x20{left:603.243450px;}
.x1c{left:607.947450px;}
.x12{left:612.910650px;}
.x21{left:616.599450px;}
.x1f{left:632.919450px;}
.x1d{left:636.291450px;}
.x1e{left:644.607450px;}
.x22{left:651.301350px;}
.x10{left:663.492300px;}
.x29{left:696.730950px;}
.x2{left:704.338650px;}
.x36{left:717.130200px;}
.xf{left:724.221150px;}
.x14{left:745.480950px;}
@media print{
.v5{vertical-align:-14.645867pt;}
.v1{vertical-align:-2.452267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.420800pt;}
.v4{vertical-align:14.632000pt;}
.v3{vertical-align:18.283733pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls6b{letter-spacing:-0.213333pt;}
.ls9e{letter-spacing:-0.170667pt;}
.ls5c{letter-spacing:-0.106667pt;}
.ls7b{letter-spacing:-0.085333pt;}
.ls4b{letter-spacing:-0.053333pt;}
.ls25{letter-spacing:-0.042667pt;}
.ls23{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.003733pt;}
.ls5f{letter-spacing:0.004267pt;}
.ls7d{letter-spacing:0.004800pt;}
.ls97{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls90{letter-spacing:0.085333pt;}
.ls4{letter-spacing:0.096533pt;}
.ls8{letter-spacing:0.106667pt;}
.ls8a{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls30{letter-spacing:0.213333pt;}
.ls9c{letter-spacing:0.256000pt;}
.ls58{letter-spacing:0.266667pt;}
.ls31{letter-spacing:0.320000pt;}
.ls8d{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.373333pt;}
.ls91{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls93{letter-spacing:0.469333pt;}
.ls20{letter-spacing:0.480000pt;}
.ls7e{letter-spacing:0.486933pt;}
.ls7f{letter-spacing:0.487467pt;}
.ls41{letter-spacing:0.510933pt;}
.ls0{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.533333pt;}
.ls9b{letter-spacing:0.554667pt;}
.ls35{letter-spacing:0.557867pt;}
.ls38{letter-spacing:0.586667pt;}
.ls87{letter-spacing:0.597333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.693333pt;}
.ls88{letter-spacing:0.725333pt;}
.lsf{letter-spacing:0.746667pt;}
.ls85{letter-spacing:0.768000pt;}
.ls40{letter-spacing:0.794667pt;}
.lsb{letter-spacing:0.800000pt;}
.ls1{letter-spacing:0.810667pt;}
.ls2f{letter-spacing:0.853333pt;}
.ls9d{letter-spacing:0.896000pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls70{letter-spacing:0.938667pt;}
.ls5b{letter-spacing:0.939200pt;}
.ls83{letter-spacing:0.960000pt;}
.ls95{letter-spacing:0.981333pt;}
.ls37{letter-spacing:1.013333pt;}
.ls89{letter-spacing:1.024000pt;}
.ls47{letter-spacing:1.030400pt;}
.ls19{letter-spacing:1.066667pt;}
.ls8b{letter-spacing:1.109333pt;}
.ls22{letter-spacing:1.120000pt;}
.ls46{letter-spacing:1.173333pt;}
.ls4c{letter-spacing:1.184000pt;}
.ls28{letter-spacing:1.226667pt;}
.ls8c{letter-spacing:1.237333pt;}
.ls72{letter-spacing:1.253333pt;}
.ls4d{letter-spacing:1.266133pt;}
.ls5a{letter-spacing:1.280000pt;}
.ls8f{letter-spacing:1.322667pt;}
.ls3f{letter-spacing:1.333333pt;}
.ls55{letter-spacing:1.386667pt;}
.ls9f{letter-spacing:1.408000pt;}
.ls7{letter-spacing:1.440000pt;}
.ls84{letter-spacing:1.450667pt;}
.ls1d{letter-spacing:1.493333pt;}
.ls92{letter-spacing:1.536000pt;}
.lsc{letter-spacing:1.546667pt;}
.ls4e{letter-spacing:1.600000pt;}
.ls1b{letter-spacing:1.653333pt;}
.ls15{letter-spacing:1.706667pt;}
.ls14{letter-spacing:1.760000pt;}
.ls13{letter-spacing:1.813333pt;}
.ls81{letter-spacing:1.866667pt;}
.ls10{letter-spacing:1.920000pt;}
.ls3c{letter-spacing:1.973333pt;}
.ls96{letter-spacing:2.005333pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls86{letter-spacing:2.048000pt;}
.ls3e{letter-spacing:2.080000pt;}
.ls71{letter-spacing:2.090667pt;}
.ls48{letter-spacing:2.133333pt;}
.ls3d{letter-spacing:2.186667pt;}
.ls9a{letter-spacing:2.218667pt;}
.ls29{letter-spacing:2.240000pt;}
.ls98{letter-spacing:2.261333pt;}
.ls21{letter-spacing:2.293333pt;}
.ls94{letter-spacing:2.304000pt;}
.ls11{letter-spacing:2.346667pt;}
.ls2d{letter-spacing:2.400000pt;}
.lse{letter-spacing:2.453333pt;}
.ls7c{letter-spacing:2.506667pt;}
.ls6d{letter-spacing:2.560000pt;}
.ls8e{letter-spacing:2.602667pt;}
.ls33{letter-spacing:2.613333pt;}
.ls9{letter-spacing:2.666667pt;}
.ls3b{letter-spacing:2.720000pt;}
.ls26{letter-spacing:2.773333pt;}
.ls59{letter-spacing:2.826667pt;}
.ls80{letter-spacing:2.875733pt;}
.ls4f{letter-spacing:2.933333pt;}
.lsa{letter-spacing:2.986667pt;}
.ls1a{letter-spacing:3.040000pt;}
.ls32{letter-spacing:3.093333pt;}
.ls77{letter-spacing:3.146667pt;}
.ls2c{letter-spacing:3.200000pt;}
.ls6f{letter-spacing:3.253333pt;}
.ls52{letter-spacing:3.306667pt;}
.ls2a{letter-spacing:3.360000pt;}
.ls45{letter-spacing:3.413333pt;}
.ls79{letter-spacing:3.466667pt;}
.ls6{letter-spacing:3.520000pt;}
.ls2e{letter-spacing:3.626667pt;}
.ls34{letter-spacing:3.680000pt;}
.ls1c{letter-spacing:3.733333pt;}
.ls82{letter-spacing:3.786667pt;}
.ls57{letter-spacing:3.840000pt;}
.ls49{letter-spacing:4.000000pt;}
.ls16{letter-spacing:4.053333pt;}
.ls36{letter-spacing:4.106667pt;}
.ls99{letter-spacing:4.224000pt;}
.ls6e{letter-spacing:4.266667pt;}
.ls7a{letter-spacing:4.426667pt;}
.ls17{letter-spacing:4.480000pt;}
.ls27{letter-spacing:4.533333pt;}
.ls6c{letter-spacing:4.586667pt;}
.ls43{letter-spacing:4.800000pt;}
.ls3a{letter-spacing:4.853333pt;}
.ls54{letter-spacing:5.013333pt;}
.ls5{letter-spacing:5.280000pt;}
.ls44{letter-spacing:5.386667pt;}
.ls50{letter-spacing:5.440000pt;}
.ls51{letter-spacing:5.706667pt;}
.ls76{letter-spacing:5.813333pt;}
.ls42{letter-spacing:5.973333pt;}
.ls78{letter-spacing:6.026667pt;}
.ls2b{letter-spacing:6.293333pt;}
.ls4a{letter-spacing:7.200000pt;}
.ls73{letter-spacing:63.274667pt;}
.ls5d{letter-spacing:78.378667pt;}
.ls74{letter-spacing:91.066667pt;}
.ls68{letter-spacing:170.543467pt;}
.ls63{letter-spacing:195.990933pt;}
.ls61{letter-spacing:204.672000pt;}
.ls66{letter-spacing:207.855467pt;}
.ls67{letter-spacing:209.438933pt;}
.ls6a{letter-spacing:211.022400pt;}
.ls62{letter-spacing:221.303467pt;}
.ls75{letter-spacing:250.026667pt;}
.ls64{letter-spacing:255.324267pt;}
.ls65{letter-spacing:267.188800pt;}
.ls5e{letter-spacing:280.277333pt;}
.ls69{letter-spacing:615.967467pt;}
.ws0{word-spacing:-18.346667pt;}
.ws44{word-spacing:-15.093333pt;}
.ws11{word-spacing:-14.826667pt;}
.ws59{word-spacing:-12.672000pt;}
.ws1{word-spacing:-12.602667pt;}
.ws5a{word-spacing:-11.946667pt;}
.ws32{word-spacing:-11.861333pt;}
.ws12{word-spacing:-10.080000pt;}
.ws13{word-spacing:-8.896000pt;}
.wsc{word-spacing:-5.280000pt;}
.ws46{word-spacing:-4.266667pt;}
.ws58{word-spacing:-3.786667pt;}
.ws3{word-spacing:-2.368000pt;}
.ws60{word-spacing:-2.346667pt;}
.ws5c{word-spacing:-2.133333pt;}
.ws15{word-spacing:-1.973333pt;}
.ws4{word-spacing:-1.493333pt;}
.ws5d{word-spacing:-1.450667pt;}
.ws63{word-spacing:-1.237333pt;}
.ws47{word-spacing:-1.226667pt;}
.ws36{word-spacing:-1.173333pt;}
.ws6c{word-spacing:-0.981333pt;}
.ws54{word-spacing:-0.906667pt;}
.ws29{word-spacing:-0.853333pt;}
.ws37{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws2d{word-spacing:-0.586667pt;}
.ws3f{word-spacing:-0.533333pt;}
.ws67{word-spacing:-0.469333pt;}
.ws66{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.213333pt;}
.ws4d{word-spacing:-0.160000pt;}
.ws51{word-spacing:-0.106667pt;}
.ws26{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.042667pt;}
.ws61{word-spacing:0.085333pt;}
.ws28{word-spacing:0.106667pt;}
.ws40{word-spacing:0.213333pt;}
.ws57{word-spacing:0.266667pt;}
.ws4a{word-spacing:0.373333pt;}
.ws4b{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.554667pt;}
.ws64{word-spacing:0.640000pt;}
.ws4f{word-spacing:0.693333pt;}
.ws5e{word-spacing:0.768000pt;}
.ws49{word-spacing:0.853333pt;}
.ws6d{word-spacing:0.981333pt;}
.ws55{word-spacing:1.013333pt;}
.ws70{word-spacing:1.408000pt;}
.ws1c{word-spacing:1.440000pt;}
.ws62{word-spacing:1.536000pt;}
.ws38{word-spacing:1.578667pt;}
.ws24{word-spacing:1.600000pt;}
.ws22{word-spacing:1.653333pt;}
.ws42{word-spacing:1.706667pt;}
.ws1a{word-spacing:1.760000pt;}
.ws6e{word-spacing:1.792000pt;}
.ws48{word-spacing:1.813333pt;}
.ws1d{word-spacing:1.866667pt;}
.ws6a{word-spacing:1.920000pt;}
.ws2f{word-spacing:1.973333pt;}
.ws9{word-spacing:2.005333pt;}
.ws4e{word-spacing:2.026667pt;}
.ws27{word-spacing:2.186667pt;}
.ws65{word-spacing:2.432000pt;}
.wsa{word-spacing:2.474667pt;}
.ws2c{word-spacing:2.506667pt;}
.ws69{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.666667pt;}
.ws25{word-spacing:2.773333pt;}
.ws68{word-spacing:2.816000pt;}
.ws23{word-spacing:2.826667pt;}
.ws1b{word-spacing:2.880000pt;}
.ws50{word-spacing:3.146667pt;}
.ws16{word-spacing:3.200000pt;}
.ws4c{word-spacing:3.253333pt;}
.ws20{word-spacing:3.360000pt;}
.ws6f{word-spacing:3.370667pt;}
.ws21{word-spacing:3.413333pt;}
.ws1e{word-spacing:3.520000pt;}
.ws7{word-spacing:3.541333pt;}
.ws17{word-spacing:3.573333pt;}
.ws19{word-spacing:3.680000pt;}
.ws5f{word-spacing:3.712000pt;}
.ws56{word-spacing:3.786667pt;}
.ws5b{word-spacing:3.840000pt;}
.ws8{word-spacing:3.882667pt;}
.ws5{word-spacing:3.925333pt;}
.wse{word-spacing:3.946667pt;}
.ws30{word-spacing:4.053333pt;}
.ws52{word-spacing:4.373333pt;}
.ws41{word-spacing:4.426667pt;}
.ws18{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.533333pt;}
.ws10{word-spacing:4.586667pt;}
.ws53{word-spacing:4.640000pt;}
.wsb{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.ws2b{word-spacing:5.546667pt;}
.wsf{word-spacing:7.573333pt;}
.ws45{word-spacing:37.205333pt;}
.ws3c{word-spacing:44.373333pt;}
.ws3b{word-spacing:71.466667pt;}
.ws3e{word-spacing:144.341333pt;}
.ws33{word-spacing:159.488000pt;}
.ws3d{word-spacing:164.522667pt;}
.ws31{word-spacing:184.832000pt;}
.ws35{word-spacing:249.728000pt;}
.ws3a{word-spacing:272.426667pt;}
.ws43{word-spacing:914.048000pt;}
.ws39{word-spacing:944.256000pt;}
.ws34{word-spacing:951.808000pt;}
._a{margin-left:-2576.112000pt;}
._b{margin-left:-2554.941333pt;}
._7{margin-left:-6.666667pt;}
._2{margin-left:-5.674667pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.226667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.896000pt;}
._5{width:1.536000pt;}
._6{width:3.232000pt;}
._88{width:4.170667pt;}
._8{width:5.066667pt;}
._9{width:6.886933pt;}
._89{width:8.906667pt;}
._50{width:16.944000pt;}
._3c{width:30.933333pt;}
._92{width:34.090667pt;}
._61{width:35.860800pt;}
._64{width:37.424000pt;}
._62{width:40.064000pt;}
._4d{width:41.328000pt;}
._4b{width:42.794667pt;}
._4c{width:43.904000pt;}
._58{width:46.506667pt;}
._5b{width:47.701333pt;}
._8e{width:48.725333pt;}
._8d{width:51.413333pt;}
._3e{width:53.120000pt;}
._34{width:54.656000pt;}
._8b{width:56.832000pt;}
._51{width:58.368000pt;}
._6b{width:59.562667pt;}
._8a{width:60.629333pt;}
._5d{width:61.929600pt;}
._94{width:63.274667pt;}
._32{width:64.341333pt;}
._3d{width:65.578667pt;}
._25{width:66.517333pt;}
._9d{width:69.730667pt;}
._3f{width:72.021333pt;}
._9b{width:73.301333pt;}
._54{width:74.282667pt;}
._9c{width:75.221333pt;}
._4a{width:76.672000pt;}
._2e{width:78.313600pt;}
._66{width:79.829333pt;}
._2d{width:82.133333pt;}
._4e{width:83.882667pt;}
._40{width:85.248000pt;}
._56{width:86.144000pt;}
._63{width:87.052267pt;}
._38{width:89.770667pt;}
._3a{width:93.952000pt;}
._46{width:95.658667pt;}
._41{width:98.048000pt;}
._36{width:99.882667pt;}
._26{width:101.632000pt;}
._4f{width:105.813333pt;}
._48{width:107.520000pt;}
._91{width:108.629333pt;}
._59{width:111.402667pt;}
._39{width:112.426667pt;}
._22{width:113.536000pt;}
._93{width:114.714133pt;}
._57{width:118.912000pt;}
._35{width:120.348800pt;}
._8f{width:124.288000pt;}
._2f{width:125.312000pt;}
._9f{width:126.421333pt;}
._44{width:128.853333pt;}
._29{width:131.285333pt;}
._5f{width:132.290667pt;}
._97{width:135.016000pt;}
._98{width:136.234667pt;}
._23{width:140.842667pt;}
._52{width:142.037333pt;}
._2b{width:143.146667pt;}
._95{width:147.968000pt;}
._90{width:150.229333pt;}
._65{width:151.936000pt;}
._2c{width:153.941333pt;}
._31{width:155.008000pt;}
._30{width:159.872000pt;}
._27{width:160.938667pt;}
._68{width:165.760000pt;}
._28{width:171.733333pt;}
._99{width:173.952000pt;}
._71{width:177.536000pt;}
._6a{width:180.010667pt;}
._53{width:182.954667pt;}
._49{width:184.683733pt;}
._7d{width:186.453333pt;}
._42{width:190.592000pt;}
._9e{width:191.744000pt;}
._10{width:192.682667pt;}
._6d{width:194.261333pt;}
._1f{width:195.845333pt;}
._96{width:197.674667pt;}
._43{width:200.922667pt;}
._60{width:202.026667pt;}
._3b{width:204.757333pt;}
._6c{width:206.080000pt;}
._37{width:207.146667pt;}
._5c{width:213.248000pt;}
._2a{width:214.186667pt;}
._e{width:215.253333pt;}
._1a{width:217.221333pt;}
._33{width:221.354667pt;}
._5a{width:225.024000pt;}
._24{width:226.090667pt;}
._20{width:226.986667pt;}
._a0{width:228.203733pt;}
._1e{width:229.376000pt;}
._5e{width:236.842667pt;}
._21{width:238.848000pt;}
._8c{width:242.858667pt;}
._1c{width:248.362667pt;}
._19{width:250.752000pt;}
._a4{width:254.165333pt;}
._74{width:256.981333pt;}
._a3{width:258.560000pt;}
._1d{width:260.224000pt;}
._67{width:265.723200pt;}
._7f{width:268.373333pt;}
._7c{width:270.080000pt;}
._15{width:272.128000pt;}
._55{width:277.731200pt;}
._47{width:278.678400pt;}
._13{width:279.680000pt;}
._1b{width:281.557333pt;}
._a2{width:282.607467pt;}
._17{width:283.904000pt;}
._79{width:286.677333pt;}
._69{width:295.637333pt;}
._81{width:298.496000pt;}
._45{width:301.371733pt;}
._73{width:303.274667pt;}
._9a{width:306.816000pt;}
._12{width:318.378667pt;}
._7e{width:327.637333pt;}
._18{width:345.600000pt;}
._70{width:349.264000pt;}
._16{width:366.890667pt;}
._f{width:370.389333pt;}
._84{width:375.125333pt;}
._11{width:378.794667pt;}
._87{width:383.274667pt;}
._78{width:391.594667pt;}
._83{width:394.069333pt;}
._75{width:408.192000pt;}
._a1{width:410.666667pt;}
._86{width:422.570667pt;}
._7a{width:429.610667pt;}
._14{width:430.848000pt;}
._85{width:434.389333pt;}
._80{width:443.861333pt;}
._82{width:449.706667pt;}
._72{width:453.333333pt;}
._7b{width:455.680000pt;}
._77{width:465.152000pt;}
._a5{width:474.624000pt;}
._76{width:477.056000pt;}
._c{width:603.008000pt;}
._6e{width:678.613333pt;}
._6f{width:808.362667pt;}
._d{width:861.269333pt;}
.fs5{font-size:25.600000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y209{bottom:73.597067pt;}
.y5e{bottom:73.975200pt;}
.y94{bottom:74.101200pt;}
.ycb{bottom:74.101333pt;}
.y1de{bottom:74.127867pt;}
.y2a{bottom:74.216800pt;}
.y1bd{bottom:74.234533pt;}
.y171{bottom:74.310133pt;}
.y156{bottom:74.403333pt;}
.y1ac{bottom:75.334000pt;}
.y249{bottom:84.389600pt;}
.y208{bottom:86.930400pt;}
.y155{bottom:89.070000pt;}
.y5d{bottom:89.975200pt;}
.y1ab{bottom:90.000667pt;}
.y93{bottom:90.101200pt;}
.yca{bottom:90.101333pt;}
.y1dd{bottom:90.127867pt;}
.y108{bottom:90.192400pt;}
.y1bc{bottom:90.234533pt;}
.y170{bottom:92.638267pt;}
.y248{bottom:97.722933pt;}
.y207{bottom:100.263733pt;}
.y154{bottom:103.736667pt;}
.y107{bottom:105.392400pt;}
.y5c{bottom:105.975200pt;}
.y92{bottom:106.101200pt;}
.yc9{bottom:106.101333pt;}
.y1dc{bottom:106.127867pt;}
.y1bb{bottom:106.234533pt;}
.yf6{bottom:106.353333pt;}
.y15{bottom:108.011733pt;}
.y247{bottom:111.056267pt;}
.y16f{bottom:111.656133pt;}
.y1aa{bottom:112.678000pt;}
.y206{bottom:113.597067pt;}
.y106{bottom:120.592400pt;}
.y5b{bottom:121.975200pt;}
.y91{bottom:122.101200pt;}
.yc8{bottom:122.101333pt;}
.y1db{bottom:122.127867pt;}
.y1ba{bottom:122.234533pt;}
.yf5{bottom:122.371200pt;}
.y246{bottom:124.389600pt;}
.y16e{bottom:126.098800pt;}
.y153{bottom:126.414000pt;}
.y205{bottom:126.930400pt;}
.y1a9{bottom:127.120667pt;}
.y105{bottom:135.792400pt;}
.y245{bottom:137.722933pt;}
.y5a{bottom:137.975200pt;}
.y90{bottom:138.101200pt;}
.yc7{bottom:138.101333pt;}
.y1da{bottom:138.127867pt;}
.y1b9{bottom:138.234533pt;}
.yf4{bottom:138.371200pt;}
.y204{bottom:140.263733pt;}
.y16d{bottom:140.545067pt;}
.y152{bottom:140.856667pt;}
.y1a8{bottom:141.563333pt;}
.y104{bottom:150.992400pt;}
.y244{bottom:151.056267pt;}
.y203{bottom:153.597067pt;}
.y59{bottom:153.975200pt;}
.y8f{bottom:154.101200pt;}
.yc6{bottom:154.101333pt;}
.y1d9{bottom:154.127867pt;}
.y1b8{bottom:154.234533pt;}
.yf3{bottom:154.371200pt;}
.y16c{bottom:155.005333pt;}
.y151{bottom:155.299333pt;}
.y1a7{bottom:156.009600pt;}
.y243{bottom:164.389600pt;}
.y26{bottom:164.813200pt;}
.y103{bottom:166.192400pt;}
.y202{bottom:166.930400pt;}
.y16b{bottom:169.448000pt;}
.y150{bottom:169.742000pt;}
.y58{bottom:169.975200pt;}
.y8e{bottom:170.101200pt;}
.yc5{bottom:170.101333pt;}
.y1d8{bottom:170.127867pt;}
.y1b7{bottom:170.234533pt;}
.yf2{bottom:170.371200pt;}
.y1a6{bottom:170.466267pt;}
.y242{bottom:177.722933pt;}
.y201{bottom:180.263733pt;}
.y25{bottom:180.813200pt;}
.y102{bottom:181.392400pt;}
.y16a{bottom:183.890667pt;}
.y14f{bottom:184.184667pt;}
.y1a5{bottom:184.908933pt;}
.y57{bottom:185.975200pt;}
.y8d{bottom:186.101200pt;}
.yc4{bottom:186.101333pt;}
.y1d7{bottom:186.127867pt;}
.y1b6{bottom:186.234533pt;}
.yf1{bottom:186.371200pt;}
.y241{bottom:191.056267pt;}
.y200{bottom:193.597067pt;}
.y101{bottom:196.592400pt;}
.y24{bottom:196.813200pt;}
.y169{bottom:198.333333pt;}
.y14e{bottom:198.627333pt;}
.y1a4{bottom:199.351600pt;}
.y56{bottom:201.975200pt;}
.y8c{bottom:202.101200pt;}
.yc3{bottom:202.101333pt;}
.y1b5{bottom:202.234533pt;}
.yf0{bottom:202.371200pt;}
.y240{bottom:204.389600pt;}
.y1ff{bottom:206.930400pt;}
.y100{bottom:211.792400pt;}
.y168{bottom:212.776000pt;}
.y23{bottom:212.813200pt;}
.y14d{bottom:213.070000pt;}
.y23f{bottom:217.722933pt;}
.y55{bottom:217.975200pt;}
.y8b{bottom:218.101200pt;}
.yc2{bottom:218.101333pt;}
.y1d6{bottom:218.127867pt;}
.y1b4{bottom:218.234533pt;}
.yef{bottom:218.371200pt;}
.y1fe{bottom:220.263733pt;}
.y1a3{bottom:225.132933pt;}
.yff{bottom:226.992400pt;}
.y167{bottom:227.222133pt;}
.y14c{bottom:227.512667pt;}
.y22{bottom:228.813200pt;}
.y23e{bottom:231.056267pt;}
.y1fd{bottom:233.597067pt;}
.y54{bottom:233.975200pt;}
.y8a{bottom:234.101200pt;}
.yc1{bottom:234.101333pt;}
.y1d5{bottom:234.127867pt;}
.y1b3{bottom:234.234533pt;}
.yee{bottom:234.371200pt;}
.y166{bottom:241.668400pt;}
.y14b{bottom:241.955333pt;}
.yfe{bottom:242.192400pt;}
.y23d{bottom:244.389600pt;}
.y21{bottom:244.813200pt;}
.y1fc{bottom:246.930400pt;}
.y53{bottom:249.975200pt;}
.y89{bottom:250.101200pt;}
.yc0{bottom:250.101333pt;}
.y1d4{bottom:250.127867pt;}
.y1b2{bottom:250.234533pt;}
.yed{bottom:250.371200pt;}
.y1a2{bottom:250.914267pt;}
.y165{bottom:256.111067pt;}
.y14a{bottom:256.398000pt;}
.yfd{bottom:257.392400pt;}
.y23c{bottom:257.722933pt;}
.y1fb{bottom:260.263733pt;}
.y20{bottom:260.813200pt;}
.y52{bottom:265.975200pt;}
.y88{bottom:266.101200pt;}
.ybf{bottom:266.101333pt;}
.y1d3{bottom:266.127867pt;}
.y1b1{bottom:266.234533pt;}
.yec{bottom:266.371200pt;}
.y149{bottom:270.840667pt;}
.y23b{bottom:271.056267pt;}
.yfc{bottom:272.592400pt;}
.y1fa{bottom:273.597067pt;}
.y1f{bottom:276.813200pt;}
.y1a1{bottom:279.661200pt;}
.y163{bottom:281.895867pt;}
.y162{bottom:281.899333pt;}
.y51{bottom:281.975200pt;}
.y87{bottom:282.101200pt;}
.ybe{bottom:282.101333pt;}
.y1d2{bottom:282.127867pt;}
.y1b0{bottom:282.234533pt;}
.y23a{bottom:284.389600pt;}
.y148{bottom:285.283333pt;}
.y1f9{bottom:286.930400pt;}
.yfb{bottom:287.792400pt;}
.y1e{bottom:292.813200pt;}
.y164{bottom:296.562533pt;}
.y161{bottom:296.566000pt;}
.y1a0{bottom:296.994533pt;}
.y239{bottom:297.722933pt;}
.y50{bottom:297.975200pt;}
.y86{bottom:298.101200pt;}
.ybd{bottom:298.101333pt;}
.y1d1{bottom:298.127867pt;}
.y1af{bottom:298.234533pt;}
.yeb{bottom:298.371200pt;}
.y147{bottom:299.726000pt;}
.y1f8{bottom:300.263733pt;}
.y1d{bottom:308.813200pt;}
.y238{bottom:311.056267pt;}
.yfa{bottom:313.573733pt;}
.y1f7{bottom:313.597067pt;}
.y4f{bottom:313.975200pt;}
.y85{bottom:314.101200pt;}
.ybc{bottom:314.101333pt;}
.y1d0{bottom:314.127867pt;}
.y146{bottom:314.168667pt;}
.y1ae{bottom:314.234533pt;}
.y160{bottom:322.347333pt;}
.y237{bottom:324.389600pt;}
.y1c{bottom:324.813200pt;}
.y1f6{bottom:326.930400pt;}
.y145{bottom:328.611333pt;}
.y4e{bottom:329.975200pt;}
.y84{bottom:330.101200pt;}
.ybb{bottom:330.101333pt;}
.y1cf{bottom:330.127867pt;}
.y1ad{bottom:330.234533pt;}
.yea{bottom:330.237867pt;}
.y236{bottom:337.722933pt;}
.yf9{bottom:339.355067pt;}
.y1f5{bottom:340.263733pt;}
.y1b{bottom:340.813200pt;}
.y4d{bottom:345.975200pt;}
.y83{bottom:346.101200pt;}
.yba{bottom:346.101333pt;}
.y1ce{bottom:346.127867pt;}
.y17c{bottom:346.234533pt;}
.ye9{bottom:346.237867pt;}
.y19f{bottom:346.247867pt;}
.y235{bottom:351.056267pt;}
.y15f{bottom:351.070400pt;}
.y1f4{bottom:353.597067pt;}
.y144{bottom:354.392667pt;}
.y1a{bottom:356.813200pt;}
.y4c{bottom:361.975200pt;}
.y82{bottom:362.101200pt;}
.yb9{bottom:362.101333pt;}
.y1cd{bottom:362.127867pt;}
.y17b{bottom:362.234533pt;}
.ye8{bottom:362.237867pt;}
.y19e{bottom:362.247867pt;}
.y234{bottom:364.389600pt;}
.y1f3{bottom:366.930400pt;}
.yf8{bottom:368.078267pt;}
.y15e{bottom:368.403733pt;}
.y19{bottom:372.813200pt;}
.y233{bottom:377.722933pt;}
.y4b{bottom:377.975200pt;}
.y81{bottom:378.101200pt;}
.yb8{bottom:378.101333pt;}
.y1cc{bottom:378.127867pt;}
.y17a{bottom:378.234533pt;}
.ye7{bottom:378.237867pt;}
.y19d{bottom:378.247867pt;}
.y143{bottom:380.174000pt;}
.y1f2{bottom:380.263733pt;}
.yf7{bottom:385.411600pt;}
.y18{bottom:388.813200pt;}
.y232{bottom:391.056267pt;}
.y1f1{bottom:393.597067pt;}
.y4a{bottom:393.981200pt;}
.y80{bottom:394.101200pt;}
.yb7{bottom:394.101333pt;}
.y1cb{bottom:394.127867pt;}
.y179{bottom:394.234533pt;}
.ye6{bottom:394.237867pt;}
.y19c{bottom:394.247867pt;}
.y231{bottom:404.389600pt;}
.y17{bottom:404.813200pt;}
.y1f0{bottom:406.930400pt;}
.y142{bottom:408.897200pt;}
.y15d{bottom:409.219067pt;}
.y49{bottom:409.981200pt;}
.y7f{bottom:410.101200pt;}
.yb6{bottom:410.101333pt;}
.y1ca{bottom:410.127867pt;}
.y173{bottom:410.234533pt;}
.ye5{bottom:410.237867pt;}
.y19b{bottom:410.247867pt;}
.y230{bottom:417.722933pt;}
.y1ef{bottom:420.263733pt;}
.y27{bottom:420.813200pt;}
.y15c{bottom:423.226933pt;}
.y48{bottom:425.981200pt;}
.y7e{bottom:426.101200pt;}
.yb5{bottom:426.101333pt;}
.y1c9{bottom:426.127867pt;}
.y141{bottom:426.230533pt;}
.y178{bottom:426.234533pt;}
.ye4{bottom:426.237867pt;}
.y19a{bottom:426.247867pt;}
.y129{bottom:426.572667pt;}
.y22f{bottom:431.056267pt;}
.y1ee{bottom:433.597067pt;}
.y16{bottom:436.813200pt;}
.y15b{bottom:437.221600pt;}
.y47{bottom:441.981200pt;}
.y7d{bottom:442.101200pt;}
.yb4{bottom:442.101333pt;}
.y1c8{bottom:442.127867pt;}
.y172{bottom:442.234533pt;}
.ye3{bottom:442.237867pt;}
.y22e{bottom:444.391733pt;}
.y128{bottom:444.900800pt;}
.y1ed{bottom:446.930400pt;}
.y15a{bottom:451.216267pt;}
.y22d{bottom:457.725067pt;}
.y46{bottom:457.981200pt;}
.y7c{bottom:458.101200pt;}
.yb3{bottom:458.101333pt;}
.y1c7{bottom:458.127867pt;}
.y177{bottom:458.234533pt;}
.ye2{bottom:458.237867pt;}
.y199{bottom:458.247867pt;}
.y1ec{bottom:460.263733pt;}
.y127{bottom:463.915867pt;}
.y140{bottom:467.391467pt;}
.y22c{bottom:471.058400pt;}
.y174{bottom:473.498667pt;}
.y45{bottom:473.981200pt;}
.y7b{bottom:474.101200pt;}
.yb2{bottom:474.101333pt;}
.y176{bottom:474.234533pt;}
.ye1{bottom:474.237867pt;}
.y126{bottom:478.582533pt;}
.y22b{bottom:484.391733pt;}
.y13f{bottom:485.719600pt;}
.y44{bottom:489.981200pt;}
.y1eb{bottom:489.984533pt;}
.y7a{bottom:490.101200pt;}
.yb1{bottom:490.101333pt;}
.y198{bottom:490.114533pt;}
.y1c6{bottom:490.127867pt;}
.ye0{bottom:490.237867pt;}
.y125{bottom:493.782533pt;}
.y22a{bottom:497.725067pt;}
.y14{bottom:504.293067pt;}
.y13e{bottom:504.734000pt;}
.y43{bottom:505.981200pt;}
.y79{bottom:506.101200pt;}
.yb0{bottom:506.101333pt;}
.y197{bottom:506.114533pt;}
.y175{bottom:506.234533pt;}
.ydf{bottom:506.237867pt;}
.y124{bottom:508.982533pt;}
.y229{bottom:511.058400pt;}
.y13d{bottom:519.180133pt;}
.y42{bottom:521.981200pt;}
.y1c5{bottom:521.994533pt;}
.y78{bottom:522.101200pt;}
.yaf{bottom:522.101333pt;}
.y196{bottom:522.114533pt;}
.yde{bottom:522.237867pt;}
.y123{bottom:524.207733pt;}
.y228{bottom:524.391733pt;}
.y13{bottom:533.498400pt;}
.y13c{bottom:533.626400pt;}
.y227{bottom:537.725067pt;}
.y41{bottom:537.981200pt;}
.y1c4{bottom:537.994533pt;}
.y77{bottom:538.101200pt;}
.yae{bottom:538.101333pt;}
.y1ea{bottom:538.104533pt;}
.y195{bottom:538.114533pt;}
.ydd{bottom:538.237867pt;}
.y122{bottom:538.874400pt;}
.y12{bottom:546.831733pt;}
.y13b{bottom:548.072533pt;}
.y226{bottom:551.058400pt;}
.y40{bottom:553.981200pt;}
.y1c3{bottom:553.994533pt;}
.y121{bottom:554.074400pt;}
.y76{bottom:554.101200pt;}
.yad{bottom:554.101333pt;}
.y1e9{bottom:554.104533pt;}
.y194{bottom:554.114533pt;}
.ydc{bottom:554.237867pt;}
.y11{bottom:560.165067pt;}
.y13a{bottom:562.518800pt;}
.y225{bottom:564.391733pt;}
.y120{bottom:568.741067pt;}
.y3f{bottom:569.981200pt;}
.y1c2{bottom:569.994533pt;}
.y75{bottom:570.101200pt;}
.yac{bottom:570.101333pt;}
.y1e8{bottom:570.104533pt;}
.y193{bottom:570.114533pt;}
.ydb{bottom:570.237867pt;}
.y10{bottom:573.506267pt;}
.y139{bottom:576.964933pt;}
.y224{bottom:577.725067pt;}
.y11f{bottom:583.941067pt;}
.y3e{bottom:585.981200pt;}
.y1c1{bottom:585.994533pt;}
.y74{bottom:586.101200pt;}
.yab{bottom:586.101333pt;}
.y1e7{bottom:586.104533pt;}
.y192{bottom:586.114533pt;}
.yda{bottom:586.237867pt;}
.yf{bottom:586.839600pt;}
.y223{bottom:591.058400pt;}
.y138{bottom:591.411200pt;}
.y11e{bottom:599.141067pt;}
.ye{bottom:600.172933pt;}
.y3d{bottom:601.981200pt;}
.y1c0{bottom:601.994533pt;}
.y73{bottom:602.101200pt;}
.yaa{bottom:602.101333pt;}
.y1e6{bottom:602.104533pt;}
.y191{bottom:602.114533pt;}
.yd9{bottom:602.237867pt;}
.y222{bottom:604.391733pt;}
.y137{bottom:605.857333pt;}
.yd{bottom:613.506267pt;}
.y11d{bottom:614.341067pt;}
.y221{bottom:617.725067pt;}
.y3c{bottom:617.981200pt;}
.y1bf{bottom:617.994533pt;}
.y72{bottom:618.101200pt;}
.ya9{bottom:618.101333pt;}
.y1e5{bottom:618.104533pt;}
.y190{bottom:618.114533pt;}
.yd8{bottom:618.237867pt;}
.y136{bottom:620.303467pt;}
.yc{bottom:626.839600pt;}
.y11c{bottom:629.541067pt;}
.y220{bottom:631.058400pt;}
.y71{bottom:634.101200pt;}
.ya8{bottom:634.101333pt;}
.y1e4{bottom:634.104533pt;}
.y18f{bottom:634.114533pt;}
.yd7{bottom:634.237867pt;}
.y135{bottom:634.749733pt;}
.yb{bottom:640.172933pt;}
.y21f{bottom:644.391733pt;}
.y11b{bottom:644.741067pt;}
.y134{bottom:649.195867pt;}
.y3b{bottom:649.981200pt;}
.y1be{bottom:649.994533pt;}
.y70{bottom:650.101200pt;}
.ya7{bottom:650.101333pt;}
.y18e{bottom:650.114533pt;}
.y21e{bottom:657.725067pt;}
.y11a{bottom:659.941067pt;}
.y133{bottom:663.642133pt;}
.y6f{bottom:666.101200pt;}
.ya6{bottom:666.101333pt;}
.y1e3{bottom:666.104533pt;}
.y18d{bottom:666.114533pt;}
.yd6{bottom:666.237867pt;}
.y21d{bottom:671.058400pt;}
.y119{bottom:674.607733pt;}
.y132{bottom:678.084800pt;}
.y6e{bottom:682.101200pt;}
.ya5{bottom:682.101333pt;}
.y1e2{bottom:682.104533pt;}
.y18c{bottom:682.114533pt;}
.ya{bottom:683.500933pt;}
.y21c{bottom:684.391733pt;}
.y118{bottom:689.807733pt;}
.y131{bottom:692.754933pt;}
.y9{bottom:696.300933pt;}
.y21b{bottom:697.725067pt;}
.y6d{bottom:698.095200pt;}
.y3a{bottom:698.101200pt;}
.ya4{bottom:698.101333pt;}
.yd5{bottom:698.104533pt;}
.y18b{bottom:698.114533pt;}
.y117{bottom:704.474400pt;}
.y130{bottom:707.197600pt;}
.y21a{bottom:711.058400pt;}
.y6c{bottom:714.095200pt;}
.y39{bottom:714.101200pt;}
.ya3{bottom:714.101333pt;}
.yd4{bottom:714.104533pt;}
.y18a{bottom:714.114533pt;}
.y116{bottom:719.674400pt;}
.y8{bottom:720.439600pt;}
.y219{bottom:724.391733pt;}
.y6b{bottom:730.095200pt;}
.y38{bottom:730.101200pt;}
.ya2{bottom:730.101333pt;}
.yd3{bottom:730.104533pt;}
.y189{bottom:730.114533pt;}
.y12e{bottom:732.982400pt;}
.y115{bottom:734.341067pt;}
.y218{bottom:737.725067pt;}
.y6a{bottom:746.095200pt;}
.y37{bottom:746.101200pt;}
.ya1{bottom:746.101333pt;}
.yd2{bottom:746.104533pt;}
.y188{bottom:746.114533pt;}
.y12f{bottom:747.649067pt;}
.y12d{bottom:747.652533pt;}
.y114{bottom:749.541067pt;}
.y217{bottom:751.058400pt;}
.y7{bottom:751.106267pt;}
.y69{bottom:762.095200pt;}
.y36{bottom:762.101200pt;}
.ya0{bottom:762.101333pt;}
.yd1{bottom:762.104533pt;}
.y187{bottom:762.114533pt;}
.y113{bottom:764.207733pt;}
.y216{bottom:764.391733pt;}
.y6{bottom:765.772933pt;}
.y12c{bottom:773.433867pt;}
.y215{bottom:777.725067pt;}
.y159{bottom:777.981200pt;}
.y68{bottom:778.095200pt;}
.y35{bottom:778.101200pt;}
.y9f{bottom:778.101333pt;}
.y1e1{bottom:778.104533pt;}
.y186{bottom:778.114533pt;}
.y112{bottom:779.411867pt;}
.y5{bottom:783.004267pt;}
.y214{bottom:791.058400pt;}
.y67{bottom:794.095200pt;}
.y34{bottom:794.101200pt;}
.y9e{bottom:794.101333pt;}
.yd0{bottom:794.104533pt;}
.y185{bottom:794.114533pt;}
.y111{bottom:794.611867pt;}
.y12b{bottom:802.156933pt;}
.y213{bottom:804.391733pt;}
.y4{bottom:807.350400pt;}
.y110{bottom:809.811867pt;}
.y66{bottom:810.095200pt;}
.y33{bottom:810.101200pt;}
.y9d{bottom:810.101333pt;}
.y184{bottom:810.114533pt;}
.y212{bottom:817.725067pt;}
.y12a{bottom:819.490267pt;}
.ycf{bottom:825.984533pt;}
.y65{bottom:826.095200pt;}
.y32{bottom:826.101200pt;}
.y9c{bottom:826.101333pt;}
.y1e0{bottom:826.104533pt;}
.y183{bottom:826.114533pt;}
.y211{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.y10f{bottom:835.596667pt;}
.y10d{bottom:835.600133pt;}
.y64{bottom:842.095200pt;}
.y31{bottom:842.101200pt;}
.y9b{bottom:842.101333pt;}
.y1df{bottom:842.104533pt;}
.y182{bottom:842.114533pt;}
.y210{bottom:844.391733pt;}
.y10e{bottom:850.263333pt;}
.y10c{bottom:850.266800pt;}
.y20f{bottom:857.725067pt;}
.y63{bottom:858.095200pt;}
.y30{bottom:858.101200pt;}
.y9a{bottom:858.101333pt;}
.y157{bottom:858.104533pt;}
.y181{bottom:858.114533pt;}
.y20e{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y62{bottom:874.095200pt;}
.y2f{bottom:874.101200pt;}
.y99{bottom:874.101333pt;}
.yce{bottom:874.104533pt;}
.y180{bottom:874.114533pt;}
.y10b{bottom:876.048133pt;}
.y20d{bottom:884.391733pt;}
.y61{bottom:890.095200pt;}
.y2e{bottom:890.101200pt;}
.y98{bottom:890.101333pt;}
.ycd{bottom:890.104533pt;}
.y17f{bottom:890.114533pt;}
.y24c{bottom:897.722933pt;}
.y20c{bottom:897.725067pt;}
.y10a{bottom:904.771200pt;}
.y60{bottom:906.095200pt;}
.y2d{bottom:906.101200pt;}
.y97{bottom:906.101333pt;}
.ycc{bottom:906.104533pt;}
.y17e{bottom:906.114533pt;}
.y24b{bottom:911.056267pt;}
.y20b{bottom:911.058400pt;}
.y5f{bottom:922.095200pt;}
.y2c{bottom:922.101200pt;}
.y96{bottom:922.101333pt;}
.y109{bottom:922.104533pt;}
.y17d{bottom:922.114533pt;}
.y24a{bottom:924.389600pt;}
.y20a{bottom:924.391733pt;}
.y29{bottom:951.795067pt;}
.y95{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.y158{bottom:965.395200pt;}
.h14{height:18.662500pt;}
.h2{height:27.216146pt;}
.h7{height:31.083333pt;}
.h8{height:31.096167pt;}
.h6{height:31.104167pt;}
.hc{height:33.048177pt;}
.h13{height:33.291833pt;}
.h15{height:33.293967pt;}
.h11{height:33.294500pt;}
.h12{height:33.308367pt;}
.h9{height:38.828125pt;}
.hb{height:38.854167pt;}
.ha{height:38.880208pt;}
.h10{height:38.893008pt;}
.hd{height:41.611858pt;}
.hf{height:41.635325pt;}
.he{height:41.659325pt;}
.h5{height:42.768229pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:62.740133pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x24{left:88.818933pt;}
.x35{left:94.488133pt;}
.xb{left:98.271467pt;}
.x3{left:111.494400pt;}
.x33{left:113.382533pt;}
.x6{left:117.170133pt;}
.xc{left:128.644800pt;}
.x4{left:143.633067pt;}
.x30{left:164.921067pt;}
.x2b{left:176.778133pt;}
.x5{left:189.223467pt;}
.x2d{left:191.688400pt;}
.x16{left:196.310533pt;}
.x2a{left:239.784267pt;}
.x17{left:295.875200pt;}
.x18{left:298.232533pt;}
.x25{left:311.142400pt;}
.x2c{left:312.883067pt;}
.x23{left:335.560267pt;}
.x1a{left:372.033733pt;}
.x19{left:384.769733pt;}
.x2e{left:390.931333pt;}
.x9{left:404.481333pt;}
.xd{left:406.297867pt;}
.x11{left:425.196800pt;}
.x7{left:427.090133pt;}
.x27{left:432.506133pt;}
.xe{left:436.537867pt;}
.x26{left:445.242133pt;}
.x34{left:451.622533pt;}
.x13{left:455.436133pt;}
.x1b{left:469.473733pt;}
.x2f{left:482.707333pt;}
.x32{left:507.270667pt;}
.x28{left:524.282133pt;}
.x20{left:536.216400pt;}
.x1c{left:540.397733pt;}
.x12{left:544.809467pt;}
.x21{left:548.088400pt;}
.x1f{left:562.595067pt;}
.x1d{left:565.592400pt;}
.x1e{left:572.984400pt;}
.x22{left:578.934533pt;}
.x10{left:589.770933pt;}
.x29{left:619.316400pt;}
.x2{left:626.078800pt;}
.x36{left:637.449067pt;}
.xf{left:643.752133pt;}
.x14{left:662.649733pt;}
}




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