
    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_1e8bcde1a8a7308caff8334c.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_09d2d924006a2f22e3b4cb5e.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_4c5773cda66a097a2116a704.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_8f84bb586ea6878db6e887a0.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_8ce9fe140034d609188c197c.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_10e6368a58eeea61741b340e.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_d97143165ac1aba4c5f98388.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_85e4424ccf0bb03269cf3750.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_1f97f05c75b72a1cfb640453.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;}
.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);}
.v3{vertical-align:-19.945200px;}
.v2{vertical-align:-15.442800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:15.955800px;}
.v1{vertical-align:21.619200px;}
.ls51{letter-spacing:-7.740000px;}
.ls48{letter-spacing:-1.776000px;}
.ls19{letter-spacing:-0.780000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.360000px;}
.ls77{letter-spacing:-0.336000px;}
.ls52{letter-spacing:-0.300000px;}
.ls55{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.180000px;}
.ls79{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.120000px;}
.ls53{letter-spacing:-0.096000px;}
.ls31{letter-spacing:-0.060000px;}
.ls78{letter-spacing:-0.048000px;}
.ls18{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls7d{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.120000px;}
.ls66{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.240000px;}
.ls7a{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.300000px;}
.ls6b{letter-spacing:0.336000px;}
.ls37{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.420000px;}
.ls6e{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.540000px;}
.ls3d{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.660000px;}
.ls72{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.720000px;}
.ls69{letter-spacing:0.768000px;}
.ls15{letter-spacing:0.780000px;}
.ls71{letter-spacing:0.816000px;}
.ls36{letter-spacing:0.840000px;}
.ls56{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.900000px;}
.ls4d{letter-spacing:0.912000px;}
.lsa{letter-spacing:0.960000px;}
.ls3c{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.020000px;}
.ls7{letter-spacing:1.080000px;}
.ls4f{letter-spacing:1.104000px;}
.ls8{letter-spacing:1.140000px;}
.ls23{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.260000px;}
.ls65{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.320000px;}
.ls2a{letter-spacing:1.380000px;}
.ls49{letter-spacing:1.440000px;}
.ls67{letter-spacing:1.488000px;}
.ls1c{letter-spacing:1.500000px;}
.ls50{letter-spacing:1.536000px;}
.ls58{letter-spacing:1.560000px;}
.ls2e{letter-spacing:1.620000px;}
.ls6f{letter-spacing:1.632000px;}
.lse{letter-spacing:1.680000px;}
.ls5b{letter-spacing:1.740000px;}
.ls6d{letter-spacing:1.776000px;}
.ls2c{letter-spacing:1.800000px;}
.ls4a{letter-spacing:1.860000px;}
.ls7b{letter-spacing:1.872000px;}
.ls16{letter-spacing:1.920000px;}
.ls76{letter-spacing:1.968000px;}
.ls24{letter-spacing:1.980000px;}
.ls2d{letter-spacing:2.040000px;}
.lsf{letter-spacing:2.100000px;}
.ls3b{letter-spacing:2.160000px;}
.ls68{letter-spacing:2.208000px;}
.ls1a{letter-spacing:2.220000px;}
.ls25{letter-spacing:2.280000px;}
.lsb{letter-spacing:2.340000px;}
.ls30{letter-spacing:2.400000px;}
.ls7c{letter-spacing:2.448000px;}
.ls1f{letter-spacing:2.460000px;}
.ls74{letter-spacing:2.496000px;}
.ls5a{letter-spacing:2.520000px;}
.ls73{letter-spacing:2.544000px;}
.ls39{letter-spacing:2.580000px;}
.ls21{letter-spacing:2.640000px;}
.ls2f{letter-spacing:2.700000px;}
.ls70{letter-spacing:2.784000px;}
.ls11{letter-spacing:2.820000px;}
.ls5e{letter-spacing:2.880000px;}
.ls12{letter-spacing:2.940000px;}
.ls61{letter-spacing:2.976000px;}
.ls54{letter-spacing:3.060000px;}
.ls3a{letter-spacing:3.120000px;}
.ls4e{letter-spacing:3.180000px;}
.ls6a{letter-spacing:3.216000px;}
.ls63{letter-spacing:3.264000px;}
.ls27{letter-spacing:3.420000px;}
.ls28{letter-spacing:3.540000px;}
.ls6c{letter-spacing:3.600000px;}
.ls20{letter-spacing:3.720000px;}
.ls5c{letter-spacing:3.960000px;}
.ls5d{letter-spacing:4.020000px;}
.ls4b{letter-spacing:4.140000px;}
.ls13{letter-spacing:4.200000px;}
.ls75{letter-spacing:4.560000px;}
.ls26{letter-spacing:4.920000px;}
.ls59{letter-spacing:5.040000px;}
.ls3f{letter-spacing:5.100000px;}
.ls64{letter-spacing:5.232000px;}
.ls4c{letter-spacing:5.400000px;}
.ls2b{letter-spacing:5.820000px;}
.ls33{letter-spacing:5.880000px;}
.ls5f{letter-spacing:6.420000px;}
.ls2{letter-spacing:7.560000px;}
.ls60{letter-spacing:7.620000px;}
.ls57{letter-spacing:11.580000px;}
.ls41{letter-spacing:128.421600px;}
.ls46{letter-spacing:179.745600px;}
.ls42{letter-spacing:210.144000px;}
.ls45{letter-spacing:215.745600px;}
.ls44{letter-spacing:216.636000px;}
.ls43{letter-spacing:282.144000px;}
.ls40{letter-spacing:591.669600px;}
.ls47{letter-spacing:757.085400px;}
.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;}
}
.ws5f{word-spacing:-260.112000px;}
.ws0{word-spacing:-35.194800px;}
.wsa1{word-spacing:-20.040000px;}
.ws8c{word-spacing:-17.340000px;}
.wsa2{word-spacing:-17.160000px;}
.wsa4{word-spacing:-17.100000px;}
.ws2e{word-spacing:-17.040000px;}
.ws3{word-spacing:-16.920000px;}
.wsa3{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws13{word-spacing:-16.140000px;}
.ws72{word-spacing:-15.960000px;}
.ws12{word-spacing:-15.780000px;}
.ws2d{word-spacing:-15.720000px;}
.ws73{word-spacing:-15.120000px;}
.ws2c{word-spacing:-15.060000px;}
.ws39{word-spacing:-15.000000px;}
.wsb2{word-spacing:-14.496000px;}
.wsb1{word-spacing:-13.632000px;}
.ws11{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.344000px;}
.wsaf{word-spacing:-12.768000px;}
.ws4{word-spacing:-12.510000px;}
.wsb3{word-spacing:-12.432000px;}
.ws28{word-spacing:-12.000000px;}
.wsb0{word-spacing:-11.856000px;}
.ws1{word-spacing:-10.508400px;}
.ws4b{word-spacing:-9.000000px;}
.ws82{word-spacing:-7.260000px;}
.wsbe{word-spacing:-5.280000px;}
.ws7b{word-spacing:-5.100000px;}
.ws75{word-spacing:-4.140000px;}
.ws1e{word-spacing:-3.720000px;}
.wsc5{word-spacing:-3.648000px;}
.ws1b{word-spacing:-3.540000px;}
.wsab{word-spacing:-3.420000px;}
.wsbd{word-spacing:-3.264000px;}
.wsc3{word-spacing:-3.216000px;}
.ws7c{word-spacing:-3.180000px;}
.wsb8{word-spacing:-2.976000px;}
.ws7{word-spacing:-2.886000px;}
.wsb7{word-spacing:-2.700000px;}
.ws7a{word-spacing:-2.640000px;}
.ws47{word-spacing:-2.580000px;}
.wscb{word-spacing:-2.544000px;}
.wsb9{word-spacing:-2.400000px;}
.ws46{word-spacing:-2.340000px;}
.ws15{word-spacing:-2.220000px;}
.wsac{word-spacing:-2.160000px;}
.ws22{word-spacing:-2.100000px;}
.ws26{word-spacing:-2.040000px;}
.ws19{word-spacing:-1.980000px;}
.wsd3{word-spacing:-1.968000px;}
.ws89{word-spacing:-1.920000px;}
.wsa5{word-spacing:-1.860000px;}
.ws21{word-spacing:-1.800000px;}
.ws71{word-spacing:-1.680000px;}
.wsd9{word-spacing:-1.632000px;}
.ws7e{word-spacing:-1.620000px;}
.wscd{word-spacing:-1.536000px;}
.ws49{word-spacing:-1.500000px;}
.ws1f{word-spacing:-1.380000px;}
.ws1d{word-spacing:-1.320000px;}
.wsbf{word-spacing:-1.296000px;}
.ws87{word-spacing:-1.260000px;}
.ws80{word-spacing:-1.200000px;}
.wsc{word-spacing:-1.140000px;}
.ws8{word-spacing:-1.134000px;}
.wsbb{word-spacing:-1.104000px;}
.ws23{word-spacing:-1.080000px;}
.ws4a{word-spacing:-1.020000px;}
.wsc6{word-spacing:-1.008000px;}
.ws7d{word-spacing:-0.960000px;}
.wsc1{word-spacing:-0.912000px;}
.ws33{word-spacing:-0.900000px;}
.ws84{word-spacing:-0.864000px;}
.wsad{word-spacing:-0.840000px;}
.wsf{word-spacing:-0.780000px;}
.wscc{word-spacing:-0.768000px;}
.ws20{word-spacing:-0.720000px;}
.wsd0{word-spacing:-0.672000px;}
.ws43{word-spacing:-0.576000px;}
.ws48{word-spacing:-0.480000px;}
.wsd5{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.420000px;}
.ws3e{word-spacing:-0.360000px;}
.wsc4{word-spacing:-0.336000px;}
.ws14{word-spacing:-0.300000px;}
.wsc9{word-spacing:-0.288000px;}
.ws34{word-spacing:-0.240000px;}
.wsbc{word-spacing:-0.192000px;}
.ws85{word-spacing:-0.180000px;}
.wsc2{word-spacing:-0.144000px;}
.ws76{word-spacing:-0.120000px;}
.ws83{word-spacing:-0.060000px;}
.wsda{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws44{word-spacing:0.048000px;}
.ws17{word-spacing:0.060000px;}
.ws2a{word-spacing:0.120000px;}
.wsc8{word-spacing:0.144000px;}
.ws1a{word-spacing:0.180000px;}
.ws6f{word-spacing:0.240000px;}
.wsba{word-spacing:0.336000px;}
.ws45{word-spacing:0.360000px;}
.ws2b{word-spacing:0.384000px;}
.ws70{word-spacing:0.420000px;}
.wsd1{word-spacing:0.480000px;}
.wse{word-spacing:0.540000px;}
.ws86{word-spacing:0.600000px;}
.wsce{word-spacing:0.624000px;}
.wsa6{word-spacing:0.660000px;}
.wsca{word-spacing:0.672000px;}
.ws78{word-spacing:0.720000px;}
.wsd4{word-spacing:0.768000px;}
.ws8f{word-spacing:0.780000px;}
.ws18{word-spacing:0.900000px;}
.wsc0{word-spacing:0.912000px;}
.ws91{word-spacing:0.960000px;}
.ws38{word-spacing:1.020000px;}
.ws8a{word-spacing:1.080000px;}
.wsae{word-spacing:1.320000px;}
.ws32{word-spacing:1.380000px;}
.wsaa{word-spacing:1.440000px;}
.wsc7{word-spacing:1.488000px;}
.ws37{word-spacing:1.500000px;}
.wsd7{word-spacing:1.536000px;}
.ws24{word-spacing:1.560000px;}
.ws8e{word-spacing:1.680000px;}
.ws1c{word-spacing:1.740000px;}
.ws8b{word-spacing:1.980000px;}
.wsd6{word-spacing:2.016000px;}
.ws7f{word-spacing:2.100000px;}
.ws40{word-spacing:2.220000px;}
.ws27{word-spacing:2.280000px;}
.wsa{word-spacing:2.400000px;}
.ws41{word-spacing:2.520000px;}
.ws31{word-spacing:2.580000px;}
.ws8d{word-spacing:2.640000px;}
.ws77{word-spacing:2.700000px;}
.wsd2{word-spacing:2.736000px;}
.ws88{word-spacing:2.760000px;}
.ws74{word-spacing:2.820000px;}
.ws90{word-spacing:3.120000px;}
.ws36{word-spacing:3.180000px;}
.wscf{word-spacing:3.216000px;}
.ws30{word-spacing:3.300000px;}
.ws2f{word-spacing:3.420000px;}
.wsd8{word-spacing:3.456000px;}
.ws25{word-spacing:3.600000px;}
.ws81{word-spacing:3.660000px;}
.wsd{word-spacing:3.840000px;}
.ws35{word-spacing:3.900000px;}
.ws79{word-spacing:3.936000px;}
.ws10{word-spacing:3.960000px;}
.ws42{word-spacing:3.984000px;}
.wsa9{word-spacing:4.020000px;}
.ws3d{word-spacing:4.080000px;}
.wsa7{word-spacing:4.200000px;}
.ws29{word-spacing:4.260000px;}
.wsb5{word-spacing:4.440000px;}
.ws3f{word-spacing:4.500000px;}
.wsa8{word-spacing:4.620000px;}
.ws9{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.wsb6{word-spacing:5.460000px;}
.wsb4{word-spacing:5.520000px;}
.ws56{word-spacing:102.144000px;}
.ws53{word-spacing:103.008000px;}
.ws57{word-spacing:103.056000px;}
.ws5e{word-spacing:114.144000px;}
.ws4e{word-spacing:126.144000px;}
.ws5a{word-spacing:150.144000px;}
.ws54{word-spacing:156.144000px;}
.ws52{word-spacing:157.920000px;}
.ws50{word-spacing:158.832000px;}
.ws4d{word-spacing:174.144000px;}
.ws5d{word-spacing:180.144000px;}
.ws55{word-spacing:190.176000px;}
.ws4f{word-spacing:191.952000px;}
.ws59{word-spacing:192.144000px;}
.ws51{word-spacing:192.816000px;}
.ws4c{word-spacing:208.176000px;}
.ws5c{word-spacing:214.176000px;}
.ws5b{word-spacing:221.040000px;}
.ws64{word-spacing:222.144000px;}
.ws58{word-spacing:226.176000px;}
.ws62{word-spacing:228.117000px;}
.ws60{word-spacing:246.144000px;}
.ws63{word-spacing:255.744000px;}
.ws61{word-spacing:279.072000px;}
.ws98{word-spacing:306.240000px;}
.ws9e{word-spacing:307.104000px;}
.ws96{word-spacing:308.016000px;}
.ws93{word-spacing:330.240000px;}
.ws9c{word-spacing:336.240000px;}
.ws9a{word-spacing:354.240000px;}
.wsa0{word-spacing:378.240000px;}
.ws97{word-spacing:394.272000px;}
.ws99{word-spacing:406.272000px;}
.ws95{word-spacing:407.136000px;}
.ws92{word-spacing:412.272000px;}
.ws9b{word-spacing:424.272000px;}
.ws94{word-spacing:430.272000px;}
.ws9f{word-spacing:448.272000px;}
.ws6a{word-spacing:476.304000px;}
.ws69{word-spacing:477.216000px;}
.ws6d{word-spacing:488.304000px;}
.ws65{word-spacing:500.304000px;}
.ws6b{word-spacing:524.304000px;}
.ws6e{word-spacing:548.304000px;}
.ws68{word-spacing:566.304000px;}
.ws3a{word-spacing:580.032000px;}
.ws9d{word-spacing:662.496000px;}
.ws3b{word-spacing:669.360000px;}
.ws3c{word-spacing:705.360000px;}
.ws6c{word-spacing:781.584000px;}
.ws67{word-spacing:835.584000px;}
.ws66{word-spacing:1244.640000px;}
._c{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._3c{margin-left:-282.144000px;}
._77{margin-left:-11.040000px;}
._76{margin-left:-7.752000px;}
._5{margin-left:-6.592200px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.528000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._3{width:1.883400px;}
._9{width:2.916600px;}
._8{width:3.923400px;}
._6{width:5.196600px;}
._7{width:6.251400px;}
._a{width:7.751400px;}
._b{width:9.168600px;}
._75{width:10.631400px;}
._28{width:129.456000px;}
._35{width:168.144000px;}
._2c{width:170.454000px;}
._2a{width:186.144000px;}
._32{width:204.144000px;}
._7a{width:205.176000px;}
._2e{width:222.144000px;}
._79{width:239.400000px;}
._2f{width:256.176000px;}
._3f{width:258.144000px;}
._41{width:261.744000px;}
._31{width:292.368000px;}
._78{width:293.568000px;}
._27{width:315.264000px;}
._42{width:341.328000px;}
._87{width:351.984000px;}
._59{width:362.376000px;}
._3d{width:389.136000px;}
._2b{width:400.032000px;}
._84{width:401.136000px;}
._7f{width:402.480000px;}
._7e{width:405.168000px;}
._36{width:407.088000px;}
._3b{width:409.152000px;}
._3e{width:410.496000px;}
._7d{width:420.414000px;}
._29{width:439.464000px;}
._30{width:443.040000px;}
._81{width:451.776000px;}
._80{width:454.464000px;}
._6b{width:458.304000px;}
._8a{width:460.272000px;}
._2d{width:464.400000px;}
._40{width:470.184000px;}
._37{width:485.760000px;}
._5e{width:488.304000px;}
._47{width:490.614000px;}
._34{width:496.320000px;}
._64{width:505.536000px;}
._3a{width:507.072000px;}
._6c{width:510.336000px;}
._5f{width:522.336000px;}
._38{width:524.400000px;}
._68{width:534.336000px;}
._61{width:540.336000px;}
._57{width:542.304000px;}
._5b{width:546.336000px;}
._71{width:548.304000px;}
._39{width:562.320000px;}
._63{width:570.192000px;}
._65{width:573.552000px;}
._46{width:577.200000px;}
._33{width:586.320000px;}
._89{width:591.936000px;}
._44{width:594.336000px;}
._7b{width:595.560000px;}
._88{width:606.576000px;}
._86{width:611.088000px;}
._7c{width:614.496000px;}
._4a{width:615.552000px;}
._72{width:618.336000px;}
._74{width:630.336000px;}
._54{width:632.304000px;}
._8b{width:639.624000px;}
._85{width:643.104000px;}
._82{width:646.416000px;}
._6f{width:657.552000px;}
._83{width:659.856000px;}
._70{width:664.320000px;}
._5c{width:669.168000px;}
._69{width:676.272000px;}
._15{width:681.360000px;}
._11{width:683.670000px;}
._73{width:685.680000px;}
._f{width:693.360000px;}
._17{width:705.360000px;}
._6a{width:708.240000px;}
._60{width:712.224000px;}
._5a{width:714.600000px;}
._23{width:717.360000px;}
._45{width:722.304000px;}
._5d{width:733.584000px;}
._6e{width:736.176000px;}
._4e{width:748.272000px;}
._43{width:762.600000px;}
._66{width:765.504000px;}
._67{width:766.944000px;}
._6d{width:768.192000px;}
._48{width:787.584000px;}
._62{width:803.736000px;}
._4f{width:809.808000px;}
._4c{width:819.504000px;}
._52{width:830.256000px;}
._58{width:851.856000px;}
._22{width:1093.824000px;}
._18{width:1150.320000px;}
._16{width:1153.008000px;}
._1a{width:1199.616000px;}
._19{width:1202.304000px;}
._51{width:1256.640000px;}
._50{width:1270.086000px;}
._4d{width:1274.640000px;}
._4b{width:1292.640000px;}
._21{width:1294.320000px;}
._24{width:1299.072000px;}
._10{width:1309.920000px;}
._1d{width:1317.024000px;}
._25{width:1320.432000px;}
._e{width:1349.352000px;}
._13{width:1352.976000px;}
._12{width:1374.336000px;}
._20{width:1376.928000px;}
._26{width:1380.072000px;}
._1c{width:1395.696000px;}
._1b{width:1406.256000px;}
._1f{width:1408.944000px;}
._53{width:1422.624000px;}
._55{width:1429.968000px;}
._1e{width:1434.336000px;}
._14{width:1444.488000px;}
._56{width:1489.656000px;}
._49{width:2106.864000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsc{font-size:28.800000px;}
.fsb{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y9b{bottom:83.448600px;}
.y1f0{bottom:83.628600px;}
.y1d6{bottom:83.635350px;}
.y121{bottom:83.643300px;}
.y19f{bottom:83.789250px;}
.y156{bottom:83.790900px;}
.y5c{bottom:84.070350px;}
.y1a4{bottom:84.101250px;}
.y95{bottom:84.310800px;}
.y2b{bottom:88.029450px;}
.y8c{bottom:91.253850px;}
.y1c2{bottom:92.891550px;}
.yce{bottom:94.257750px;}
.y218{bottom:95.121900px;}
.y258{bottom:95.263500px;}
.y9a{bottom:99.192600px;}
.y1a3{bottom:99.845250px;}
.y94{bottom:100.054800px;}
.y1ef{bottom:101.628600px;}
.y1d5{bottom:101.635350px;}
.y5b{bottom:102.070350px;}
.y2a{bottom:103.023000px;}
.y120{bottom:109.155300px;}
.y8b{bottom:109.253850px;}
.y217{bottom:110.121900px;}
.y257{bottom:110.263500px;}
.y102{bottom:112.600200px;}
.y99{bottom:114.936600px;}
.y1ee{bottom:119.628600px;}
.y1d4{bottom:119.635350px;}
.y5a{bottom:120.070350px;}
.y1c1{bottom:121.895550px;}
.ycd{bottom:123.261750px;}
.y216{bottom:125.121900px;}
.y256{bottom:125.263500px;}
.y8a{bottom:127.253850px;}
.y101{bottom:129.700200px;}
.y1ed{bottom:137.628600px;}
.y1d3{bottom:137.635350px;}
.y59{bottom:138.070350px;}
.y1c0{bottom:138.143550px;}
.y11f{bottom:138.159300px;}
.ycc{bottom:139.509750px;}
.y215{bottom:140.121900px;}
.y255{bottom:140.263500px;}
.y89{bottom:145.253850px;}
.y100{bottom:146.800200px;}
.y1bf{bottom:154.391550px;}
.y11e{bottom:154.407300px;}
.y214{bottom:155.121900px;}
.y254{bottom:155.263500px;}
.y1ec{bottom:155.628600px;}
.y1d2{bottom:155.635350px;}
.ycb{bottom:155.757750px;}
.y58{bottom:156.070350px;}
.y88{bottom:163.253850px;}
.yff{bottom:163.900200px;}
.y27{bottom:168.315900px;}
.y213{bottom:170.121900px;}
.y253{bottom:170.263500px;}
.y1be{bottom:170.639550px;}
.y11d{bottom:170.655300px;}
.yca{bottom:172.005750px;}
.y1eb{bottom:173.628600px;}
.y1d1{bottom:173.635350px;}
.y57{bottom:174.070350px;}
.yfe{bottom:181.000200px;}
.y87{bottom:181.253850px;}
.y212{bottom:185.121900px;}
.y252{bottom:185.263500px;}
.y26{bottom:186.315900px;}
.y1bd{bottom:186.887550px;}
.y11c{bottom:186.903300px;}
.yc9{bottom:188.253750px;}
.y1ea{bottom:191.628600px;}
.y56{bottom:192.070350px;}
.yfd{bottom:198.100200px;}
.y86{bottom:199.253850px;}
.y211{bottom:200.121900px;}
.y251{bottom:200.263500px;}
.y1bc{bottom:203.135550px;}
.y11b{bottom:203.151300px;}
.y25{bottom:204.315900px;}
.yc8{bottom:204.501750px;}
.y1d0{bottom:209.230350px;}
.y1e9{bottom:209.628600px;}
.y55{bottom:210.070350px;}
.y210{bottom:215.121900px;}
.yfc{bottom:215.200200px;}
.y250{bottom:215.263500px;}
.y85{bottom:217.253850px;}
.y1bb{bottom:219.383550px;}
.y11a{bottom:219.399300px;}
.yc7{bottom:220.749750px;}
.y24{bottom:222.315900px;}
.y1e8{bottom:227.628600px;}
.y54{bottom:228.070350px;}
.y20f{bottom:230.121900px;}
.y24f{bottom:230.263500px;}
.yfb{bottom:232.300200px;}
.y84{bottom:235.253850px;}
.y1ba{bottom:235.631550px;}
.y119{bottom:235.647300px;}
.yc6{bottom:236.997750px;}
.y23{bottom:240.315900px;}
.y20e{bottom:245.121900px;}
.y24e{bottom:245.263500px;}
.y1e7{bottom:245.628600px;}
.y53{bottom:246.070350px;}
.yfa{bottom:249.400200px;}
.y1b9{bottom:251.879550px;}
.y118{bottom:251.895300px;}
.yc5{bottom:253.245750px;}
.y83{bottom:253.253850px;}
.y22{bottom:258.315900px;}
.y20d{bottom:260.121900px;}
.y24d{bottom:260.263500px;}
.y1e6{bottom:263.628600px;}
.y1cf{bottom:263.770350px;}
.y52{bottom:264.070350px;}
.yf9{bottom:266.500200px;}
.y1b8{bottom:268.127550px;}
.y117{bottom:268.143300px;}
.yc4{bottom:269.493750px;}
.y82{bottom:271.253850px;}
.y20c{bottom:275.121900px;}
.y24c{bottom:275.263500px;}
.y21{bottom:276.315900px;}
.y1e5{bottom:281.628600px;}
.y1ce{bottom:281.770350px;}
.y51{bottom:282.070350px;}
.yf8{bottom:283.600200px;}
.y1b7{bottom:284.375550px;}
.y116{bottom:284.391300px;}
.yc3{bottom:285.741750px;}
.y81{bottom:289.253850px;}
.y20b{bottom:290.121900px;}
.y24b{bottom:290.263500px;}
.y20{bottom:294.315900px;}
.y1e4{bottom:299.635350px;}
.y1cd{bottom:299.770350px;}
.y50{bottom:300.070350px;}
.y1b6{bottom:300.623550px;}
.y115{bottom:300.639300px;}
.yf7{bottom:300.700200px;}
.yc2{bottom:301.989750px;}
.y20a{bottom:305.121900px;}
.y24a{bottom:305.263500px;}
.y80{bottom:307.253850px;}
.y1f{bottom:312.315900px;}
.y1b5{bottom:316.871550px;}
.y114{bottom:316.887300px;}
.y1e3{bottom:317.230350px;}
.y1cc{bottom:317.770350px;}
.yf6{bottom:317.800200px;}
.yc1{bottom:318.237750px;}
.y209{bottom:320.121900px;}
.y249{bottom:320.263500px;}
.y7f{bottom:325.253850px;}
.y1e{bottom:330.315900px;}
.y1b4{bottom:333.119550px;}
.y113{bottom:333.135300px;}
.yc0{bottom:334.485750px;}
.yf5{bottom:334.900200px;}
.y208{bottom:335.121900px;}
.y248{bottom:335.263500px;}
.y4f{bottom:335.665350px;}
.y1cb{bottom:335.770350px;}
.y7e{bottom:343.253850px;}
.y1d{bottom:348.315900px;}
.y1b3{bottom:349.367550px;}
.y112{bottom:349.383300px;}
.y207{bottom:350.121900px;}
.y247{bottom:350.263500px;}
.ybf{bottom:350.733750px;}
.yf4{bottom:352.000200px;}
.y1e2{bottom:353.635350px;}
.y1ca{bottom:353.770350px;}
.y155{bottom:359.770350px;}
.y7d{bottom:361.253850px;}
.y12f{bottom:361.805250px;}
.y206{bottom:365.121900px;}
.y246{bottom:365.263500px;}
.y1b2{bottom:365.615550px;}
.y111{bottom:365.631300px;}
.y1c{bottom:366.315900px;}
.ybe{bottom:366.981750px;}
.y179{bottom:368.312100px;}
.yf3{bottom:369.100200px;}
.y1e1{bottom:371.635350px;}
.y1c9{bottom:371.770350px;}
.y4e{bottom:371.920350px;}
.y12e{bottom:376.805250px;}
.y154{bottom:377.770350px;}
.y7c{bottom:379.253850px;}
.y205{bottom:380.121900px;}
.y245{bottom:380.263500px;}
.y1b1{bottom:381.863550px;}
.y110{bottom:381.879300px;}
.y19e{bottom:382.805250px;}
.ybd{bottom:383.229750px;}
.y1b{bottom:384.315900px;}
.yf2{bottom:386.200200px;}
.y178{bottom:386.312100px;}
.y1e0{bottom:389.635350px;}
.y1c8{bottom:389.770350px;}
.y4d{bottom:389.920350px;}
.y204{bottom:395.121900px;}
.y244{bottom:395.263500px;}
.y153{bottom:395.770350px;}
.y7b{bottom:397.253850px;}
.y19d{bottom:397.805250px;}
.y1b0{bottom:398.111550px;}
.y10f{bottom:398.127300px;}
.ybc{bottom:399.477750px;}
.y1a{bottom:402.315900px;}
.yf1{bottom:403.300200px;}
.y177{bottom:404.312100px;}
.y1df{bottom:407.635350px;}
.y1c7{bottom:407.770350px;}
.y4c{bottom:407.920350px;}
.y203{bottom:410.121900px;}
.y243{bottom:410.263500px;}
.y19c{bottom:412.805250px;}
.y152{bottom:413.770350px;}
.y1af{bottom:414.359550px;}
.y10e{bottom:414.375300px;}
.y7a{bottom:415.253850px;}
.ybb{bottom:415.725750px;}
.y19{bottom:420.315900px;}
.yf0{bottom:420.400200px;}
.y176{bottom:422.312100px;}
.y202{bottom:425.121900px;}
.y242{bottom:425.263500px;}
.y12d{bottom:425.515350px;}
.y1de{bottom:425.635350px;}
.y1c6{bottom:425.770350px;}
.y4b{bottom:425.920350px;}
.y19b{bottom:427.805250px;}
.y1ae{bottom:430.607550px;}
.y10d{bottom:430.623300px;}
.y151{bottom:431.770350px;}
.yba{bottom:431.973750px;}
.y79{bottom:433.253850px;}
.yef{bottom:437.500200px;}
.y18{bottom:438.315900px;}
.y201{bottom:440.121900px;}
.y241{bottom:440.263500px;}
.y175{bottom:440.312100px;}
.y19a{bottom:442.805250px;}
.y1dd{bottom:443.635350px;}
.y1c5{bottom:443.770350px;}
.y4a{bottom:443.920350px;}
.y1ad{bottom:446.855550px;}
.y10c{bottom:446.871300px;}
.yb9{bottom:448.221750px;}
.y150{bottom:449.770350px;}
.y78{bottom:451.253850px;}
.y200{bottom:455.121900px;}
.y240{bottom:455.263500px;}
.y17{bottom:456.315900px;}
.y199{bottom:457.805250px;}
.y174{bottom:458.312100px;}
.y1dc{bottom:461.635350px;}
.y12c{bottom:461.770350px;}
.y49{bottom:461.920350px;}
.y1ac{bottom:463.103550px;}
.y10b{bottom:463.119300px;}
.yb8{bottom:464.469750px;}
.y14f{bottom:467.770350px;}
.y77{bottom:469.253850px;}
.y1ff{bottom:470.121900px;}
.y23f{bottom:470.263500px;}
.yed{bottom:470.764200px;}
.y198{bottom:472.805250px;}
.y16{bottom:474.315900px;}
.y173{bottom:476.312100px;}
.y1ab{bottom:479.351550px;}
.y10a{bottom:479.367300px;}
.y1db{bottom:479.635350px;}
.y12b{bottom:479.770350px;}
.y48{bottom:479.920350px;}
.yb7{bottom:480.717750px;}
.y1fe{bottom:485.121900px;}
.y23e{bottom:485.263500px;}
.y14e{bottom:485.770350px;}
.y76{bottom:487.253850px;}
.yec{bottom:487.260150px;}
.yee{bottom:487.264200px;}
.y197{bottom:487.805250px;}
.y29{bottom:492.315900px;}
.y172{bottom:494.312100px;}
.y109{bottom:495.615300px;}
.y1da{bottom:497.635350px;}
.y12a{bottom:497.770350px;}
.y47{bottom:497.920350px;}
.y1fd{bottom:500.121900px;}
.y23d{bottom:500.263500px;}
.y196{bottom:502.805250px;}
.y14d{bottom:503.770350px;}
.y75{bottom:505.253850px;}
.y1aa{bottom:508.355550px;}
.yb6{bottom:509.721750px;}
.y15{bottom:509.910900px;}
.y28{bottom:510.315900px;}
.y171{bottom:512.312100px;}
.y1fc{bottom:515.121900px;}
.y23c{bottom:515.263500px;}
.y1d9{bottom:515.635350px;}
.y129{bottom:515.770350px;}
.y46{bottom:515.920350px;}
.yeb{bottom:520.524150px;}
.y14c{bottom:521.770350px;}
.y74{bottom:523.253850px;}
.y108{bottom:524.619300px;}
.y1fb{bottom:530.121900px;}
.y23b{bottom:530.263500px;}
.y170{bottom:530.312100px;}
.y1d8{bottom:533.635350px;}
.y128{bottom:533.770350px;}
.y45{bottom:533.920350px;}
.y195{bottom:533.927100px;}
.y1a9{bottom:537.359550px;}
.yb5{bottom:538.725750px;}
.y14b{bottom:539.770350px;}
.y73{bottom:541.253850px;}
.y1fa{bottom:545.121900px;}
.y23a{bottom:545.263500px;}
.y16f{bottom:548.312100px;}
.y194{bottom:551.522100px;}
.y127{bottom:551.770350px;}
.y44{bottom:551.920350px;}
.y107{bottom:553.623300px;}
.y14a{bottom:557.770350px;}
.y72{bottom:559.253850px;}
.y1f9{bottom:560.121900px;}
.y239{bottom:560.263500px;}
.y16e{bottom:566.312100px;}
.y1a8{bottom:566.363550px;}
.y1d7{bottom:569.230350px;}
.y126{bottom:569.770350px;}
.y43{bottom:569.920350px;}
.yb4{bottom:571.120350px;}
.y1f8{bottom:575.121900px;}
.y238{bottom:575.263500px;}
.y149{bottom:575.770350px;}
.yea{bottom:575.791050px;}
.y71{bottom:577.253850px;}
.y106{bottom:582.627300px;}
.y16d{bottom:584.312100px;}
.y125{bottom:587.770350px;}
.y193{bottom:587.777100px;}
.y42{bottom:587.920350px;}
.y14{bottom:588.514200px;}
.y1f7{bottom:590.121900px;}
.y237{bottom:590.263500px;}
.ye9{bottom:592.893450px;}
.y148{bottom:593.770350px;}
.y70{bottom:595.253850px;}
.y1a2{bottom:595.805250px;}
.y1a7{bottom:598.750350px;}
.y16c{bottom:602.312100px;}
.y236{bottom:605.265900px;}
.y124{bottom:605.770350px;}
.y192{bottom:605.777100px;}
.y41{bottom:605.920350px;}
.ye8{bottom:610.029600px;}
.y1a1{bottom:610.805250px;}
.y147{bottom:611.770350px;}
.y6f{bottom:613.253850px;}
.y105{bottom:615.018450px;}
.y13{bottom:615.859200px;}
.y235{bottom:620.265900px;}
.y16b{bottom:620.312100px;}
.y1f6{bottom:623.230350px;}
.y123{bottom:623.770350px;}
.y191{bottom:623.777100px;}
.y40{bottom:623.920350px;}
.yb3{bottom:626.170350px;}
.ye7{bottom:627.129600px;}
.y146{bottom:629.770350px;}
.y6e{bottom:631.253850px;}
.y12{bottom:633.859200px;}
.y234{bottom:635.265900px;}
.y16a{bottom:638.312100px;}
.y9d{bottom:641.770350px;}
.y190{bottom:641.777100px;}
.y3f{bottom:641.920350px;}
.yb2{bottom:644.170350px;}
.ye6{bottom:644.229600px;}
.y1c3{bottom:645.582300px;}
.y145{bottom:647.770350px;}
.y6d{bottom:649.253850px;}
.y233{bottom:650.265900px;}
.y11{bottom:651.859200px;}
.y169{bottom:656.312100px;}
.y1a0{bottom:659.515350px;}
.y98{bottom:659.770350px;}
.y18f{bottom:659.777100px;}
.ye5{bottom:661.329600px;}
.yb1{bottom:662.170350px;}
.y104{bottom:663.372750px;}
.y232{bottom:665.265900px;}
.y144{bottom:665.770350px;}
.y10{bottom:669.859200px;}
.y168{bottom:674.312100px;}
.y3e{bottom:677.515350px;}
.y97{bottom:677.770350px;}
.y18e{bottom:677.777100px;}
.ye4{bottom:678.429600px;}
.yb0{bottom:680.170350px;}
.y231{bottom:680.265900px;}
.y143{bottom:683.770350px;}
.y6c{bottom:684.094350px;}
.yf{bottom:687.859200px;}
.y167{bottom:692.312100px;}
.y230{bottom:695.265900px;}
.y1f5{bottom:695.365350px;}
.ye3{bottom:695.529600px;}
.y96{bottom:695.770350px;}
.y18d{bottom:695.777100px;}
.yaf{bottom:698.170350px;}
.y6b{bottom:699.700350px;}
.y142{bottom:701.770350px;}
.ye{bottom:705.859200px;}
.y22f{bottom:710.265900px;}
.y166{bottom:710.312100px;}
.ye2{bottom:712.629600px;}
.y3d{bottom:713.770350px;}
.y18c{bottom:713.777100px;}
.y6a{bottom:714.070350px;}
.yae{bottom:716.170350px;}
.y141{bottom:719.770350px;}
.yd{bottom:723.859200px;}
.y22e{bottom:725.265900px;}
.y165{bottom:728.312100px;}
.ye1{bottom:729.729600px;}
.y1f4{bottom:731.365350px;}
.y69{bottom:731.665350px;}
.y3c{bottom:731.770350px;}
.y18b{bottom:731.777100px;}
.yad{bottom:734.170350px;}
.y140{bottom:737.770350px;}
.y22d{bottom:740.265900px;}
.y164{bottom:746.312100px;}
.ye0{bottom:746.829600px;}
.y68{bottom:749.665350px;}
.y3b{bottom:749.770350px;}
.y18a{bottom:749.777100px;}
.yac{bottom:752.170350px;}
.y22c{bottom:755.265900px;}
.y13f{bottom:755.770350px;}
.ydf{bottom:763.929600px;}
.y163{bottom:764.312100px;}
.y3a{bottom:767.770350px;}
.y189{bottom:767.777100px;}
.yc{bottom:769.017450px;}
.yab{bottom:770.170350px;}
.y22b{bottom:770.265900px;}
.y13e{bottom:773.770350px;}
.yde{bottom:781.029600px;}
.yb{bottom:781.468200px;}
.y162{bottom:782.312100px;}
.y22a{bottom:785.265900px;}
.y1f3{bottom:785.365350px;}
.y67{bottom:785.515350px;}
.y39{bottom:785.770350px;}
.y188{bottom:785.777100px;}
.yaa{bottom:788.170350px;}
.y13d{bottom:791.770350px;}
.ydd{bottom:798.129600px;}
.y229{bottom:800.265900px;}
.y161{bottom:800.312100px;}
.y38{bottom:803.770350px;}
.y187{bottom:803.777100px;}
.ya9{bottom:806.170350px;}
.y13c{bottom:809.770350px;}
.ydc{bottom:815.229600px;}
.y228{bottom:815.265900px;}
.ya{bottom:817.044300px;}
.y160{bottom:818.312100px;}
.y66{bottom:821.380350px;}
.y37{bottom:821.770350px;}
.y186{bottom:821.777100px;}
.ya8{bottom:824.170350px;}
.y13b{bottom:827.770350px;}
.y227{bottom:830.265900px;}
.y9{bottom:830.544300px;}
.ydb{bottom:832.329600px;}
.y15f{bottom:836.312100px;}
.y1f2{bottom:839.365350px;}
.y93{bottom:839.770350px;}
.y185{bottom:839.777100px;}
.ya7{bottom:842.170350px;}
.y8{bottom:844.044300px;}
.y226{bottom:845.265900px;}
.y13a{bottom:845.770350px;}
.yda{bottom:849.429600px;}
.y65{bottom:857.245350px;}
.y36{bottom:857.365350px;}
.y7{bottom:857.544300px;}
.y92{bottom:857.770350px;}
.y184{bottom:857.777100px;}
.ya6{bottom:860.170350px;}
.y225{bottom:860.265900px;}
.y139{bottom:863.770350px;}
.yd9{bottom:866.529600px;}
.y15e{bottom:871.805250px;}
.y263{bottom:875.263500px;}
.y224{bottom:875.265900px;}
.y91{bottom:875.770350px;}
.y183{bottom:875.777100px;}
.ya5{bottom:878.170350px;}
.y138{bottom:881.770350px;}
.yd8{bottom:883.629600px;}
.y15d{bottom:886.805250px;}
.y6{bottom:887.830950px;}
.y262{bottom:890.263500px;}
.y223{bottom:890.265900px;}
.y35{bottom:893.230350px;}
.y90{bottom:893.770350px;}
.y182{bottom:893.777100px;}
.y137{bottom:899.770350px;}
.yd7{bottom:900.729600px;}
.y15c{bottom:901.805250px;}
.y261{bottom:905.263500px;}
.y222{bottom:905.265900px;}
.y8f{bottom:911.770350px;}
.y181{bottom:911.777100px;}
.y64{bottom:911.785350px;}
.ya4{bottom:913.663500px;}
.y15b{bottom:916.805250px;}
.y136{bottom:917.770350px;}
.y260{bottom:920.263500px;}
.y221{bottom:920.265900px;}
.ya3{bottom:928.663500px;}
.y8e{bottom:929.770350px;}
.y180{bottom:929.777100px;}
.y63{bottom:929.785350px;}
.yd4{bottom:933.989400px;}
.yd5{bottom:933.993600px;}
.y5{bottom:934.036050px;}
.y25f{bottom:935.263500px;}
.y220{bottom:935.265900px;}
.y135{bottom:935.770350px;}
.ya2{bottom:943.663500px;}
.y34{bottom:947.770350px;}
.y17f{bottom:947.777100px;}
.y62{bottom:947.785350px;}
.y15a{bottom:947.920350px;}
.y25e{bottom:950.263500px;}
.y21f{bottom:950.265900px;}
.yd3{bottom:950.489400px;}
.yd6{bottom:950.493600px;}
.y134{bottom:953.770350px;}
.ya1{bottom:958.663500px;}
.y25d{bottom:965.263500px;}
.y21e{bottom:965.265900px;}
.y159{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y17e{bottom:965.777100px;}
.y61{bottom:965.785350px;}
.y4{bottom:970.496850px;}
.y133{bottom:971.770350px;}
.ya0{bottom:973.663500px;}
.y25c{bottom:980.263500px;}
.y21d{bottom:980.265900px;}
.y1f1{bottom:983.365350px;}
.y158{bottom:983.515350px;}
.yd2{bottom:983.753400px;}
.y32{bottom:983.770350px;}
.y17d{bottom:983.777100px;}
.y60{bottom:983.785350px;}
.y9f{bottom:988.663500px;}
.y132{bottom:989.770350px;}
.y25b{bottom:995.263500px;}
.y21c{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y17c{bottom:1001.777100px;}
.y5f{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y25a{bottom:1010.263500px;}
.y21b{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.y17b{bottom:1019.777100px;}
.y5e{bottom:1019.785350px;}
.yd1{bottom:1023.256800px;}
.y131{bottom:1025.261250px;}
.y1a6{bottom:1025.263500px;}
.y21a{bottom:1025.265900px;}
.y9e{bottom:1037.365350px;}
.y2f{bottom:1037.770350px;}
.yd0{bottom:1037.770500px;}
.y17a{bottom:1037.777100px;}
.y5d{bottom:1037.785350px;}
.y130{bottom:1040.261250px;}
.y1a5{bottom:1040.263500px;}
.y219{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y8d{bottom:1132.418700px;}
.y157{bottom:1132.421700px;}
.y1c4{bottom:1132.422300px;}
.y259{bottom:1132.423500px;}
.y9c{bottom:1132.428600px;}
.y103{bottom:1132.456200px;}
.y122{bottom:1132.515300px;}
.ycf{bottom:1132.521750px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h15{height:25.013672px;}
.h7{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.hd{height:32.815976px;}
.h18{height:33.328125px;}
.h13{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h16{height:35.966738px;}
.h17{height:35.983538px;}
.h11{height:37.520508px;}
.h12{height:41.660156px;}
.hb{height:41.689453px;}
.h14{height:42.773438px;}
.ha{height:43.681641px;}
.h9{height:43.710938px;}
.h8{height:43.740234px;}
.h5{height:49.138634px;}
.hc{height:53.466797px;}
.h19{height:55.086797px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:70.582650px;}
.xa{left:76.535400px;}
.x28{left:78.663150px;}
.x29{left:85.047150px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:99.915900px;}
.x30{left:102.047400px;}
.x3{left:106.299300px;}
.xc{left:110.555400px;}
.x35{left:123.307350px;}
.x5{left:131.816400px;}
.xb{left:144.725400px;}
.x2f{left:197.045400px;}
.x3d{left:198.875400px;}
.x4{left:212.876400px;}
.x3f{left:215.515350px;}
.x34{left:218.320350px;}
.x33{left:247.630350px;}
.x20{left:258.739500px;}
.x3b{left:314.737500px;}
.x2a{left:318.513750px;}
.x3a{left:327.577500px;}
.x2b{left:339.084150px;}
.x21{left:340.773900px;}
.x22{left:419.865900px;}
.x2e{left:438.387450px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x15{left:472.309050px;}
.x13{left:476.165400px;}
.x18{left:478.345350px;}
.x1a{left:479.380350px;}
.x6{left:480.491400px;}
.x31{left:482.603400px;}
.x36{left:489.151200px;}
.xe{left:491.105400px;}
.x23{left:502.341900px;}
.x1c{left:503.858400px;}
.x12{left:504.965400px;}
.x1e{left:507.039900px;}
.x1d{left:512.362200px;}
.x7{left:514.511400px;}
.x2c{left:520.620150px;}
.x11{left:524.270400px;}
.x14{left:567.170400px;}
.x3e{left:570.725400px;}
.x37{left:571.906200px;}
.x38{left:577.606200px;}
.x24{left:579.633900px;}
.x10{left:583.460400px;}
.xf{left:591.650400px;}
.x1b{left:598.870350px;}
.x25{left:660.939150px;}
.x17{left:663.492300px;}
.x2d{left:690.924150px;}
.x2{left:693.365400px;}
.x39{left:721.717650px;}
.x16{left:728.391600px;}
.x27{left:737.475150px;}
.x26{left:739.287150px;}
.x3c{left:743.863350px;}
.x19{left:749.651400px;}
@media print{
.v3{vertical-align:-17.729067pt;}
.v2{vertical-align:-13.726933pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:14.182933pt;}
.v1{vertical-align:19.217067pt;}
.ls51{letter-spacing:-6.880000pt;}
.ls48{letter-spacing:-1.578667pt;}
.ls19{letter-spacing:-0.693333pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.320000pt;}
.ls77{letter-spacing:-0.298667pt;}
.ls52{letter-spacing:-0.266667pt;}
.ls55{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls79{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls53{letter-spacing:-0.085333pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls78{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls7d{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls66{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls7a{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.266667pt;}
.ls6b{letter-spacing:0.298667pt;}
.ls37{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.373333pt;}
.ls6e{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.480000pt;}
.ls3d{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.586667pt;}
.ls72{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls69{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.693333pt;}
.ls71{letter-spacing:0.725333pt;}
.ls36{letter-spacing:0.746667pt;}
.ls56{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls4d{letter-spacing:0.810667pt;}
.lsa{letter-spacing:0.853333pt;}
.ls3c{letter-spacing:0.896000pt;}
.ls35{letter-spacing:0.906667pt;}
.ls7{letter-spacing:0.960000pt;}
.ls4f{letter-spacing:0.981333pt;}
.ls8{letter-spacing:1.013333pt;}
.ls23{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.120000pt;}
.ls65{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.173333pt;}
.ls2a{letter-spacing:1.226667pt;}
.ls49{letter-spacing:1.280000pt;}
.ls67{letter-spacing:1.322667pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls50{letter-spacing:1.365333pt;}
.ls58{letter-spacing:1.386667pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls6f{letter-spacing:1.450667pt;}
.lse{letter-spacing:1.493333pt;}
.ls5b{letter-spacing:1.546667pt;}
.ls6d{letter-spacing:1.578667pt;}
.ls2c{letter-spacing:1.600000pt;}
.ls4a{letter-spacing:1.653333pt;}
.ls7b{letter-spacing:1.664000pt;}
.ls16{letter-spacing:1.706667pt;}
.ls76{letter-spacing:1.749333pt;}
.ls24{letter-spacing:1.760000pt;}
.ls2d{letter-spacing:1.813333pt;}
.lsf{letter-spacing:1.866667pt;}
.ls3b{letter-spacing:1.920000pt;}
.ls68{letter-spacing:1.962667pt;}
.ls1a{letter-spacing:1.973333pt;}
.ls25{letter-spacing:2.026667pt;}
.lsb{letter-spacing:2.080000pt;}
.ls30{letter-spacing:2.133333pt;}
.ls7c{letter-spacing:2.176000pt;}
.ls1f{letter-spacing:2.186667pt;}
.ls74{letter-spacing:2.218667pt;}
.ls5a{letter-spacing:2.240000pt;}
.ls73{letter-spacing:2.261333pt;}
.ls39{letter-spacing:2.293333pt;}
.ls21{letter-spacing:2.346667pt;}
.ls2f{letter-spacing:2.400000pt;}
.ls70{letter-spacing:2.474667pt;}
.ls11{letter-spacing:2.506667pt;}
.ls5e{letter-spacing:2.560000pt;}
.ls12{letter-spacing:2.613333pt;}
.ls61{letter-spacing:2.645333pt;}
.ls54{letter-spacing:2.720000pt;}
.ls3a{letter-spacing:2.773333pt;}
.ls4e{letter-spacing:2.826667pt;}
.ls6a{letter-spacing:2.858667pt;}
.ls63{letter-spacing:2.901333pt;}
.ls27{letter-spacing:3.040000pt;}
.ls28{letter-spacing:3.146667pt;}
.ls6c{letter-spacing:3.200000pt;}
.ls20{letter-spacing:3.306667pt;}
.ls5c{letter-spacing:3.520000pt;}
.ls5d{letter-spacing:3.573333pt;}
.ls4b{letter-spacing:3.680000pt;}
.ls13{letter-spacing:3.733333pt;}
.ls75{letter-spacing:4.053333pt;}
.ls26{letter-spacing:4.373333pt;}
.ls59{letter-spacing:4.480000pt;}
.ls3f{letter-spacing:4.533333pt;}
.ls64{letter-spacing:4.650667pt;}
.ls4c{letter-spacing:4.800000pt;}
.ls2b{letter-spacing:5.173333pt;}
.ls33{letter-spacing:5.226667pt;}
.ls5f{letter-spacing:5.706667pt;}
.ls2{letter-spacing:6.720000pt;}
.ls60{letter-spacing:6.773333pt;}
.ls57{letter-spacing:10.293333pt;}
.ls41{letter-spacing:114.152533pt;}
.ls46{letter-spacing:159.773867pt;}
.ls42{letter-spacing:186.794667pt;}
.ls45{letter-spacing:191.773867pt;}
.ls44{letter-spacing:192.565333pt;}
.ls43{letter-spacing:250.794667pt;}
.ls40{letter-spacing:525.928533pt;}
.ls47{letter-spacing:672.964800pt;}
.ws5f{word-spacing:-231.210667pt;}
.ws0{word-spacing:-31.284267pt;}
.wsa1{word-spacing:-17.813333pt;}
.ws8c{word-spacing:-15.413333pt;}
.wsa2{word-spacing:-15.253333pt;}
.wsa4{word-spacing:-15.200000pt;}
.ws2e{word-spacing:-15.146667pt;}
.ws3{word-spacing:-15.040000pt;}
.wsa3{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws13{word-spacing:-14.346667pt;}
.ws72{word-spacing:-14.186667pt;}
.ws12{word-spacing:-14.026667pt;}
.ws2d{word-spacing:-13.973333pt;}
.ws73{word-spacing:-13.440000pt;}
.ws2c{word-spacing:-13.386667pt;}
.ws39{word-spacing:-13.333333pt;}
.wsb2{word-spacing:-12.885333pt;}
.wsb1{word-spacing:-12.117333pt;}
.ws11{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.861333pt;}
.wsaf{word-spacing:-11.349333pt;}
.ws4{word-spacing:-11.120000pt;}
.wsb3{word-spacing:-11.050667pt;}
.ws28{word-spacing:-10.666667pt;}
.wsb0{word-spacing:-10.538667pt;}
.ws1{word-spacing:-9.340800pt;}
.ws4b{word-spacing:-8.000000pt;}
.ws82{word-spacing:-6.453333pt;}
.wsbe{word-spacing:-4.693333pt;}
.ws7b{word-spacing:-4.533333pt;}
.ws75{word-spacing:-3.680000pt;}
.ws1e{word-spacing:-3.306667pt;}
.wsc5{word-spacing:-3.242667pt;}
.ws1b{word-spacing:-3.146667pt;}
.wsab{word-spacing:-3.040000pt;}
.wsbd{word-spacing:-2.901333pt;}
.wsc3{word-spacing:-2.858667pt;}
.ws7c{word-spacing:-2.826667pt;}
.wsb8{word-spacing:-2.645333pt;}
.ws7{word-spacing:-2.565333pt;}
.wsb7{word-spacing:-2.400000pt;}
.ws7a{word-spacing:-2.346667pt;}
.ws47{word-spacing:-2.293333pt;}
.wscb{word-spacing:-2.261333pt;}
.wsb9{word-spacing:-2.133333pt;}
.ws46{word-spacing:-2.080000pt;}
.ws15{word-spacing:-1.973333pt;}
.wsac{word-spacing:-1.920000pt;}
.ws22{word-spacing:-1.866667pt;}
.ws26{word-spacing:-1.813333pt;}
.ws19{word-spacing:-1.760000pt;}
.wsd3{word-spacing:-1.749333pt;}
.ws89{word-spacing:-1.706667pt;}
.wsa5{word-spacing:-1.653333pt;}
.ws21{word-spacing:-1.600000pt;}
.ws71{word-spacing:-1.493333pt;}
.wsd9{word-spacing:-1.450667pt;}
.ws7e{word-spacing:-1.440000pt;}
.wscd{word-spacing:-1.365333pt;}
.ws49{word-spacing:-1.333333pt;}
.ws1f{word-spacing:-1.226667pt;}
.ws1d{word-spacing:-1.173333pt;}
.wsbf{word-spacing:-1.152000pt;}
.ws87{word-spacing:-1.120000pt;}
.ws80{word-spacing:-1.066667pt;}
.wsc{word-spacing:-1.013333pt;}
.ws8{word-spacing:-1.008000pt;}
.wsbb{word-spacing:-0.981333pt;}
.ws23{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.906667pt;}
.wsc6{word-spacing:-0.896000pt;}
.ws7d{word-spacing:-0.853333pt;}
.wsc1{word-spacing:-0.810667pt;}
.ws33{word-spacing:-0.800000pt;}
.ws84{word-spacing:-0.768000pt;}
.wsad{word-spacing:-0.746667pt;}
.wsf{word-spacing:-0.693333pt;}
.wscc{word-spacing:-0.682667pt;}
.ws20{word-spacing:-0.640000pt;}
.wsd0{word-spacing:-0.597333pt;}
.ws43{word-spacing:-0.512000pt;}
.ws48{word-spacing:-0.426667pt;}
.wsd5{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.373333pt;}
.ws3e{word-spacing:-0.320000pt;}
.wsc4{word-spacing:-0.298667pt;}
.ws14{word-spacing:-0.266667pt;}
.wsc9{word-spacing:-0.256000pt;}
.ws34{word-spacing:-0.213333pt;}
.wsbc{word-spacing:-0.170667pt;}
.ws85{word-spacing:-0.160000pt;}
.wsc2{word-spacing:-0.128000pt;}
.ws76{word-spacing:-0.106667pt;}
.ws83{word-spacing:-0.053333pt;}
.wsda{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws44{word-spacing:0.042667pt;}
.ws17{word-spacing:0.053333pt;}
.ws2a{word-spacing:0.106667pt;}
.wsc8{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.160000pt;}
.ws6f{word-spacing:0.213333pt;}
.wsba{word-spacing:0.298667pt;}
.ws45{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.341333pt;}
.ws70{word-spacing:0.373333pt;}
.wsd1{word-spacing:0.426667pt;}
.wse{word-spacing:0.480000pt;}
.ws86{word-spacing:0.533333pt;}
.wsce{word-spacing:0.554667pt;}
.wsa6{word-spacing:0.586667pt;}
.wsca{word-spacing:0.597333pt;}
.ws78{word-spacing:0.640000pt;}
.wsd4{word-spacing:0.682667pt;}
.ws8f{word-spacing:0.693333pt;}
.ws18{word-spacing:0.800000pt;}
.wsc0{word-spacing:0.810667pt;}
.ws91{word-spacing:0.853333pt;}
.ws38{word-spacing:0.906667pt;}
.ws8a{word-spacing:0.960000pt;}
.wsae{word-spacing:1.173333pt;}
.ws32{word-spacing:1.226667pt;}
.wsaa{word-spacing:1.280000pt;}
.wsc7{word-spacing:1.322667pt;}
.ws37{word-spacing:1.333333pt;}
.wsd7{word-spacing:1.365333pt;}
.ws24{word-spacing:1.386667pt;}
.ws8e{word-spacing:1.493333pt;}
.ws1c{word-spacing:1.546667pt;}
.ws8b{word-spacing:1.760000pt;}
.wsd6{word-spacing:1.792000pt;}
.ws7f{word-spacing:1.866667pt;}
.ws40{word-spacing:1.973333pt;}
.ws27{word-spacing:2.026667pt;}
.wsa{word-spacing:2.133333pt;}
.ws41{word-spacing:2.240000pt;}
.ws31{word-spacing:2.293333pt;}
.ws8d{word-spacing:2.346667pt;}
.ws77{word-spacing:2.400000pt;}
.wsd2{word-spacing:2.432000pt;}
.ws88{word-spacing:2.453333pt;}
.ws74{word-spacing:2.506667pt;}
.ws90{word-spacing:2.773333pt;}
.ws36{word-spacing:2.826667pt;}
.wscf{word-spacing:2.858667pt;}
.ws30{word-spacing:2.933333pt;}
.ws2f{word-spacing:3.040000pt;}
.wsd8{word-spacing:3.072000pt;}
.ws25{word-spacing:3.200000pt;}
.ws81{word-spacing:3.253333pt;}
.wsd{word-spacing:3.413333pt;}
.ws35{word-spacing:3.466667pt;}
.ws79{word-spacing:3.498667pt;}
.ws10{word-spacing:3.520000pt;}
.ws42{word-spacing:3.541333pt;}
.wsa9{word-spacing:3.573333pt;}
.ws3d{word-spacing:3.626667pt;}
.wsa7{word-spacing:3.733333pt;}
.ws29{word-spacing:3.786667pt;}
.wsb5{word-spacing:3.946667pt;}
.ws3f{word-spacing:4.000000pt;}
.wsa8{word-spacing:4.106667pt;}
.ws9{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.wsb6{word-spacing:4.853333pt;}
.wsb4{word-spacing:4.906667pt;}
.ws56{word-spacing:90.794667pt;}
.ws53{word-spacing:91.562667pt;}
.ws57{word-spacing:91.605333pt;}
.ws5e{word-spacing:101.461333pt;}
.ws4e{word-spacing:112.128000pt;}
.ws5a{word-spacing:133.461333pt;}
.ws54{word-spacing:138.794667pt;}
.ws52{word-spacing:140.373333pt;}
.ws50{word-spacing:141.184000pt;}
.ws4d{word-spacing:154.794667pt;}
.ws5d{word-spacing:160.128000pt;}
.ws55{word-spacing:169.045333pt;}
.ws4f{word-spacing:170.624000pt;}
.ws59{word-spacing:170.794667pt;}
.ws51{word-spacing:171.392000pt;}
.ws4c{word-spacing:185.045333pt;}
.ws5c{word-spacing:190.378667pt;}
.ws5b{word-spacing:196.480000pt;}
.ws64{word-spacing:197.461333pt;}
.ws58{word-spacing:201.045333pt;}
.ws62{word-spacing:202.770667pt;}
.ws60{word-spacing:218.794667pt;}
.ws63{word-spacing:227.328000pt;}
.ws61{word-spacing:248.064000pt;}
.ws98{word-spacing:272.213333pt;}
.ws9e{word-spacing:272.981333pt;}
.ws96{word-spacing:273.792000pt;}
.ws93{word-spacing:293.546667pt;}
.ws9c{word-spacing:298.880000pt;}
.ws9a{word-spacing:314.880000pt;}
.wsa0{word-spacing:336.213333pt;}
.ws97{word-spacing:350.464000pt;}
.ws99{word-spacing:361.130667pt;}
.ws95{word-spacing:361.898667pt;}
.ws92{word-spacing:366.464000pt;}
.ws9b{word-spacing:377.130667pt;}
.ws94{word-spacing:382.464000pt;}
.ws9f{word-spacing:398.464000pt;}
.ws6a{word-spacing:423.381333pt;}
.ws69{word-spacing:424.192000pt;}
.ws6d{word-spacing:434.048000pt;}
.ws65{word-spacing:444.714667pt;}
.ws6b{word-spacing:466.048000pt;}
.ws6e{word-spacing:487.381333pt;}
.ws68{word-spacing:503.381333pt;}
.ws3a{word-spacing:515.584000pt;}
.ws9d{word-spacing:588.885333pt;}
.ws3b{word-spacing:594.986667pt;}
.ws3c{word-spacing:626.986667pt;}
.ws6c{word-spacing:694.741333pt;}
.ws67{word-spacing:742.741333pt;}
.ws66{word-spacing:1106.346667pt;}
._c{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._3c{margin-left:-250.794667pt;}
._77{margin-left:-9.813333pt;}
._76{margin-left:-6.890667pt;}
._5{margin-left:-5.859733pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.136000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._3{width:1.674133pt;}
._9{width:2.592533pt;}
._8{width:3.487467pt;}
._6{width:4.619200pt;}
._7{width:5.556800pt;}
._a{width:6.890133pt;}
._b{width:8.149867pt;}
._75{width:9.450133pt;}
._28{width:115.072000pt;}
._35{width:149.461333pt;}
._2c{width:151.514667pt;}
._2a{width:165.461333pt;}
._32{width:181.461333pt;}
._7a{width:182.378667pt;}
._2e{width:197.461333pt;}
._79{width:212.800000pt;}
._2f{width:227.712000pt;}
._3f{width:229.461333pt;}
._41{width:232.661333pt;}
._31{width:259.882667pt;}
._78{width:260.949333pt;}
._27{width:280.234667pt;}
._42{width:303.402667pt;}
._87{width:312.874667pt;}
._59{width:322.112000pt;}
._3d{width:345.898667pt;}
._2b{width:355.584000pt;}
._84{width:356.565333pt;}
._7f{width:357.760000pt;}
._7e{width:360.149333pt;}
._36{width:361.856000pt;}
._3b{width:363.690667pt;}
._3e{width:364.885333pt;}
._7d{width:373.701333pt;}
._29{width:390.634667pt;}
._30{width:393.813333pt;}
._81{width:401.578667pt;}
._80{width:403.968000pt;}
._6b{width:407.381333pt;}
._8a{width:409.130667pt;}
._2d{width:412.800000pt;}
._40{width:417.941333pt;}
._37{width:431.786667pt;}
._5e{width:434.048000pt;}
._47{width:436.101333pt;}
._34{width:441.173333pt;}
._64{width:449.365333pt;}
._3a{width:450.730667pt;}
._6c{width:453.632000pt;}
._5f{width:464.298667pt;}
._38{width:466.133333pt;}
._68{width:474.965333pt;}
._61{width:480.298667pt;}
._57{width:482.048000pt;}
._5b{width:485.632000pt;}
._71{width:487.381333pt;}
._39{width:499.840000pt;}
._63{width:506.837333pt;}
._65{width:509.824000pt;}
._46{width:513.066667pt;}
._33{width:521.173333pt;}
._89{width:526.165333pt;}
._44{width:528.298667pt;}
._7b{width:529.386667pt;}
._88{width:539.178667pt;}
._86{width:543.189333pt;}
._7c{width:546.218667pt;}
._4a{width:547.157333pt;}
._72{width:549.632000pt;}
._74{width:560.298667pt;}
._54{width:562.048000pt;}
._8b{width:568.554667pt;}
._85{width:571.648000pt;}
._82{width:574.592000pt;}
._6f{width:584.490667pt;}
._83{width:586.538667pt;}
._70{width:590.506667pt;}
._5c{width:594.816000pt;}
._69{width:601.130667pt;}
._15{width:605.653333pt;}
._11{width:607.706667pt;}
._73{width:609.493333pt;}
._f{width:616.320000pt;}
._17{width:626.986667pt;}
._6a{width:629.546667pt;}
._60{width:633.088000pt;}
._5a{width:635.200000pt;}
._23{width:637.653333pt;}
._45{width:642.048000pt;}
._5d{width:652.074667pt;}
._6e{width:654.378667pt;}
._4e{width:665.130667pt;}
._43{width:677.866667pt;}
._66{width:680.448000pt;}
._67{width:681.728000pt;}
._6d{width:682.837333pt;}
._48{width:700.074667pt;}
._62{width:714.432000pt;}
._4f{width:719.829333pt;}
._4c{width:728.448000pt;}
._52{width:738.005333pt;}
._58{width:757.205333pt;}
._22{width:972.288000pt;}
._18{width:1022.506667pt;}
._16{width:1024.896000pt;}
._1a{width:1066.325333pt;}
._19{width:1068.714667pt;}
._51{width:1117.013333pt;}
._50{width:1128.965333pt;}
._4d{width:1133.013333pt;}
._4b{width:1149.013333pt;}
._21{width:1150.506667pt;}
._24{width:1154.730667pt;}
._10{width:1164.373333pt;}
._1d{width:1170.688000pt;}
._25{width:1173.717333pt;}
._e{width:1199.424000pt;}
._13{width:1202.645333pt;}
._12{width:1221.632000pt;}
._20{width:1223.936000pt;}
._26{width:1226.730667pt;}
._1c{width:1240.618667pt;}
._1b{width:1250.005333pt;}
._1f{width:1252.394667pt;}
._53{width:1264.554667pt;}
._55{width:1271.082667pt;}
._1e{width:1274.965333pt;}
._14{width:1283.989333pt;}
._56{width:1324.138667pt;}
._49{width:1872.768000pt;}
.fs5{font-size:24.000000pt;}
.fsc{font-size:25.600000pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y9b{bottom:74.176533pt;}
.y1f0{bottom:74.336533pt;}
.y1d6{bottom:74.342533pt;}
.y121{bottom:74.349600pt;}
.y19f{bottom:74.479333pt;}
.y156{bottom:74.480800pt;}
.y5c{bottom:74.729200pt;}
.y1a4{bottom:74.756667pt;}
.y95{bottom:74.942933pt;}
.y2b{bottom:78.248400pt;}
.y8c{bottom:81.114533pt;}
.y1c2{bottom:82.570267pt;}
.yce{bottom:83.784667pt;}
.y218{bottom:84.552800pt;}
.y258{bottom:84.678667pt;}
.y9a{bottom:88.171200pt;}
.y1a3{bottom:88.751333pt;}
.y94{bottom:88.937600pt;}
.y1ef{bottom:90.336533pt;}
.y1d5{bottom:90.342533pt;}
.y5b{bottom:90.729200pt;}
.y2a{bottom:91.576000pt;}
.y120{bottom:97.026933pt;}
.y8b{bottom:97.114533pt;}
.y217{bottom:97.886133pt;}
.y257{bottom:98.012000pt;}
.y102{bottom:100.089067pt;}
.y99{bottom:102.165867pt;}
.y1ee{bottom:106.336533pt;}
.y1d4{bottom:106.342533pt;}
.y5a{bottom:106.729200pt;}
.y1c1{bottom:108.351600pt;}
.ycd{bottom:109.566000pt;}
.y216{bottom:111.219467pt;}
.y256{bottom:111.345333pt;}
.y8a{bottom:113.114533pt;}
.y101{bottom:115.289067pt;}
.y1ed{bottom:122.336533pt;}
.y1d3{bottom:122.342533pt;}
.y59{bottom:122.729200pt;}
.y1c0{bottom:122.794267pt;}
.y11f{bottom:122.808267pt;}
.ycc{bottom:124.008667pt;}
.y215{bottom:124.552800pt;}
.y255{bottom:124.678667pt;}
.y89{bottom:129.114533pt;}
.y100{bottom:130.489067pt;}
.y1bf{bottom:137.236933pt;}
.y11e{bottom:137.250933pt;}
.y214{bottom:137.886133pt;}
.y254{bottom:138.012000pt;}
.y1ec{bottom:138.336533pt;}
.y1d2{bottom:138.342533pt;}
.ycb{bottom:138.451333pt;}
.y58{bottom:138.729200pt;}
.y88{bottom:145.114533pt;}
.yff{bottom:145.689067pt;}
.y27{bottom:149.614133pt;}
.y213{bottom:151.219467pt;}
.y253{bottom:151.345333pt;}
.y1be{bottom:151.679600pt;}
.y11d{bottom:151.693600pt;}
.yca{bottom:152.894000pt;}
.y1eb{bottom:154.336533pt;}
.y1d1{bottom:154.342533pt;}
.y57{bottom:154.729200pt;}
.yfe{bottom:160.889067pt;}
.y87{bottom:161.114533pt;}
.y212{bottom:164.552800pt;}
.y252{bottom:164.678667pt;}
.y26{bottom:165.614133pt;}
.y1bd{bottom:166.122267pt;}
.y11c{bottom:166.136267pt;}
.yc9{bottom:167.336667pt;}
.y1ea{bottom:170.336533pt;}
.y56{bottom:170.729200pt;}
.yfd{bottom:176.089067pt;}
.y86{bottom:177.114533pt;}
.y211{bottom:177.886133pt;}
.y251{bottom:178.012000pt;}
.y1bc{bottom:180.564933pt;}
.y11b{bottom:180.578933pt;}
.y25{bottom:181.614133pt;}
.yc8{bottom:181.779333pt;}
.y1d0{bottom:185.982533pt;}
.y1e9{bottom:186.336533pt;}
.y55{bottom:186.729200pt;}
.y210{bottom:191.219467pt;}
.yfc{bottom:191.289067pt;}
.y250{bottom:191.345333pt;}
.y85{bottom:193.114533pt;}
.y1bb{bottom:195.007600pt;}
.y11a{bottom:195.021600pt;}
.yc7{bottom:196.222000pt;}
.y24{bottom:197.614133pt;}
.y1e8{bottom:202.336533pt;}
.y54{bottom:202.729200pt;}
.y20f{bottom:204.552800pt;}
.y24f{bottom:204.678667pt;}
.yfb{bottom:206.489067pt;}
.y84{bottom:209.114533pt;}
.y1ba{bottom:209.450267pt;}
.y119{bottom:209.464267pt;}
.yc6{bottom:210.664667pt;}
.y23{bottom:213.614133pt;}
.y20e{bottom:217.886133pt;}
.y24e{bottom:218.012000pt;}
.y1e7{bottom:218.336533pt;}
.y53{bottom:218.729200pt;}
.yfa{bottom:221.689067pt;}
.y1b9{bottom:223.892933pt;}
.y118{bottom:223.906933pt;}
.yc5{bottom:225.107333pt;}
.y83{bottom:225.114533pt;}
.y22{bottom:229.614133pt;}
.y20d{bottom:231.219467pt;}
.y24d{bottom:231.345333pt;}
.y1e6{bottom:234.336533pt;}
.y1cf{bottom:234.462533pt;}
.y52{bottom:234.729200pt;}
.yf9{bottom:236.889067pt;}
.y1b8{bottom:238.335600pt;}
.y117{bottom:238.349600pt;}
.yc4{bottom:239.550000pt;}
.y82{bottom:241.114533pt;}
.y20c{bottom:244.552800pt;}
.y24c{bottom:244.678667pt;}
.y21{bottom:245.614133pt;}
.y1e5{bottom:250.336533pt;}
.y1ce{bottom:250.462533pt;}
.y51{bottom:250.729200pt;}
.yf8{bottom:252.089067pt;}
.y1b7{bottom:252.778267pt;}
.y116{bottom:252.792267pt;}
.yc3{bottom:253.992667pt;}
.y81{bottom:257.114533pt;}
.y20b{bottom:257.886133pt;}
.y24b{bottom:258.012000pt;}
.y20{bottom:261.614133pt;}
.y1e4{bottom:266.342533pt;}
.y1cd{bottom:266.462533pt;}
.y50{bottom:266.729200pt;}
.y1b6{bottom:267.220933pt;}
.y115{bottom:267.234933pt;}
.yf7{bottom:267.289067pt;}
.yc2{bottom:268.435333pt;}
.y20a{bottom:271.219467pt;}
.y24a{bottom:271.345333pt;}
.y80{bottom:273.114533pt;}
.y1f{bottom:277.614133pt;}
.y1b5{bottom:281.663600pt;}
.y114{bottom:281.677600pt;}
.y1e3{bottom:281.982533pt;}
.y1cc{bottom:282.462533pt;}
.yf6{bottom:282.489067pt;}
.yc1{bottom:282.878000pt;}
.y209{bottom:284.552800pt;}
.y249{bottom:284.678667pt;}
.y7f{bottom:289.114533pt;}
.y1e{bottom:293.614133pt;}
.y1b4{bottom:296.106267pt;}
.y113{bottom:296.120267pt;}
.yc0{bottom:297.320667pt;}
.yf5{bottom:297.689067pt;}
.y208{bottom:297.886133pt;}
.y248{bottom:298.012000pt;}
.y4f{bottom:298.369200pt;}
.y1cb{bottom:298.462533pt;}
.y7e{bottom:305.114533pt;}
.y1d{bottom:309.614133pt;}
.y1b3{bottom:310.548933pt;}
.y112{bottom:310.562933pt;}
.y207{bottom:311.219467pt;}
.y247{bottom:311.345333pt;}
.ybf{bottom:311.763333pt;}
.yf4{bottom:312.889067pt;}
.y1e2{bottom:314.342533pt;}
.y1ca{bottom:314.462533pt;}
.y155{bottom:319.795867pt;}
.y7d{bottom:321.114533pt;}
.y12f{bottom:321.604667pt;}
.y206{bottom:324.552800pt;}
.y246{bottom:324.678667pt;}
.y1b2{bottom:324.991600pt;}
.y111{bottom:325.005600pt;}
.y1c{bottom:325.614133pt;}
.ybe{bottom:326.206000pt;}
.y179{bottom:327.388533pt;}
.yf3{bottom:328.089067pt;}
.y1e1{bottom:330.342533pt;}
.y1c9{bottom:330.462533pt;}
.y4e{bottom:330.595867pt;}
.y12e{bottom:334.938000pt;}
.y154{bottom:335.795867pt;}
.y7c{bottom:337.114533pt;}
.y205{bottom:337.886133pt;}
.y245{bottom:338.012000pt;}
.y1b1{bottom:339.434267pt;}
.y110{bottom:339.448267pt;}
.y19e{bottom:340.271333pt;}
.ybd{bottom:340.648667pt;}
.y1b{bottom:341.614133pt;}
.yf2{bottom:343.289067pt;}
.y178{bottom:343.388533pt;}
.y1e0{bottom:346.342533pt;}
.y1c8{bottom:346.462533pt;}
.y4d{bottom:346.595867pt;}
.y204{bottom:351.219467pt;}
.y244{bottom:351.345333pt;}
.y153{bottom:351.795867pt;}
.y7b{bottom:353.114533pt;}
.y19d{bottom:353.604667pt;}
.y1b0{bottom:353.876933pt;}
.y10f{bottom:353.890933pt;}
.ybc{bottom:355.091333pt;}
.y1a{bottom:357.614133pt;}
.yf1{bottom:358.489067pt;}
.y177{bottom:359.388533pt;}
.y1df{bottom:362.342533pt;}
.y1c7{bottom:362.462533pt;}
.y4c{bottom:362.595867pt;}
.y203{bottom:364.552800pt;}
.y243{bottom:364.678667pt;}
.y19c{bottom:366.938000pt;}
.y152{bottom:367.795867pt;}
.y1af{bottom:368.319600pt;}
.y10e{bottom:368.333600pt;}
.y7a{bottom:369.114533pt;}
.ybb{bottom:369.534000pt;}
.y19{bottom:373.614133pt;}
.yf0{bottom:373.689067pt;}
.y176{bottom:375.388533pt;}
.y202{bottom:377.886133pt;}
.y242{bottom:378.012000pt;}
.y12d{bottom:378.235867pt;}
.y1de{bottom:378.342533pt;}
.y1c6{bottom:378.462533pt;}
.y4b{bottom:378.595867pt;}
.y19b{bottom:380.271333pt;}
.y1ae{bottom:382.762267pt;}
.y10d{bottom:382.776267pt;}
.y151{bottom:383.795867pt;}
.yba{bottom:383.976667pt;}
.y79{bottom:385.114533pt;}
.yef{bottom:388.889067pt;}
.y18{bottom:389.614133pt;}
.y201{bottom:391.219467pt;}
.y241{bottom:391.345333pt;}
.y175{bottom:391.388533pt;}
.y19a{bottom:393.604667pt;}
.y1dd{bottom:394.342533pt;}
.y1c5{bottom:394.462533pt;}
.y4a{bottom:394.595867pt;}
.y1ad{bottom:397.204933pt;}
.y10c{bottom:397.218933pt;}
.yb9{bottom:398.419333pt;}
.y150{bottom:399.795867pt;}
.y78{bottom:401.114533pt;}
.y200{bottom:404.552800pt;}
.y240{bottom:404.678667pt;}
.y17{bottom:405.614133pt;}
.y199{bottom:406.938000pt;}
.y174{bottom:407.388533pt;}
.y1dc{bottom:410.342533pt;}
.y12c{bottom:410.462533pt;}
.y49{bottom:410.595867pt;}
.y1ac{bottom:411.647600pt;}
.y10b{bottom:411.661600pt;}
.yb8{bottom:412.862000pt;}
.y14f{bottom:415.795867pt;}
.y77{bottom:417.114533pt;}
.y1ff{bottom:417.886133pt;}
.y23f{bottom:418.012000pt;}
.yed{bottom:418.457067pt;}
.y198{bottom:420.271333pt;}
.y16{bottom:421.614133pt;}
.y173{bottom:423.388533pt;}
.y1ab{bottom:426.090267pt;}
.y10a{bottom:426.104267pt;}
.y1db{bottom:426.342533pt;}
.y12b{bottom:426.462533pt;}
.y48{bottom:426.595867pt;}
.yb7{bottom:427.304667pt;}
.y1fe{bottom:431.219467pt;}
.y23e{bottom:431.345333pt;}
.y14e{bottom:431.795867pt;}
.y76{bottom:433.114533pt;}
.yec{bottom:433.120133pt;}
.yee{bottom:433.123733pt;}
.y197{bottom:433.604667pt;}
.y29{bottom:437.614133pt;}
.y172{bottom:439.388533pt;}
.y109{bottom:440.546933pt;}
.y1da{bottom:442.342533pt;}
.y12a{bottom:442.462533pt;}
.y47{bottom:442.595867pt;}
.y1fd{bottom:444.552800pt;}
.y23d{bottom:444.678667pt;}
.y196{bottom:446.938000pt;}
.y14d{bottom:447.795867pt;}
.y75{bottom:449.114533pt;}
.y1aa{bottom:451.871600pt;}
.yb6{bottom:453.086000pt;}
.y15{bottom:453.254133pt;}
.y28{bottom:453.614133pt;}
.y171{bottom:455.388533pt;}
.y1fc{bottom:457.886133pt;}
.y23c{bottom:458.012000pt;}
.y1d9{bottom:458.342533pt;}
.y129{bottom:458.462533pt;}
.y46{bottom:458.595867pt;}
.yeb{bottom:462.688133pt;}
.y14c{bottom:463.795867pt;}
.y74{bottom:465.114533pt;}
.y108{bottom:466.328267pt;}
.y1fb{bottom:471.219467pt;}
.y23b{bottom:471.345333pt;}
.y170{bottom:471.388533pt;}
.y1d8{bottom:474.342533pt;}
.y128{bottom:474.462533pt;}
.y45{bottom:474.595867pt;}
.y195{bottom:474.601867pt;}
.y1a9{bottom:477.652933pt;}
.yb5{bottom:478.867333pt;}
.y14b{bottom:479.795867pt;}
.y73{bottom:481.114533pt;}
.y1fa{bottom:484.552800pt;}
.y23a{bottom:484.678667pt;}
.y16f{bottom:487.388533pt;}
.y194{bottom:490.241867pt;}
.y127{bottom:490.462533pt;}
.y44{bottom:490.595867pt;}
.y107{bottom:492.109600pt;}
.y14a{bottom:495.795867pt;}
.y72{bottom:497.114533pt;}
.y1f9{bottom:497.886133pt;}
.y239{bottom:498.012000pt;}
.y16e{bottom:503.388533pt;}
.y1a8{bottom:503.434267pt;}
.y1d7{bottom:505.982533pt;}
.y126{bottom:506.462533pt;}
.y43{bottom:506.595867pt;}
.yb4{bottom:507.662533pt;}
.y1f8{bottom:511.219467pt;}
.y238{bottom:511.345333pt;}
.y149{bottom:511.795867pt;}
.yea{bottom:511.814267pt;}
.y71{bottom:513.114533pt;}
.y106{bottom:517.890933pt;}
.y16d{bottom:519.388533pt;}
.y125{bottom:522.462533pt;}
.y193{bottom:522.468533pt;}
.y42{bottom:522.595867pt;}
.y14{bottom:523.123733pt;}
.y1f7{bottom:524.552800pt;}
.y237{bottom:524.678667pt;}
.ye9{bottom:527.016400pt;}
.y148{bottom:527.795867pt;}
.y70{bottom:529.114533pt;}
.y1a2{bottom:529.604667pt;}
.y1a7{bottom:532.222533pt;}
.y16c{bottom:535.388533pt;}
.y236{bottom:538.014133pt;}
.y124{bottom:538.462533pt;}
.y192{bottom:538.468533pt;}
.y41{bottom:538.595867pt;}
.ye8{bottom:542.248533pt;}
.y1a1{bottom:542.938000pt;}
.y147{bottom:543.795867pt;}
.y6f{bottom:545.114533pt;}
.y105{bottom:546.683067pt;}
.y13{bottom:547.430400pt;}
.y235{bottom:551.347467pt;}
.y16b{bottom:551.388533pt;}
.y1f6{bottom:553.982533pt;}
.y123{bottom:554.462533pt;}
.y191{bottom:554.468533pt;}
.y40{bottom:554.595867pt;}
.yb3{bottom:556.595867pt;}
.ye7{bottom:557.448533pt;}
.y146{bottom:559.795867pt;}
.y6e{bottom:561.114533pt;}
.y12{bottom:563.430400pt;}
.y234{bottom:564.680800pt;}
.y16a{bottom:567.388533pt;}
.y9d{bottom:570.462533pt;}
.y190{bottom:570.468533pt;}
.y3f{bottom:570.595867pt;}
.yb2{bottom:572.595867pt;}
.ye6{bottom:572.648533pt;}
.y1c3{bottom:573.850933pt;}
.y145{bottom:575.795867pt;}
.y6d{bottom:577.114533pt;}
.y233{bottom:578.014133pt;}
.y11{bottom:579.430400pt;}
.y169{bottom:583.388533pt;}
.y1a0{bottom:586.235867pt;}
.y98{bottom:586.462533pt;}
.y18f{bottom:586.468533pt;}
.ye5{bottom:587.848533pt;}
.yb1{bottom:588.595867pt;}
.y104{bottom:589.664667pt;}
.y232{bottom:591.347467pt;}
.y144{bottom:591.795867pt;}
.y10{bottom:595.430400pt;}
.y168{bottom:599.388533pt;}
.y3e{bottom:602.235867pt;}
.y97{bottom:602.462533pt;}
.y18e{bottom:602.468533pt;}
.ye4{bottom:603.048533pt;}
.yb0{bottom:604.595867pt;}
.y231{bottom:604.680800pt;}
.y143{bottom:607.795867pt;}
.y6c{bottom:608.083867pt;}
.yf{bottom:611.430400pt;}
.y167{bottom:615.388533pt;}
.y230{bottom:618.014133pt;}
.y1f5{bottom:618.102533pt;}
.ye3{bottom:618.248533pt;}
.y96{bottom:618.462533pt;}
.y18d{bottom:618.468533pt;}
.yaf{bottom:620.595867pt;}
.y6b{bottom:621.955867pt;}
.y142{bottom:623.795867pt;}
.ye{bottom:627.430400pt;}
.y22f{bottom:631.347467pt;}
.y166{bottom:631.388533pt;}
.ye2{bottom:633.448533pt;}
.y3d{bottom:634.462533pt;}
.y18c{bottom:634.468533pt;}
.y6a{bottom:634.729200pt;}
.yae{bottom:636.595867pt;}
.y141{bottom:639.795867pt;}
.yd{bottom:643.430400pt;}
.y22e{bottom:644.680800pt;}
.y165{bottom:647.388533pt;}
.ye1{bottom:648.648533pt;}
.y1f4{bottom:650.102533pt;}
.y69{bottom:650.369200pt;}
.y3c{bottom:650.462533pt;}
.y18b{bottom:650.468533pt;}
.yad{bottom:652.595867pt;}
.y140{bottom:655.795867pt;}
.y22d{bottom:658.014133pt;}
.y164{bottom:663.388533pt;}
.ye0{bottom:663.848533pt;}
.y68{bottom:666.369200pt;}
.y3b{bottom:666.462533pt;}
.y18a{bottom:666.468533pt;}
.yac{bottom:668.595867pt;}
.y22c{bottom:671.347467pt;}
.y13f{bottom:671.795867pt;}
.ydf{bottom:679.048533pt;}
.y163{bottom:679.388533pt;}
.y3a{bottom:682.462533pt;}
.y189{bottom:682.468533pt;}
.yc{bottom:683.571067pt;}
.yab{bottom:684.595867pt;}
.y22b{bottom:684.680800pt;}
.y13e{bottom:687.795867pt;}
.yde{bottom:694.248533pt;}
.yb{bottom:694.638400pt;}
.y162{bottom:695.388533pt;}
.y22a{bottom:698.014133pt;}
.y1f3{bottom:698.102533pt;}
.y67{bottom:698.235867pt;}
.y39{bottom:698.462533pt;}
.y188{bottom:698.468533pt;}
.yaa{bottom:700.595867pt;}
.y13d{bottom:703.795867pt;}
.ydd{bottom:709.448533pt;}
.y229{bottom:711.347467pt;}
.y161{bottom:711.388533pt;}
.y38{bottom:714.462533pt;}
.y187{bottom:714.468533pt;}
.ya9{bottom:716.595867pt;}
.y13c{bottom:719.795867pt;}
.ydc{bottom:724.648533pt;}
.y228{bottom:724.680800pt;}
.ya{bottom:726.261600pt;}
.y160{bottom:727.388533pt;}
.y66{bottom:730.115867pt;}
.y37{bottom:730.462533pt;}
.y186{bottom:730.468533pt;}
.ya8{bottom:732.595867pt;}
.y13b{bottom:735.795867pt;}
.y227{bottom:738.014133pt;}
.y9{bottom:738.261600pt;}
.ydb{bottom:739.848533pt;}
.y15f{bottom:743.388533pt;}
.y1f2{bottom:746.102533pt;}
.y93{bottom:746.462533pt;}
.y185{bottom:746.468533pt;}
.ya7{bottom:748.595867pt;}
.y8{bottom:750.261600pt;}
.y226{bottom:751.347467pt;}
.y13a{bottom:751.795867pt;}
.yda{bottom:755.048533pt;}
.y65{bottom:761.995867pt;}
.y36{bottom:762.102533pt;}
.y7{bottom:762.261600pt;}
.y92{bottom:762.462533pt;}
.y184{bottom:762.468533pt;}
.ya6{bottom:764.595867pt;}
.y225{bottom:764.680800pt;}
.y139{bottom:767.795867pt;}
.yd9{bottom:770.248533pt;}
.y15e{bottom:774.938000pt;}
.y263{bottom:778.012000pt;}
.y224{bottom:778.014133pt;}
.y91{bottom:778.462533pt;}
.y183{bottom:778.468533pt;}
.ya5{bottom:780.595867pt;}
.y138{bottom:783.795867pt;}
.yd8{bottom:785.448533pt;}
.y15d{bottom:788.271333pt;}
.y6{bottom:789.183067pt;}
.y262{bottom:791.345333pt;}
.y223{bottom:791.347467pt;}
.y35{bottom:793.982533pt;}
.y90{bottom:794.462533pt;}
.y182{bottom:794.468533pt;}
.y137{bottom:799.795867pt;}
.yd7{bottom:800.648533pt;}
.y15c{bottom:801.604667pt;}
.y261{bottom:804.678667pt;}
.y222{bottom:804.680800pt;}
.y8f{bottom:810.462533pt;}
.y181{bottom:810.468533pt;}
.y64{bottom:810.475867pt;}
.ya4{bottom:812.145333pt;}
.y15b{bottom:814.938000pt;}
.y136{bottom:815.795867pt;}
.y260{bottom:818.012000pt;}
.y221{bottom:818.014133pt;}
.ya3{bottom:825.478667pt;}
.y8e{bottom:826.462533pt;}
.y180{bottom:826.468533pt;}
.y63{bottom:826.475867pt;}
.yd4{bottom:830.212800pt;}
.yd5{bottom:830.216533pt;}
.y5{bottom:830.254267pt;}
.y25f{bottom:831.345333pt;}
.y220{bottom:831.347467pt;}
.y135{bottom:831.795867pt;}
.ya2{bottom:838.812000pt;}
.y34{bottom:842.462533pt;}
.y17f{bottom:842.468533pt;}
.y62{bottom:842.475867pt;}
.y15a{bottom:842.595867pt;}
.y25e{bottom:844.678667pt;}
.y21f{bottom:844.680800pt;}
.yd3{bottom:844.879467pt;}
.yd6{bottom:844.883200pt;}
.y134{bottom:847.795867pt;}
.ya1{bottom:852.145333pt;}
.y25d{bottom:858.012000pt;}
.y21e{bottom:858.014133pt;}
.y159{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y17e{bottom:858.468533pt;}
.y61{bottom:858.475867pt;}
.y4{bottom:862.663867pt;}
.y133{bottom:863.795867pt;}
.ya0{bottom:865.478667pt;}
.y25c{bottom:871.345333pt;}
.y21d{bottom:871.347467pt;}
.y1f1{bottom:874.102533pt;}
.y158{bottom:874.235867pt;}
.yd2{bottom:874.447467pt;}
.y32{bottom:874.462533pt;}
.y17d{bottom:874.468533pt;}
.y60{bottom:874.475867pt;}
.y9f{bottom:878.812000pt;}
.y132{bottom:879.795867pt;}
.y25b{bottom:884.678667pt;}
.y21c{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y17c{bottom:890.468533pt;}
.y5f{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y25a{bottom:898.012000pt;}
.y21b{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.y17b{bottom:906.468533pt;}
.y5e{bottom:906.475867pt;}
.yd1{bottom:909.561600pt;}
.y131{bottom:911.343333pt;}
.y1a6{bottom:911.345333pt;}
.y21a{bottom:911.347467pt;}
.y9e{bottom:922.102533pt;}
.y2f{bottom:922.462533pt;}
.yd0{bottom:922.462667pt;}
.y17a{bottom:922.468533pt;}
.y5d{bottom:922.475867pt;}
.y130{bottom:924.676667pt;}
.y1a5{bottom:924.678667pt;}
.y219{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y8d{bottom:1006.594400pt;}
.y157{bottom:1006.597067pt;}
.y1c4{bottom:1006.597600pt;}
.y259{bottom:1006.598667pt;}
.y9c{bottom:1006.603200pt;}
.y103{bottom:1006.627733pt;}
.y122{bottom:1006.680267pt;}
.ycf{bottom:1006.686000pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h15{height:22.234375pt;}
.h7{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.hd{height:29.169756pt;}
.h18{height:29.625000pt;}
.h13{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h16{height:31.970433pt;}
.h17{height:31.985367pt;}
.h11{height:33.351562pt;}
.h12{height:37.031250pt;}
.hb{height:37.057292pt;}
.h14{height:38.020833pt;}
.ha{height:38.828125pt;}
.h9{height:38.854167pt;}
.h8{height:38.880208pt;}
.h5{height:43.678785pt;}
.hc{height:47.526042pt;}
.h19{height:48.966042pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:62.740133pt;}
.xa{left:68.031467pt;}
.x28{left:69.922800pt;}
.x29{left:75.597467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:88.814133pt;}
.x30{left:90.708800pt;}
.x3{left:94.488267pt;}
.xc{left:98.271467pt;}
.x35{left:109.606533pt;}
.x5{left:117.170133pt;}
.xb{left:128.644800pt;}
.x2f{left:175.151467pt;}
.x3d{left:176.778133pt;}
.x4{left:189.223467pt;}
.x3f{left:191.569200pt;}
.x34{left:194.062533pt;}
.x33{left:220.115867pt;}
.x20{left:229.990667pt;}
.x3b{left:279.766667pt;}
.x2a{left:283.123333pt;}
.x3a{left:291.180000pt;}
.x2b{left:301.408133pt;}
.x21{left:302.910133pt;}
.x22{left:373.214133pt;}
.x2e{left:389.677733pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x15{left:419.830267pt;}
.x13{left:423.258133pt;}
.x18{left:425.195867pt;}
.x1a{left:426.115867pt;}
.x6{left:427.103467pt;}
.x31{left:428.980800pt;}
.x36{left:434.801067pt;}
.xe{left:436.538133pt;}
.x23{left:446.526133pt;}
.x1c{left:447.874133pt;}
.x12{left:448.858133pt;}
.x1e{left:450.702133pt;}
.x1d{left:455.433067pt;}
.x7{left:457.343467pt;}
.x2c{left:462.773467pt;}
.x11{left:466.018133pt;}
.x14{left:504.151467pt;}
.x3e{left:507.311467pt;}
.x37{left:508.361067pt;}
.x38{left:513.427733pt;}
.x24{left:515.230133pt;}
.x10{left:518.631467pt;}
.xf{left:525.911467pt;}
.x1b{left:532.329200pt;}
.x25{left:587.501467pt;}
.x17{left:589.770933pt;}
.x2d{left:614.154800pt;}
.x2{left:616.324800pt;}
.x39{left:641.526800pt;}
.x16{left:647.459200pt;}
.x27{left:655.533467pt;}
.x26{left:657.144133pt;}
.x3c{left:661.211867pt;}
.x19{left:666.356800pt;}
}




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